:root{
	--primary:#294065;
    --secondary:#D56544;
    --mute : #EBE7E6;
	--light:#F9F6F4;
    --text : #333333;
    --white:#ffff; 
    --playfair-display : "Playfair Display", serif;
}
body{
    margin: 0;
    font-family: "Lora", serif;;
    font-size: 16px;
    line-height: 140%;
    overflow-x: hidden;
    background-color: var(--light);
}
a {
    color: var(--primary);
    text-decoration: none !important;
    transition: all 0.4s;
}
a:hover {
    color: var(--text);
    text-decoration: none;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text);
}

p:last-child {
    margin-bottom: 0;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
html .container {
    max-width: 1440px;
    width: 100%;
    padding: 0px;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.bg-dark{
    background-color: var(--text) !important;
}
.bg-light{
    background-color: var(--light) !important;
}
.bg-mute{
    background-color: var(--mute) !important;
}
.bg-white{
    background-color: var(--white) !important;
}
.title h5{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--secondary);
    letter-spacing: 0.16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.title h3{
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--playfair-display);
    line-height: 56px;
    margin-bottom: 14px;
}
.title.text-light h3,
.title.text-light h5,
.title.text-light p{
    color: var(--light);
}
html .btn {
    background-color: var(--primary);
    padding: 0px 28px;
    height: 52px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    color: var(--light);
    text-align: center;
    line-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.16px;
    z-index: 1;
    border: 0px;
    transition: all 0.5s;
}
html .btn:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    left: 0;
    background-color: var(--secondary);
    z-index: -1;
    transition: all 0.5s;
}
html .btn:hover:before{
    width: 100%;
}
html .btn:hover{
    color: var(--light);
}

