*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Inter", sans-serif;
    background:#f8f6f3;
    color:#231f20;
    line-height:1.7;
}
p{
    font-family: "Inter", sans-serif;
    font-size:18px;
}
main{
    padding-top:100px;
}
.designation{
    color:#00A499;
    margin-bottom:10px;
}
/* =========================
   CONTAINER
========================= */
.container,
.practice-container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HERO SECTION
========================= */
.practice-hero{
    position:relative;
    overflow:hidden;
    padding:40px 0;
    display:flex;
    align-items:center;
    background:#f8f6f3;
}

.practice-hero__inner{
    position:relative;
    z-index:2;
}

.practice-hero__content{
    max-width:850px;
}

/* =========================
   back to home icon
========================= */
.practice-hero__back{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00A499;
    text-decoration:none;
    font-family:monospace;
    font-size:14px;
    letter-spacing:0.5px;
    transition:color .3s ease;
    margin-bottom:40px;
}

.practice-hero__back:hover{
    color:#333333;
}

.practice-hero__back:hover .icon--arrow-left{
    transform:translateX(-3px);
}

.practice-hero__back .icon{
    width:14px;
    height:14px;
    stroke:currentColor;
    fill:none;
    transition:all .3s ease;
}

.practice-hero__back span{
    transition:all .3s ease;
}

.practice-hero__back:hover .icon{
    transform:translateX(-3px);
}
/* =========================
   TITLE
========================= */
.practice-hero__title{
    max-width:56rem;
    font-family:"Cormorant Garamond", serif;
    font-size:clamp(3rem, 5vw, 4.5rem);
    font-weight:500;
    line-height:0.98;
    letter-spacing:-0.025em;
    color:#231f20;
    padding-bottom: 30px;
}

/* =========================
   INTRO
========================= */
.practice-hero__intro{
    max-width:750px;
    font-size:18px;
    color:#555;
    margin-top:20px;
    
}

.practice-hero-anchor{
    text-decoration:none;
    font-size:18px;
    color:#00a499;
    transition:0.3s;
}

em {
    font-style: normal;
    color: #00a499;
}

.anchor {
    color: #00a499;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.practice-hero-anchor:hover{
    color:#00867d;
}


.practice-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--color-ink-border);
}

/* Read More Button Css Code */

#moreText{
    display:none;
}

#moreText.show{
    display:block;
}

.read-more-btn-click {
    color: #00a499;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #00a499;
    margin: 5px;
    transition: 0.3s ease;
    font-size: 1.1rem;
    
}

.read-more-btn-click:hover {
  color: #131313;
  border-bottom: 1px solid #131313;
}

/* =========================
   BUTTONS
========================= */
.practice-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    padding-top: 30px;
}

.practice-hero__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    text-decoration:none;
    font-weight:600;
    transition:0.35s ease;
}

.practice-hero__button--primary{
    background:#00a499;
    color:#111;
}

.practice-hero__button--primary:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}

.practice-hero__button--secondary{
    border:1px solid #111;
    color:#111;
}

.practice-hero__button--secondary:hover{
    background:#111;
    color:#fff;
}

/*left image large content */
/* ==========================================
   CONTENT LAYOUT
========================================== */

.content-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
    padding:60px 0;
}

.content-layout h2{
    color:#0F172A;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,5vw,3rem);
    line-height:1.2;
    margin-bottom:20px;
    font-weight:600;
}

.content-image{
    position:sticky;
    top:120px;
}

.content-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:10px;
}

.content-text{
    min-width:0;
}

.content-text p{
    padding-top:10px;
    color:#555;
    font-size:18px;
    line-height:1.9;
    font-family:"Inter",sans-serif;
}

.content-text h4 {
    color:#0F172A;
    font-family:"Cormorant Garamond",serif;
    font-size: 2rem;
    line-height:1.2;
    margin:20px 0 10px 0;
    font-weight:600;
}

.list{
    max-width:1000px;
    margin:0 0 0 19px;
    color:#555;
}

.list li{
    margin-bottom:10px;
    font-size:18px;
    line-height:1.8;
    letter-spacing:0;
    list-style-type:disc;
}

