html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #F5F1EC;
    color: #4C5A5C;
    font-size: 16px;
    font-weight: 500;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
}

p{
    line-height: 28px;
}

.btn:focus{
    box-shadow: none;
}

.container{
    padding-left: 20px;
    padding-right: 20px;
}

@media(min-width: 576px){
    .header .container, 
    .hero-sec .container{
        max-width: 675px;
    }
}

@media(min-width: 768px){
    .header .container, 
    .hero-sec .container{
        max-width: 875px;
    }
}

@media(min-width: 992px){
    .header .container, 
    .hero-sec .container{
        max-width: 1080px;
    }
}

@media(min-width: 1200px){
    .header .container, 
    .hero-sec .container{
        max-width: 1300px;
    }
}

@media(min-width: 1400px){
    .header .container, 
    .hero-sec .container{
        max-width: 1600px;
    }
    .container{
        max-width: 1230px;
    }
}

/*Header*/
.header{
    background: #012A32;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
    padding: 15px 0;
}
.navbar-nav{
    gap: 54px;
}
.nav-link{
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #92D1D0;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.nav-item .nav-link.active, 
.nav-item .nav-link:hover{
    color: #FFFFFF;
}
.btn-theme{
    border-radius: 8px;
    background-color: #0E6E7B;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 0px;
    /*display: flex;
    align-items: center;
    gap: 10px;*/
    transition: all 0.3s ease-in-out;
    /*position: relative;
    display: inline-block;
    overflow: hidden;*/
}
.btn.btn-theme:hover, 
.btn:first-child:active{
    background-color: #AA864C;
    color: #FFFFFF;
}
.header .btn-theme{
    background-color: #AA864C;
    border: 2px solid #AA864C;
    padding: 11px 28px;
}
.header .btn-theme:hover{
    background-color: transparent;
    color: #AA864C;
    border-color: #AA864C;
}
/*.btn-theme::before{
    content:"";
    position:absolute;
    top:0;
    left:-90%;
    width:70%;
    height:100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 45%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0.8) 55%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

.btn-theme:hover::before{
    animation: shine 0.9s ease forwards;
}

@keyframes shine{
    0%{
        left:-90%;
    }
    100%{
        left:140%;
    }
}*/

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}          
.navbar-toggler:focus{
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
    display: flex;
}
.menu_toggle{
    width: 23px !important;
    height: 23px;
    padding: 0px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
    align-items: flex-end;
}
.menu_toggle span{
    height: 3px;
    width: 100%;
    background: #92D1D0;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1){
    width: 90%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2){
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3){
    width: 90%;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
#check1{
    display: none;
}