html .btn.btn-light{
    background-color: var(--secondary);
}
html .btn.btn-light:before{
    background-color: var(--primary);
}
header{ 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 24px 0px;
    transition: all 0.5s;
}
.sticky header {
    padding: 18px 0px;
    background-color: var(--white);
    box-shadow: 0px 0px 10px -2px #00000014;
}
header .navbar  ul{
    display: flex;
    gap: 52px;
}
.header_logo img ,
.footer_logo img{
    max-width: 180px;
    width: 100%;
}
header .navbar ul > li > a:before{
    position: absolute;
    content: "";
    height: 1px;
    width: 0%;
    background-color: var(--secondary);
    left: 0;
    right: 0;
    bottom: -12px;
    top: auto;
    margin: auto;
    transition: all 0.5s;
}
header .navbar ul > li:hover > a:before,
header .navbar ul > li.active > a:before{
    width: 100%
}
header .navbar ul li a{
    text-transform: uppercase;
    letter-spacing: 0.16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
header .navbar ul li:hover > a,
header .navbar ul li.active > a{
    color: var(--secondary);
}
header .navbar .menuparent{
    position: relative;
}
header .navbar .menuparent > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    margin-top: -4px;
}
header .navbar .submenu {
    position: absolute;
    flex-direction: column;
    gap: 0px;
    top: 100%;
    background: var(--white);
    left: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translatey(50px);
    visibility: hidden;
    transition: all 0.4s;
}
header .navbar ul li:hover > .submenu {
    opacity: 1;
    transform: translatey(20px);
    visibility: visible;
}
header .navbar .submenu li {
    margin-bottom: 5px;
}
header .navbar .submenu li a {
    color: var(--primary);
    display: block;
    padding: 8px;
    border-radius: 4px;
    line-height: 140%;
    font-size: 14px;
}
header .navbar .submenu li a:before{
    display: none;
}
.banner_section{
   /* background-image: url(../images/banner.png); */
   /* background-size: 100% 100%;
   background-position: right;
   background-repeat: no-repeat; */
   padding-bottom: 0px;
}
.banner_section:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #FAEBE1 0%, #FFFFFF 100%);
    z-index: -1;
}
.banner_section:after{
    position: absolute;
    content: "";
    width: 295px;
    height: 300px;
    background-image: url(../images/banner-bottom-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    bottom: 0;
    top: auto;
}
.btn_wrap{
    display: flex;
    gap: 22px;
}
.banner_section .banner_wrap{
    padding-top: 158px;
}
.banner_section .banner_wrap .content .image img{
    border-radius: 500px 500px 0px 0px;
}
.banner_section .banner_wrap .content .image{
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: -50px;
}
.banner_section .banner_wrap .content .image:before{
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    border: 1px solid #F8D4C9;
    border-radius: 500px 500px 0px 0px;
    left: -20px;
    top: -17px;
    z-index: -1;


}
.banner_section .banner_wrap h3 {
    font-size: 64px;
    font-weight: 600;
    color: var(--primary);
    line-height: 78px;
    max-width: 724px;
    width: 100%;
    font-family: var(--playfair-display);
}
.banner_section .banner_wrap p{
    margin: 19px 0px 56px;
    max-width: 764px;
    width: 100%;
}
.banner_section .image_wrap img.banner_image {
    position: absolute;
    right: 50px;
    bottom: 0;
}
.banner_wrap a.btn {
    z-index: 2;
}
.banner_section .image_wrap img.banner_flower_image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}
.banner_section .image_wrap > div {
    margin-left: 160px;
}
.banner_section .image_wrap ul li {
    position: relative;
    padding-left: 24px;
    margin-top: 18px;
    font-size: 18px;
    max-width: 250px;
    width: 100%;
    line-height: 25px;
}
.banner_section .image_wrap ul li:before{
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    background-image: url(../images/banner-ul-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 7px;
    left: 0;
}
.banner_section .image_wrap ul li b {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--playfair-display);
}
.banner_section .image_wrap > div img.flower-img {
    position: absolute;
    left: auto;
    right: -20px;
    bottom: -7px;
}
.about_us_section{
    background-image: url(../images/about-us-main-bg.png);
    background-repeat: no-repeat;
}
.about_us_section .about_wrap{
    background-color: var(--white);
    border: 1px solid #DDDDDD;
}
.about_us_section .about_wrap .content{
    background-image: url(../images/about-us-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 90px;
}
.about_us_section .about_wrap .title {
    margin-bottom: 14px;
}
.about_us_section .about_wrap .icon_box{
    text-align: center;
}
.about_us_section .about_wrap .icon_box p {
    font-size: 18px;
    line-height: 25px;
    margin-top: 15px;
}
.about_us_section .about_wrap  .image img{
    width: 100%;
}
.clinic_section .title p{
    max-width: 520px;
    width: 100%;
}
.clinic_section .content{
    position: relative;
        padding-bottom: 80px;
        padding-left: 80px;

}
.clinic_section .content .image{
    position: absolute;
    right: 0;
    bottom: 0;
}
.clinic_section .content a.btn{
    margin: 27px 0px 100px;
}
.clinic_section .content img{
    border-radius: 500px 500px 0px 0px;
    width: 100%;
    border: 2px solid #DDDDDD;
}
.clinic_section .counter_box{
    margin-bottom: 50px;
}
.clinic_section .counter_box h3{
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 9px;
}
.clinic_section .counter_box p{
    font-size: 18px;

}
.our_treatment_section{
    padding: 135px 0px;
}
.our_treatment_section .title p{
    max-width: 587px;
    width: 100%;
    margin: 0px auto 65px;
}
.our_treatment_section .treatment_wrap .row{
    row-gap: 82px;
}
.our_treatment_section .treatment_box{
    position: relative;
}
.treatment_box .image{
    border-radius: 300px 300px 0px 0px;
    overflow: hidden;
    background: linear-gradient(180deg, #D7D7D9 0%, #BDBDBD 100%);

}
.treatment_box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.treatment_box:hover img{
    transform: scale(1.1);
}
.treatment_box .content{
    position: absolute;
    top: auto;
    bottom: 17px;
    text-align: center;
    width: 100%;
}
.treatment_box .content a.treatment-btn {
    border: 1px solid #000000;
    background-color: var(--white);
    font-family: var(--playfair-display);
    padding: 17px 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.5s;
}
.treatment_box:hover a.treatment-btn{
    border-color: var(--white);
}
.holistic_section{
    padding: 136px 0px;
}
.holistic_section .holistic_icon_box{
    text-align: center;
}
.holistic_icon_box p{
    max-width: 185px;
    width: 100%;
    margin: 16px auto 0px;
}
.how_we_work_section {
    background-image: url(../images/how-we-work-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.how_we_work_section .title h3{
    max-width: 586px;
    width: 100%;
    margin-bottom: 40px;
}
.how_we_work_section .title p{
    max-width: 560px;
    width: 100%;
    margin-bottom: 30px;
}
.how_we_work_section ul.works_step_wrap_ul{
    margin-bottom: 40px;
    max-width: 585px;
    width: 100%;
}
.how_we_work_section ul.works_step_wrap_ul li{
    border-bottom: 1px solid #DDDDDD;
    background-color: var(--white);
    height: 70px;
    line-height: 68px;
    padding-left: 82px;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--playfair-display);
    position: relative;
}
.how_we_work_section ul.works_step_wrap_ul li:before{
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    left: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../images/work-li-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.how_we_work_section ul.works_step_wrap_ul li:last-child{
    border-bottom: 0px;
}
.testimonial_wrap{
    display: flex;
    gap: 48px;
    margin-top: 65px;

}
.testimonial_wrap .testimonial_box{
    background-color: #F5F5DA;
    padding: 64px 70px;
    display: flex;
    gap: 32px;
}
.testimonial_wrap .testimonial_box:nth-child(2){
    background-color: #F5E1DA;
}
.testimonial_wrap .testimonial_box img{
    min-width: 64px;
    height: 64px;
    max-width: 64px;
}
.testimonial_wrap .testimonial_box h4{
    font-weight: 600;
    font-family: var(--playfair-display);
    color: #000000;
    margin-bottom: 17px;
}   
.testimonial_wrap .testimonial_box p{
    font-size: 18px;
    color: #000000;
    margin-bottom: 32px;
    line-height: 25px;
}
.testimonial_wrap .testimonial_box h5{
    counter-reset: #000000;
}
.testimonial_wrap .testimonial_box h5.des-title{
    color: #868686;
}
.testimonial_section a.btn{
    display: block;
    margin: 93px auto 0px;
    width: fit-content;
}
.appointment_section{
    background-image: url(../images/appointment-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}
.appointment_section .title{
    max-width: 495px;
    width: 100%;
}
.appointment_section .title h3{
    margin-bottom: 18px;
}
.appointment_section .title p{
    margin-bottom: 35px;
}
.appointment_section .row > *:nth-child(2){
    padding-left: 136px;
}
.package_section {
    padding: 136px 0px;
}
.package_section .package_wrap{
    background-color: var(--white);
    padding: 120px 145px;
}
.package_wrap .title{
    max-width: 425px;
    width: 100%;
}
.package_wrap .title p{
    margin-bottom: 33px;
}
.package_wrap .image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.package_wrap .image img {
    max-width: 350px;
    width: 100%;
}
.package_wrap .image img:nth-child(1) {
    border-radius: 300px 300px 0px 0px;
    border: 2px solid var(--white);
    transform: rotate(-7deg);
    margin-top: -48px;
}
.package_wrap .image img:nth-child(2) {
    border-radius: 0px 0px 300px 300px;
    box-shadow: -5px 0px 0px 0px #FFFFFF;
    transform: rotate(8deg);
    margin-left: -100px;
    margin-bottom: -48px;
}
footer{
    background-color: var(--white);
}
footer .container{
    max-width: 1312px;
}
footer a:hover{
    color: var(--secondary);
}
footer .footer_top{
    padding: 70px 0px 40px;
}
.footer_top .footer_logo{
    margin-bottom: 27px;
}
.footer_top .footer_logo img{
    transition: all 0.5s;
}
.footer_top .footer_logo img:hover{
    transform: scale(0.96);
}
.footer_top .cnt_info_wrap ul li{
    display: flex;
    gap: 8px;
    margin-bottom: 16px;

}
.footer_top .cnt_info_wrap ul li a{
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: var(--text);
}
.footer_top .cnt_info_wrap ul li:nth-child(2) .content a {
    margin-top: 3px;
}
.footer_top .cnt_info_wrap ul li a:hover{
    color: var(--secondary);
}
.footer_top h4{
    font-size: 22px;
    font-weight: 600;
    font-family: var(--playfair-display);
    margin-bottom: 36px;
}
.footer_top ul.links li{
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}
.footer_top ul.links li:before{
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    height: 1px;
    width: 0%;
    background-color: var(--secondary);
    transition: all 0.5s;
}
.footer_top ul.links li:hover:before,
.footer_top ul.links li.active:before{
    width: 100%;
}
.footer_top ul.links li a{
    font-size: 18px;
    line-height: 25px;
}
.footer_top ul.links li:hover a,
.footer_top ul.links li.active a{
    color: var(--secondary);
}
footer .footer_bottom{
    padding: 36px 0px;
    border-top: 1px solid #29406529;
}
footer .footer_bottom p{
    font-size: 18px;
}
footer .footer_bottom p a{
    color: var(--secondary);
}
footer .footer_bottom p a:hover{
    color: var(--primary);
}
.footer_top .social_media_ul{
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer_top .social_media_ul li a{
    height: 36px;
    width: 36px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    color: var(--white);
    transition: all 0.5s;
}
.footer_top .social_media_ul li a:hover{
    background-color: var(--secondary);
}
.footer_top ul.timing_ul{
    margin-bottom: 30px;
}
.footer_top ul.timing_ul li{
    margin-bottom: 25px;
    font-size: 18px;
}
.footer_top ul.timing_ul li span{
    width: 105px;
    display: inline-block;
}
.footer_top ul.timing_ul li svg{
    margin-right: 9px;
}
.scrollToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    border-radius: 55px;
    right: 30px;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    background: var(--primary);
    z-index: 9;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transform: scale(0.8) translateY(40px);
}
.scrollToTop:hover{
    background-color: var(--white);
}
.sticky .scrollToTop {
    opacity: 1;
    transform: scale(1) translateY(0);
}