.list li::marker{
    color:#00A499;
}

/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width:1199px){

    .content-layout{
        grid-template-columns:350px 1fr;
        gap:40px;
    }

    .content-layout h2{
        font-size:42px;
    }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .content-layout{
        grid-template-columns:1fr;
        gap:40px;
        padding:50px 0;
    }

    .content-image{
        position:static;
        max-width:700px;
        margin:0 auto;
    }

    .content-layout h2{
        font-size:40px;
    }

    
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .content-layout{
        gap:30px;
        padding:40px 0;
    }

    .content-layout h2{
        font-size:32px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .content-text p{
        
        line-height:1.8;
    }

    .list{
        margin-left:18px;
        margin-bottom:2rem;
    }

    .list li{
       
        margin-bottom:8px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .content-layout{
        gap:25px;
        padding:30px 0;
    }

    .content-layout h2{
        font-size:28px;
        line-height:1.25;
    }

    .content-text p{
       
        line-height:1.75;
    }

    .list{
        margin-left:16px;
        margin-bottom:1.5rem;
    }

    .list li{
      
        line-height:1.7;
    }

    .content-image img{
        border-radius:8px;
    }
}



/* next-section */

.jos-content-txt {
    margin: 20px 0;
}

.jos-content-txt h2 {
    color:#0F172A;
    font-family:"Cormorant Garamond",serif;
    font-size: 2.5rem;
    line-height:1.2;
    margin:40px 0 8px 0;
    font-weight:600;
}

.jos-content-txt p{
    max-width: 1000px;
    font-size: 18px;
    color: #555;
    padding-top: 20px;
}


/* ==========================================
   FOUNDER SECTION
========================================== */

.founder-wrapper{
    max-width:1100px;
    width:100%;
    margin:70px auto;
    padding:0 20px;
}

.founder-profile{
    background:#008b81;
    color:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.anchor-a{
    color:#040404;
    text-decoration:none;
    font-weight:550;
}

.founder-profile h2{
    margin-bottom:10px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,5vw,3.125rem);
    line-height:1;
    font-weight:600;
}

.founder-profile p{
    padding-top:15px;
    font-size:18px;
    line-height:1.9;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .founder-wrapper{
        margin:60px auto;
        padding:0 20px;
    }

    .founder-profile{
        padding:45px 40px;
        border-radius:24px;
    }

    .founder-profile h2{
        font-size:42px;
        line-height:1.1;
    }

    .founder-profile p{
        font-size:17px;
        line-height:1.8;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .founder-wrapper{
        margin:50px auto;
        padding:0 15px;
    }

    .founder-profile{
        padding:35px 25px;
        border-radius:20px;
    }

    .founder-profile h2{
        font-size:34px;
        line-height:1.15;
        margin-bottom:12px;
    }

    .founder-profile p{
        
        line-height:1.8;
        padding-top:10px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .founder-wrapper{
        margin:40px auto;
    }

    .founder-profile{
        padding:28px 20px;
        border-radius:16px;
    }

    .founder-profile h2{
        font-size:28px;
        line-height:1.2;
    }

    .founder-profile p{
        line-height:1.75;
    }
}



/* ==========================================
   CTA SECTION
========================================== */

.custody-cta-section{
    padding:50px 20px;
    background:#F8F6F3;
    position:relative;
    margin-top: 50px;
}

.custody-cta-content{
    max-width:1000px;
    margin:0 auto;
    text-align:center;
}

.custody-cta-content h2{
    margin-bottom:35px;
    color:#231f20;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,5vw,3.125rem);
    font-weight:500;
    line-height:1.05;
}

.custody-cta-content p{
    max-width:800px;
    margin:0 auto 30px;
    color:#4c5563;
    font-size:20px;
    line-height:1.9;
}

.cta-contact{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:50px;
}

.phone-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:16px 34px;
    background:#0f8f88;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.phone-btn:hover{
    transform:translateY(-3px);
}

.email-link{
    color: #00a499;
    font-size: 20px;
    font-weight: 600;
    word-break: break-word;
    border: 1px solid #00a499;
    padding: 10px 20px;
    text-decoration: none;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .custody-cta-section{
        padding:70px 20px;
    }

    .custody-cta-content h2{
        font-size:42px;
        line-height:1.15;
        margin-bottom:25px;
    }

    .custody-cta-content p{
        font-size:18px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .cta-contact{
        margin-top:40px;
        gap:20px;
    }

    .email-link{
        font-size:18px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .custody-cta-section{
        padding:60px 15px;
    }

    .custody-cta-content h2{
        font-size:34px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .custody-cta-content p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:20px;
    }

    .cta-contact{
        flex-direction:column;
        gap:15px;
        margin-top:30px;
    }

    .phone-btn{
        width:100%;
        max-width:320px;
        padding:15px 25px;
    }

    .email-link{
        font-size:16px;
        text-align:center;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

    .custody-cta-section{
        padding:50px 15px;
    }

    .custody-cta-content h2{
        font-size:28px;
        line-height:1.25;
    }

    .custody-cta-content p{
        font-size:15px;
        line-height:1.75;
    }

    .phone-btn{
        width:100%;
        max-width:none;
        padding:14px 20px;
        font-size:15px;
    }

    .email-link{
        font-size:15px;
    }
}



/*paralax image section */

/* ==========================================
   PARALLAX CTA SECTION
========================================== */

.custody-cta-parallax{
    position:relative;
    padding:120px 0;
    background-image:url('/public/include/images/pages/attorneys/attorney-group-c.webp');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    overflow:hidden;
    margin-top: 70px;
}

.custody-cta-parallax__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

/* ==========================================
   CONTENT BOX
========================================== */

.custody-cta-parallax__content{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:0 auto;
    padding:60px;
    border: 1px solid #00A499;
    border-radius: 8px;
}

/* ==========================================
   HEADING
========================================== */

.custody-cta-parallax__content h2{
    color:#fff;
    font-size:48px;
    line-height:1.2;
    margin-bottom:30px;
    font-weight:600;
    font-family:"Cormorant Garamond", serif;
    text-align:center;
}

/* ==========================================
   CONTENT
========================================== */

.custody-cta-parallax__content p{
    color:#fff;
    line-height:1.9;
    margin-bottom:25px;
    opacity:.95;
}

.p-4 {
    color:#fff;
    line-height:1.9;
    margin-bottom:25px;
    opacity:.95;
}

.p-4 li{
    list-style-type: disc;
    margin-bottom: 10px;
    letter-spacing: 0px;
    font-size:18px;
}
.p-4 li::marker{
    color: #00A499;
}

.custody-cta-parallax__content p:last-of-type{
    margin-bottom:0;
}

/* ==========================================
   BUTTON
========================================== */

.custody-cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    min-width:260px;
    margin:40px auto 0;
    padding:18px 35px;
    background:#00A499;
    color:#000;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:all .3s ease;
    text-transform:none;
}

.custody-cta-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}

.custody-cta-btn:focus{
    color:#fff;
}

.custody-cta-btn svg{
    width:18px;
    height:18px;
    margin-right:10px;
    fill:none;
    stroke:currentColor;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:991px){

    .custody-cta-parallax{
        background-attachment:scroll;
        padding:80px 0;
    }

    .custody-cta-parallax__content{
        padding:35px 25px;
    }

    .custody-cta-parallax__content h2{
        font-size:36px;
    }

    .custody-cta-parallax__content p{
        font-size:18px;
    }
}

@media (max-width:767px){

    .custody-cta-parallax{
        padding:60px 0;
    }

    .custody-cta-parallax__content{
        padding:25px 20px;
    }

    .custody-cta-parallax__content h2{
        font-size:30px;
    }

    .custody-cta-parallax__content p{
        font-size:16px;
        line-height:1.8;
    }

    .custody-cta-btn{
        width:100%;
        max-width:320px;
        padding:16px 25px;
    }
}


/* practice-box-container */


/* =========================
   HEADINGS
========================= */

.lawyer-txt {
    margin-top: 80px;
}

.lawyer-txt h2,
.lawyer-bottom-text h2 {
    max-width: 55rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
    color: #231f20;
}


/* =========================
   GRID
========================= */
.grid-box-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 40px 0;
}

.box-container {
    background: #f8f6f3;
    padding: 30px;
    border: 1px solid #d9d4d0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .03);
    transition: .3s;
}

.box-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.box-text-content h3 {
    font-family: "Cormorant Garamond", serif;
    color: #00a499;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.box-text-content p {
    max-width: 750px;
    font-size: 18px;
    color: #555;
    margin-top: 20px;
}

.lawyer-bottom-text {
    padding-top: 70px;
}

/* =========================
   TABLET (768px - 991px)
========================= */
@media (min-width: 768px) and (max-width: 991px) {

    .lawyer-txt {
        margin-top: 60px;
    }

    .lawyer-txt h2,
    .lawyer-bottom-text h2 {
        max-width: 100%;
        font-size: 2.6rem;
        line-height: 1.2;
    }

    .grid-box-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 35px 0;
    }

    .box-container {
        padding: 24px;
    }

    .box-text-content h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .lawyer-bottom-text {
        padding-top: 50px;
    }

}

/* =========================
   MOBILE (767px and below)
========================= */
@media (max-width: 767px) {

    .lawyer-txt {
        margin-top: 40px;
    }

    .lawyer-txt h2,
    .lawyer-bottom-text h2 {
        max-width: 100%;
        line-height: 1.2;
    }

    .grid-box-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .box-container {
        padding: 20px;
    }

    .box-text-content h3 {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .lawyer-bottom-text {
        padding-top: 40px;
    }

}

/*related practice areas */
/*==========================================
RELATED PRACTICE AREAS
==========================================*/

.related-practice-areas{
    padding:40px 0;
    background:#f8f7f5;
}

.related-practice-areas .section-heading{
    margin-bottom:50px;
}

.related-practice-areas .section-heading h2{
    color:#111827;
    font-size:48px;
    line-height:1;
    font-weight:500;
    font-family:"Cormorant Garamond", serif;
    margin:0;
}

.practice-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid #e7e2dc;
}

.related-practice-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:210px;
    padding:40px 35px;
    text-decoration:none;
    color:#111827;
    border-right:1px solid #e7e2dc;
    transition:all .35s ease;
    background:#F3EFE9;
}

.related-practice-card:last-child{
    border-right:none;
}

.related-practice-card.active,
.related-practice-card:hover{
    background:#00A499;
}
.related-practice-card:hover .practice-label{
    color:black;
}
.practice-label{
    display:block;
    margin-bottom:16px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#9a9596;
    transition:all .35s ease;
}

.related-practice-card h3{
    margin:0 0 24px;
    font-size:20px;
    line-height:1.25;
    font-weight:500;
    font-family:"Cormorant Garamond", serif;
    transition:all .35s ease;
    color:#231f20;;
}

.practice-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#000000ba;
}