/*Hero Section*/
.hero-sec{
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-content{
    position: relative;
    margin: 78px 0;
    padding: 42px 0 174px;
    max-width: 888px;
    width: 100%;
}
.hero-content::after{
    content: '';
    width: 100%;
    height: 100%;
    background: #ffffffe6;
    filter: blur(105px);
    position: absolute;
    top: 0;
    left: -16px;
}
.hero-title{
    color: #0E6E7B;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 74px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.gv-text{
    color: #AA864C;
    text-align: center;
    font-family: "Great Vibes";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto 40px;
    max-width: 630px;
    width: 100%;
}

.z-1{
    position: relative;
    z-index: 1;
}


/*Content Sec*/
.content-sec{
    background-size: cover;
    background-position: center;
    position: relative;
}
.content-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #f3eee633;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
.sec-pad{
    padding: 80px 0;
}
.content-box{
    margin-bottom: 30px;
}
.content-box p{
    margin-bottom: 20px;
}
.content-box p:last-child{
    margin-bottom: 0px;
}


/*A Holistic Approach to Wellness*/
.title{
    color: #0E6E7B;
    font-family: "Playfair Display";
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.br-10{
    border-radius: 10px;
}

/*Our Healing Services*/
.ohs-sec{
    background-size: cover;
    background-position: center;
}
.ohs-sec .title{
    text-align: center;
    margin-bottom: 40px;
}
.hs-box{
    position: relative;
    background-color: #012a32;
    border-radius: 10px;
    padding: 34px 30px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hs-box::after{
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../../img/hs-bg.png);
    position: absolute;
    top: 0;
    left: 0;
}
.icon-box{
    width: 70px;
    height: 70px;
    border-radius: 9px;
    background-color: #FFFFFF1A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.sub-title{
    font-family: "Playfair Display";
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
}
.hs-box .sub-title{
    color: #FFFFFF;
    margin-bottom: 14px;
}
.hs-box p{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C89F5E;
    margin-bottom: 18px;
}
.sub-title2{
    font-family: "Playfair Display";
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
.hs-box .sub-title2{
    color: #C89F5E;
    margin-bottom: 14px;
}
.hs-box ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hs-box ul li{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.hs-box ul li::before{
    content: '';
    min-width: 8px;
    height: 8px;
    background-color: #0E6E7B;
    border-radius: 50%;
    margin-top: 8px;
}


/*Why Clients Choose The Sacred Touch*/
.cst-sec{
    position: relative;
    background-color: #012A32;
}
.cst-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../../img/cst-bg.png);
    position: absolute;
    top: 0;
    left: 0;
}
.cst-sec .title{
    color: #FFFFFF;
    margin-bottom: 50px;
    text-align: center;
}
.cst-box{
    border-bottom: 1px solid #C89F5E;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.cst-box .sub-title{
    color: #FFFFFF;
    margin-bottom: 14px;
}
.cst-box p{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
}
.cst .cst-box:last-child{
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}



/*Services Page Css*/
.inner-hero-sec{
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}
.inner-hero-sec .title{
    color: #FFFFFF;
    text-align: center;
}
.list-sec{
    margin-bottom: 20px;
}
.list-sec p{
    margin-bottom: 10px !important;
}
.cust-ul{
    padding-left: 19px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cust-ul li::marker{
    color: #0E6E7B;
}
.box001{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.box001.bottom{
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #C89F5E;
}
.box002{
    display: flex;
    align-items: stretch;
}
.list-box{
    min-height: 100%;
    flex: 1;
}
.list-box.left{
    padding-right: 50px;
}
.list-box.right{
    padding-left: 50px;
    border-left: 1px solid #C89F5E;
}
.list-box .sub-title{
    color: #C89F5E;
    margin-bottom: 10px;
}
.add-on-box{
    padding: 25px 40px;
    background-color: #EFE2D2;
    display: flex;
    align-items: center;
}
.add-on-box .title-box{
    padding-right: 66px;
}
.add-on-box .title-box .sub-title{
    color: #0E6E7B;
    white-space: nowrap;
}
.add-on-box .right-side{
    padding: 3px 0px 3px 66px;
    border-left: 1px solid #C89F5E;
}
.right-side .sub-title2{
    color: #C89F5E;
    margin-bottom: 8px;
}
.right-side p{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
}
.service-seo-box{
    padding: 28px 32px;
    background-color: #EFE2D2;
    border-radius: 8px;
}
.service-seo-box .sub-title{
    color: #0E6E7B;
    margin-bottom: 12px;
}
.service-seo-box > p{
    margin-bottom: 18px !important;
}
.check-list{
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
}
.check-list li{
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 24px;
}
.check-list li::before{
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0E6E7B;
    font-weight: 700;
}
.box002--single .list-box.right{
    padding-left: 0;
    border-left: 0;
}
.service-faq{
    max-width: 820px;
    margin-inline: auto;
}
.service-faq .sub-title{
    color: #0E6E7B;
    margin-bottom: 18px;
}
.service-faq__accordion .accordion-item{
    border: 1px solid rgba(200, 159, 94, 0.45);
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #FFF;
}
.service-faq__accordion .accordion-item:last-child{
    margin-bottom: 0;
}
.service-faq__accordion .accordion-button{
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #012A32;
    background: #F5F1EC;
    box-shadow: none;
    padding: 16px 20px;
}
.service-faq__accordion .accordion-button:not(.collapsed){
    color: #0E6E7B;
    background: #EFE2D2;
}
.service-faq__accordion .accordion-button:focus{
    box-shadow: none;
    border-color: rgba(200, 159, 94, 0.45);
}
.service-faq__accordion .accordion-body{
    padding: 16px 20px 20px;
    font-size: 15px;
    line-height: 26px;
}
.pricing-sec{
    position: relative;
}
.pricing-sec .title{
    margin-bottom: 40px;
}
.pricing-card{
    background: #FFF;
    border-radius: 10px;
    padding: 28px 30px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(1, 42, 50, 0.08);
}
.pricing-card .sub-title{
    color: #0E6E7B;
    margin-bottom: 18px;
}
.pricing-list{
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-list li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 159, 94, 0.35);
}
.pricing-list li:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}
.pricing-list__label{
    flex: 1;
    font-size: 15px;
    line-height: 24px;
}
.pricing-list__price{
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #C89F5E;
    white-space: nowrap;
}
.pricing-note{
    font-size: 14px;
    line-height: 24px;
    color: #4C5A5C;
}
.testimonials-sec{
    background-color: #EFE2D2;
}
.testimonial-card{
    background: #FFF;
    border-radius: 10px;
    padding: 28px 26px 24px;
    height: 100%;
    margin: 0;
    border-left: 4px solid #C89F5E;
    box-shadow: 0 8px 24px rgba(1, 42, 50, 0.06);
}
.testimonial-card p{
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 18px;
    color: #4C5A5C;
}
.testimonial-card p::before{
    content: "\201C";
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1;
    color: #C89F5E;
    margin-bottom: 8px;
}
.testimonial-card footer{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0E6E7B;
}


/*About Us Page Css*/
.mhps-sec{
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.om-box .icon-box{
    margin: 0 auto 20px;
}
.om-box .sub-title{
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0px;
}
.cust-gap{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 80px;
}


/*Contact Us Page Css*/
.contact-title{
    color: #AA864C;
    text-align: center;
    font-family: "Great Vibes";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}
.footer-page .footer{
    margin-top: 0px !important;
    padding-top: 0px !important;
}
.contact-link{
    transition: all 0.3s ease-in-out;
}
.contact-link:hover{
    color: #AA864C;
}
.hs-box.contact-box p{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


/*Start Your Healing Journey Today*/
.shjt-sec{
    background-size: cover;
    background-position: center;
    padding: 61px 86px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.shjt-sec .title{
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}
.btn-theme.btn-white{
    background-color: #FFFFFF;
    color: #012A32;
}
.bold{
    font-weight: 700;
}





























































/*Footer*/
.footer{
    background-size: cover;
    background-position: center;
    margin-top: -194px;
    padding-top: 194px;
}
.p-footer{
    padding: 66px 0 56px;
}
.p-content{
    display: flex;
    justify-content: space-between;
    gap: 88px;
}
.ql-sec{
    min-width: 206px;
}
.p-content .sub-title{
    color: #FFFFFF;
    margin-bottom: 22px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.f-ul a{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.f-ul a:hover{
    color: #C89F5E;
}
.f-ul a::before{
    content: '';
    min-width: 8px;
    height: 8px;
    background-color: #0E6E7B;
    border-radius: 50%;
}
.logo-sec{
    min-width: 618px;
    padding: 0 88px;
    border-left: 1px solid #C89F5E;
    border-right: 1px solid #C89F5E;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.logo-sec p{
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
}
.social-sec{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-box{
    transition: all 0.3s ease-in-out;
}
.social-box:hover{
    transform: translateY(-10px);
}
.f-contact-sec{
    min-width: 206px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.f-contact-box .sub-title2{
    color: #C89F5E;
    margin-bottom: 2px;
}
.f-contact-box p{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0px;
}
.s-footer{
    padding: 18px 0;
    background-color: #0000004d;
}
.sf-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.sf-content__main{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.xponex-credit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}
.xponex-credit a{
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.xponex-logo{
    height: 22px;
    width: auto;
    display: block;
}
.f-link{
    transition: all 0.3s ease-in-out;
}
.f-link:hover{
    color: #C89F5E;
}