.practice-link svg{
    transition:transform .3s ease;
}

.related-practice-card:hover .practice-link svg{
    transform:translateX(6px);
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width:1200px){

    .practice-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .related-practice-card:nth-child(2){
        border-right:none;
    }
}

@media (max-width:767px){

    .related-practice-areas{
        padding:70px 0;
    }

    .related-practice-areas .section-heading h2{
        font-size:32px;
    }

    .practice-cards{
        grid-template-columns:1fr;
    }

    .related-practice-card{
        border-right:none;
        border-bottom:1px solid #e7e2dc;
        min-height:auto;
        padding:30px 25px;
    }

    .related-practice-card:last-child{
        border-bottom:none;
    }

    .related-practice-card h3{
        margin-bottom:30px;
        font-size:16px;
    }
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section{
    padding:100px 0;
}

.faq-header{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.faq-header .section-tag{
    display:inline-block;
    margin-bottom:15px;
    color:#00A499;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.faq-header h2{
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size:48px;
    line-height:1.2;
    color:#0F172A;
    margin-bottom:20px;
    font-weight:700;
}

.faq-header p{
    color:#64748B;
    font-size:18px;
    line-height:1.8;
    margin-bottom:0;
}

.faq-wrapper{
    max-width:1000px;
    margin:0 auto;
}

/* =========================================
   FAQ ITEM
========================================= */

.faq-item{
   
    border:1px solid #E2E8F0;
    margin-bottom:20px;
    overflow:hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

/* =========================================
   QUESTION
========================================= */

.faq-question{
    font-family: "Cormorant Garamond", Georgia, serif;
    width:100%;
    background:none;
    border:none;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    cursor:pointer;
    text-align:left;
    color:#0F172A;
    font-size:22px;
    line-height:1.5;
    font-weight:600;
}

/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-icon{
    position:relative;
    width:24px;
    height:24px;
    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{
    content:'';
    position:absolute;
    background:#00A499;
    transition:all .3s ease;
}

.faq-icon::before{
    width:20px;
    height:2px;
    top:11px;
    left:2px;
}

.faq-icon::after{
    width:2px;
    height:20px;
    top:2px;
    left:11px;
}

.faq-item.active .faq-icon::after{
    transform:scaleY(0);
}

/* =========================================
   ANSWER
========================================= */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer-inner{
    padding:0 30px 30px;
}

.faq-answer p{
    margin:0;
    color:#475569;
    line-height:1.9;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:991px){

    .faq-section{
        padding:80px 0;
    }

    .faq-header h2{
        font-size:36px;
    }

    .faq-question{
        font-size:20px;
        padding:24px;
    }
}

@media (max-width:767px){

    .faq-section{
        padding:60px 0;
    }

    .faq-header h2{
        font-size:30px;
    }

    .faq-header p{
        font-size:16px;
    }

    .faq-question{
        font-size:18px;
        padding:20px;
    }

    .faq-answer-inner{
        padding:0 20px 20px;
    }

    .faq-answer p{
        font-size:16px;
    }
}

/*==========================================
CONSULTATION CTA
==========================================*/

.consultation-cta{
    padding:100px 0;
    background:#f8f7f5;
}

.consultation-cta__inner{
    max-width:1500px;
    margin:0 auto;
    padding:90px 80px;
    text-align:center;
    border:1px solid #00A499;
    background: #F3EFE9;
}

.consultation-cta .section-tag{
    display:block;
    margin-bottom:30px;
    color:#00A499;
    font-size:14px;
    font-weight:700;
    letter-spacing:.25em;
    text-transform:uppercase;
}

.consultation-cta h2{
    max-width:900px;
    margin:0 auto 25px;
    color:#111827;
    font-size:48px;
    line-height:1.1;
    font-weight:500;
    font-family:"Cormorant Garamond", serif;
}

.consultation-cta p{
    max-width:700px;
    margin:0 auto 50px;
    color:#6b7280;
    font-size:20px;
    line-height:1.8;
}

.consultation-cta__actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*==========================================
PRIMARY BUTTON
==========================================*/

.consultation-cta .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-width:310px;
    height:74px;
    background:#00A499;
    color:#111827;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s ease;
}

.consultation-cta .btn-primary:hover{
    background:#111827;
    color:#fff;
}

.consultation-cta .btn-primary svg{
    width:20px;
    height:20px;
    flex-shrink:0;
}

/*==========================================
OUTLINE BUTTON
==========================================*/

.consultation-cta .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:320px;
    height:74px;
    border:1px solid #111827;
    background:transparent;
    color:#111827;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s ease;
}

.consultation-cta .btn-outline:hover{
    background:#111827;
    color:#fff;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width:991px){

    .consultation-cta{
        padding:80px 0;
    }

    .consultation-cta__inner{
        padding:70px 40px;
    }

    .consultation-cta p{
        font-size:18px;
    }
}

@media (max-width:767px){

    .consultation-cta{
        padding:60px 0;
    }

    .consultation-cta__inner{
        padding:50px 25px;
    }

    .consultation-cta h2{
        font-size:35px;
    }

    .consultation-cta p{
        font-size:16px;
        margin-bottom:40px;
    }

    .consultation-cta__actions{
        flex-direction:column;
        gap:15px;
    }

    .consultation-cta .btn-primary,
    .consultation-cta .btn-outline{
        width:100%;
        min-width:auto;
    }
}