:root{
    --main-color:#007368;
    --dark-color: #013934;
    --second-color:#67c7bc;
    --white-color: #fff;
    --black-color: #000;
    --text-color: #2a3433;
    --gray-color: #5e6060;
    --light-gray-color: #c5c8c9;
    --dark-gray-color: #565656;
    --dark-text-color: #414242;

    --font-family-primary: "Open Sans", sans-serif;
    --font-family-assistant: "Assistant", sans-serif;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}
body{
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    background-color: var(--white-color);
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.text-black{
    color: var(--black-color) !important;
}
.container{
    max-width: 1080px;
    padding: 0 16px;
}
.main-bg{
    background-color: var(--main-color);
}
.main-color{
    color: var(--main-color);
}
.global-btn{
    background-color: var(--main-color);
    font-size: 18px;
    line-height: 26px;
    border-radius: 50px;
    font-weight: var(--font-weight-regular);
    padding: 10px 18px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    max-width: fit-content;
}
.global-btn:hover{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent:hover{
    background-color: var(--main-color);
    color: var(--white-color);
}
.global-btn.black{
    background-color: var(--black-color);
    color: var(--white-color);
    border-color: var(--black-color);
}
.global-btn.black:hover{
    background: none;
    color: var(--black-color);
}
.global-btn.secondary{
    background-color: var(--second-color);
    color: #302b4d;
    border-color: var(--second-color);
}
.global-btn.secondary:hover{
    background: none;
    color: var(--second-color);
}
.global-btn > i{
    margin-left: 10px;
}
.w-fit-content{
    width: fit-content;
}
.min-w-fit-content{
    min-width: fit-content;
}
.max-w-fit-content{
    max-width: fit-content;
}
.mx-w-100{
    max-width: 100% !important;
}
.mx-w-820{
    max-width: 820px;
}
.mx-w-900{
    max-width: 900px !important;
}
.text-justify{
    text-align: justify;
}
.text-justify-center{
    text-align: justify;
    text-align-last: center;
}
.bg-main{
    background-color: var(--main-color);
}
.bg-dark-gray{
    background-color: var(--dark-gray-color);
}
.bg-white{
    background-color: var(--white-color);
}
.title-area .title{
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 26px;
    font-weight: var(--font-weight-extrabold);
}
.title-area p.subtitle{
    color: var(--text-color);
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 0;
    font-weight: var(--font-weight-regular);
}
.title-area p.subtitle > span{
    color: var(--main-color);
}
.title-area .title.main-color{
    color: var(--main-color);
}
.title-area .subtitle{
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 22px;
    font-weight: var(--font-weight-bold);
}
.title-area .subtitle > :where(strong, span){
    color: var(--main-color);
    font-weight: var(--font-weight-bold);
}
.title.dual-color-title span{
    color: var(--second-color);
}
.mb-10{
    margin-bottom: 10px !important;
}
.mb-15{
    margin-bottom: 15px !important;
}
.mb-20{
    margin-bottom: 20px !important;
}
.mb-30{
    margin-bottom: 30px !important;
}
.mb-35{
    margin-bottom: 35px !important;
}
.mb-40{
    margin-bottom: 40px !important;
}
.bg-img{
    background-size: cover;
    background-position: center center;
}
.bg-img.bg-center-right{
    background-position: center right;
}
.slick-arrow-custom{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 7px 13px 35px rgba(0,0,0,13%);
    background-color: var(--white-color);
    color: #23185d;
    font-size: 20px;
    z-index: 8;
}
.slick-arrow-custom::before{
    content: none;
}
.slick-arrow-custom:hover, .slick-arrow-custom:focus{
    color: #23185d;
    background-color: var(--white-color);
}
.slick-arrow-custom.slick-disabled{
    display: none !important;
}
form input{
    padding: 12px 20px;
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 6px;
    font-size: 20px;
    line-height: 24px;
    font-weight: var(--font-weight-regular);
    color: var(--black-color);
    width: 100%;
    font-family: var(--font-family-assistant);
}
form input::placeholder{
    color: #787979;
}
form input.form-check-input{
    padding: 2px !important;
}
form .submit-btn, form input[type="submit"]{
    padding: 10px 13px;
    background-color: var(--second-color);
    font-size: 23px;
    line-height: 28px;
    font-weight: var(--font-weight-bold);
    border: 1px solid var(--second-color);
    border-radius: 6px;
    color: var(--white-color);
    text-align: center;
    width: 100%;
    position: relative;
}
.submit-btn.has-icon > img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}
.form-submit i{
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    color: var(--white-color);
}
.wpcf7-spinner{
    display: none !important;
}
.wpcf7-not-valid-tip{
    font-size: 18px;
    line-height: 24px;
    text-align: start;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
}
.bmi-result{
    font-weight: var(--font-weight-bold);
}

/**** Header css start ****/
.container-fluid {
    padding-left: 16px;
    padding-right: 16px;
}
.main-property-wrapper{
    padding: 30px 0 80px;
}
.header{
    padding: 20px 16px;
    background-color: var(--white-color);
    gap: 38px;
}
#header.sticky{
    position: sticky;
    top: 0;
    z-index: 99;
}
.header .logo{
    max-width: 130px;
}
.navbar-toggler{
    border: none;
    padding: 0;
    font-size: 30px;
    color: var(--main-color) !important;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.main-menu{
    gap: 30px;
}
.main-menu li a{
    font-family: var(--font-family-assistant);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    line-height: 24px;
    color: var(--black-color);
}
.main-menu li.current-menu-item, .main-menu li a:hover{
    color: var(--main-color);
}

/**** Footer css start ****/
.footer{
    background-color: var(--main-color);
    padding-top: 32px;
}
.footer-contact-title{
    margin-bottom: 40px !important;
    margin-top: 60px;
}
.ft-wrapper .ft-about-content .title{
    font-size: 24px;
    line-height: 30px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-assistant);
    margin-bottom: 20px;
}
.contact-details .item{
    font-size: 19px;
    line-height: 28px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 26px;
    color: var(--white-color);
}
.contact-details .item:last-child{
    margin-bottom: 0;
}
.contact-details .item a{
    color: var(--white-color);
    max-width: fit-content;
}
.contact-details .item a:hover{
    color: var(--second-color);
}
.contact-details :where(.item, .item a){
    gap: 0 20px;
}
.contact-details .item span {
    margin-top: 6px;
}
.contact-details li i{
    width: 42px;
    height: 42px;
    line-height: 42px;
    background-color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    color: var(--main-color);
    font-size: 20px;
}
.ft-wrapper {
    border-bottom: 1px solid rgba(255,255,255,50%);
    padding: 0 0 30px;
}
.copyright-wrapper {
    padding: 20px 0;
}
.privacy-links{
    gap: 10px;
}
.privacy-links :where(a, span){
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
}
.privacy-links a:hover{
    color: var(--second-color);
}

/***************
Hero section CSS
****************/
.hero-sec{
    padding: 60px 0 40px;
}
h1.title{
    font-size: 34px;
    line-height: 40px;
    font-weight: var(--font-weight-extrabold);
    color: var(--main-color);
    margin-bottom: 26px;
}
.hero-content .desc{
    font-size: 18px;
    line-height: 26px;
}
.hero-content .desc p{
    margin-bottom: 16px;
}
.hero-content .desc p:last-child{
    margin-bottom: 30px;
}

/*****************
Result section css
******************/
.result-sec{
    padding-top: 90px;
}
.result-row .result-box{
    background-color: var(--second-color);
    padding: 20px;
    border-radius: 30px;
}
.result-row .col-12:nth-child(odd) .result-box{
    background-color: var(--main-color);
}
.result-box .result-icon{
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
}
.result-box .title{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
    font-weight: var(--font-weight-extrabold);
}
.result-box .desc{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px;
    font-weight: var(--font-weight-medium);
}

/*****************
Secret section css
******************/
.secret-sec{
    padding: 120px 0;
}
.secret-sec .title-area .title small{
    font-weight: var(--font-weight-regular);
    line-height: 36px;
}
.secret-sec .title-area .title span{
    color: var(--second-color);
    font-weight: var(--font-weight-extrabold);
}
.secret-sec .desc{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}
.secret-list .list-item{
    gap: 16px;
}
.secret-list .list-item:not(:last-child){
    margin-bottom: 26px;
}
.secret-list .list-item .list-img-wrap{
    width: 74px;
    height: 74px;
    min-width: 74px;
    line-height: 74px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
}
.secret-list .list-item .list-img-wrap .secret-list-icon{
    max-width: 50px;
}
.secret-list .list-item .content .title{
    color: var(--main-color);
    font-size: 20px;
    line-height: 26px;
    font-weight: var(--font-weight-bold);
}
.secret-img-wrap::before{
    content: '';
    background-image: url('../images/image-shape.webp');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -80px;
    top: -58px;
    z-index: 1;
    width: 122px;
    height: 122px;
}
.secret-img-wrap .secret-img {
    border-radius: 20px;
}

/**********************
Weight Loss section css
***********************/
.wl-sec{
    position: relative;
    padding: 34px 0;
    background-color: #e7e9ec;
}
.wl-sec::before{
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--main-color);
    border-radius: 30px 0 0 30px;
}
.wl-content .desc p:not(:last-child){
    margin-bottom: 16px;
}
.wl-content .desc p :where(b, strong){
    font-size: 18px;
    line-height: 24px;
}
.wl-video-wrapper{
    max-width: 360px;
    margin-left: 30px;
}
.wl-video-wrapper .video-area{
    margin-bottom: 40px;
}

/* Iframe Video CSS */
.video-area{
    position: relative;
}
.video__play-button{
    margin:0 0 0;
    padding:0;
    cursor:pointer;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:100%;
    height: calc(100% - 10px);
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    z-index: 2;
    transition: all 200ms ease-in-out;
    border-radius: 14px;
}
.video-area iframe {
    background-color: var(--black-color);
    border-radius: 26px;
}
.video-area iframe:hover, .video-area iframe.playing {
    pointer-events: auto;
}
.video__play-button-icon{
    width:60px;
    margin-left: auto;
    margin-right: auto;
    transition: all 200ms ease-in-out;
    fill: none !important;
    background: var(--main-color);
    border-radius: 50px;
}
.video__play-button-icon--play polygon{
    transform-origin: 50% 50%;
    transition: all 200ms ease-in-out;
}
.video__play-button-icon--play polygon, .video__play-button-icon--pause rect{
    fill: var(--black-color);
}
.video__play-button[data-button-state="pause"] .video__play-button-icon--pause{
    display:none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon--play{
    display:none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon{
    opacity:0;
}
.video__play-button[data-button-state="play"]:hover .video__play-button-icon, .video__play-button-icon--pause{
    opacity:1;
}

/************************
Tranformation section css
*************************/
.trans-sec{
    padding: 80px 0;
}
.our-program-cards-wrap{
    max-width: 1048px;
}
.card {
    position: sticky;
    top: calc(var(--index) + var(--cardTopPadding)) !important;
    border-radius: 30px;
    box-shadow: 8px 20px 28px rgba(0, 0, 0, 10%);
}
:root {
    --cardTopPadding: 7rem;
}
#card1 {
    --index: 1;
}
#card2 {
    --index: 2rem;
}
#card3 {
    --index: 3rem;
}
#card4 {
    --index: 4rem;
}
#card5 {
    --index: 5rem;
}
.card {
    position: sticky;
    top: calc(var(--index) + var(--cardTopPadding)) !important;
}
.inner-our-program-container .our-program-work-card-box {
    background-color: var(--white-color);
    width: 100%;
    padding: 30px;
    margin-bottom: 10px;
}
.inner-our-program-container .our-program-work-card-box:last-child{
    margin-bottom: 0;
}
.inner-our-program-container .our-program-work-card-box:nth-child(1) {
    width: 90%;
    top: 8rem !important;
}
.inner-our-program-container .our-program-work-card-box:nth-child(2) {
    width: 93%;
}
.inner-our-program-container .our-program-work-card-box:nth-child(3) {
    width: 96%;
}
.inner-our-program-container .our-program-work-card-box:nth-child(4) {
    width: 99%;
}
.scroll-card-content h3{
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 14px;
    font-weight: var(--font-weight-extrabold);
}
.scroll-card-content h4{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 28px;
    font-weight: var(--font-weight-bold);
}
.scrol-card-contentl p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.scroll-card-img > img {
    max-width: 85%;
    width: 100%;
}
.mobile-card-heading{
    display: none;
}
.trans-bottom-content {
    padding-bottom: 80px;
}
.success-bottom-content {
  padding: 60px 0;
}

/********************
Success section start
*********************/
.success-container .success-card-box:nth-child(odd){
    background-color: #007268;
}
.success-container .success-card-box:nth-child(even){
    background-color: #036159;
}
.success-container .scroll-card-content :where(.desktop-card-hading, .desc){
    color: var(--white-color);
}
.success-container .scroll-card-content .desc {
    margin-bottom: 60px;
}
#success_card1 {
    --index: 1;
}
#success_card2 {
    --index: 2rem;
}
#success_card3 {
    --index: 3rem;
}
#success_card4 {
    --index: 4rem;
}
#success_card5 {
    --index: 5rem;
}
.success-container .success-card-box:nth-child(1) {
    width: 90%;
    top: 8rem !important;
}
.success-container .success-card-box:nth-child(2) {
    width: 92%;
}
.success-container .success-card-box:nth-child(3) {
    width: 94%;
}
.success-container .success-card-box:nth-child(4) {
    width: 96%;
}
.success-container .success-card-box:nth-child(5) {
    width: 98%;
}

/****************
How its works css
*****************/
.how-does-proceess{
    padding-bottom: 60px;
}
#procard1 {
    --index: 1rem;
}
#procard2 {
    --index: 1rem;
}
#procard3 {
    --index: 1rem;
}
#procard4 {
    --index: 1rem;
}
#procard5 {
    --index: 1rem;
}
#procard6 {
    --index: 1rem;
}
#procard7 {
    --index: 1rem;
}
#procard8 {
    --index: 1rem;
}
.card.how-work-content-inner-wrap{
    padding: 30px;
    margin-bottom: 20px;
    background-color: #f7f8fa;
    min-height: 400px;
}
.how-soes-content-box-wrap:before{
    border-left: 30px solid var(--main-color);
    z-index: -1;
}
.card-count{
    font-size: 76px;
    line-height: 76px;
    color: var(--second-color);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 20px;
}
.bottom-howdes-work-adss li img{
    max-width: 20px;
    object-fit: contain;
    height: fit-content;
    margin-top: 5px;
}
.how-work-content-inner-wrap .scroll-card-content h3{
    margin-bottom: 22px;
}
.card.how-work-content-inner-wrap::before {
    content: '';
    width: 4px;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    left: -40px;
    top: 0;
    border-radius: 8px;
}
.card.how-work-content-inner-wrap::after {
    content: '';
    width: 22px;
    height: 22px;
    background: var(--main-color);
    border-radius: 50%;
    top: 50%;
    left: -49px;
    position: absolute;
    transform: translateY(-50%);
}
.card.how-work-content-inner-wrap:last-child::after {
    top: 45%;
}
 .how-does-proceess .title-area.bottom .subtitle > span {
    font-weight: var(--font-weight-regular);
}

/***************
Testimonials css
****************/
.testimonials-sec{
    background-color: #f7f8fa;
    padding: 30px 0 0;
}
.read-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.read-content.lineclamp-6.expanded{
    -webkit-line-clamp: unset;
}
.read-content.lineclamp-9.expanded{
    -webkit-line-clamp: unset;
}
.read-content.expanded {
    -webkit-line-clamp: unset;
}
.read-content.lineclamp-9{
    -webkit-line-clamp: 9;
}
.read-content.lineclamp-6{
    -webkit-line-clamp: 6;
}
.testimoninal-slider .slick-track{
    display: flex;
    gap: 0 30px;
    padding: 40px 0;
}
.testimoninal-slider .slick-track .slide{
    height: inherit !important;
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 30px 30px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,20%);
}
.custom-dots .slick-dots li{
    padding: 0;
    width: 55px;
    height: 5px;
    background: #d1d2d4;
    border-radius: 10px;
}
.custom-dots .slick-dots li.slick-active{
    background: var(--second-color);
}
.custom-dots .slick-dots li button{
    width: unset;
    height: unset;
}
.custom-dots .slick-dots li button::before{
    content: none;
}
.testimoninal-slider .slick-dots{
    bottom: -50px;
}
.testi-wrapper .star{
    max-width: 94px;
}
.testi-content{
    font-size: 15px;
    line-height: 23px;
    color: var(--text-color);
    font-weight: var(--font-weight-regular);
    margin-bottom: 30px;
}
.testi-content .name{
    font-weight: var(--font-weight-bold);
    color: var(--main-color);
}
.testi-wrapper .read-btn, .expert-detail-wrapper .read-btn{
    font-size: 16px;
    line-height: 23px;
    color: var(--main-color);
    font-weight: var(--font-weight-bold);
}
.testi-wrapper .read-btn:hover, .expert-detail-wrapper .read-btn:hover{
    color: var(--second-color);
}
.testi-bottom-content .subtitle > span{
    font-weight: var(--font-weight-regular);
}

/**************
Our Experts css
***************/
.info-box-wrapper{
    padding-bottom: 80px;
}
.info-box-wrapper .row .col-12 .info-wrapper, .control-box-wrapper .row .col-12 .control-wrapper{
    padding: 30px 20px;
    background-color: #d6bda3;
    border-radius: 30px;
}
.control-box-wrapper .row .col-12 .control-wrapper{
    background-color: var(--main-color);
}
.info-box-wrapper .row .col-12:nth-child(2) .info-wrapper{
    background-color: var(--second-color);
}
.info-box-wrapper .row .col-12:nth-child(3) .info-wrapper{
    background-color: var(--main-color);
}
.info-wrapper .expert-info-icon, .control-wrapper .control-icon{
    margin-bottom: 16px;
}
.info-wrapper .title{
    font-size: 24px;
    line-height: 30px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}
.info-wrapper .desc{
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
}
.control-wrapper .desc{
    font-size: 18px;
    line-height: 24px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
}
.control-wrapper .desc > strong{
    font-weight: var(--font-weight-extrabold);
}

/**********
Experts css
***********/
.expert-box{
    border-radius: 30px;
    background-color: #f7f8fa;
    box-shadow: 0 0 20px rgba(0,0,0,20%);
    padding: 30px;
}
.experts-wrapper{
    max-width: 96%;
    margin-bottom: 90px;
}
.expert-detail-wrapper .name {
    font-size: 30px;
    line-height: 34px;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 20px;
}
.expert-detail-wrapper .role{
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
    color: var(--dark-color);
}
.expert-detail-wrapper .about-expert{
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 26px;
}
.expert-bottom-content .title {
    font-size: 30px;
    line-height: 40px;
    font-weight: var(--font-weight-regular);
}
.expert-bottom-content .title > span {
    font-weight: var(--font-weight-bold);
}
.expert-bottom-content p.subtitle{
    font-size: 18px;
    line-height: 26px;
    font-weight: var(--font-weight-regular);
    font-style: italic;
}

/************
FAQ CSS Start
*************/
.faq-sec{
    padding: 90px 0;
}
.faq-btn{
    margin-top: 50px;
}
.faq-accordion .accordion-button{
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    padding: 20px;
}
.accordion-button:not(.collapsed){
    color: var(--text-color);
    background-color: var(--white-color);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed):focus{
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button:focus{
    box-shadow: none;
}
.faq-accordion .accordion-body{
    font-size: 16px;
    line-height: 24px;
}

/*************
Quiz CSS Start
**************/
.quiz-sec{
    background-color: var(--main-color);
    padding: 40px 0 50px;
}
.quiz-wrapper {
    padding: 26px;
    background-color: var(--white-color);
    border-radius: 35px;
}
.quiz-wrapper .quiz-content{
    max-width: 600px;
}
.quiz-wrapper .quiz-content .quiz-img{
    max-width: 270px;
    margin-bottom: 20px;
}
.quiz-wrapper .quiz-content .title-area p.subtitle{
    font-size: 18px;
    line-height: 28px;
    font-weight: var(--font-weight-regular);
}

/***************
Take control css
****************/
.take-control{
    padding: 65px 0 80px;
}
.take-control .title-area p.subtitle{
    font-size: 30px;
    line-height: 40px;
}



.accordion-toggle {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.accordion-toggle h3 {
    font-size: 18px;
    line-height: 22px;
    color: var(--main-color);
}
.toggle-icon {
    font-weight: bold;
    font-size: 1.4rem;
    margin-left: 10px;
}
.accordion-content{
    padding: 20px 0;
}

/* Privacy Policy */
.privacy-banner{
    min-height: 360px;
    padding: 16px;
    margin-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.privacy-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.page-content{
    margin-bottom: 80px;
}
.page-content ul {
    list-style: disc;
    margin-right: 16px;
}
.page-content h2, .page-content h3 {
    margin-top: 26px;
}
.page-content p {
    margin-bottom: 8px;
    line-height: 28px;
}
.page-content p a{
    color: var(--main-color);
}
.privacy-banner h1 {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 16px;
    color: var(--white-color);
}
.privacy-banner-content{
    z-index: 9;
    position: relative;
}
.breadcrumbs {
    gap: 10px;
    margin-bottom: 0;
}
.breadcrumbs li {
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
}
.breadcrumbs li a{
    color: var(--main-color);
}
.privacy-links {
    gap: 20px;
    margin-top: 16px;
}
.privacy-links a{
    /* color: var(--main-color); */
    /* text-decoration: underline; */
}
.page-template-template-privacy .desk-header{
    display: none;
}
.page-template-template-privacy .footer{
    display: none;
}
.privacy-content{
    margin: 40px 0px;
}
.page-template-template-privacy .page-content{
    margin-bottom: 0;
}



/* Quiz Css */
#quiz-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    z-index: 9999; /* Ensure it's on top of other content */
    align-items: center;
    justify-content: center;
    overflow: auto; /* Allows scrolling if content is too long */
}

#quiz-popup {
    background-color: #fff;
    /* padding: 2rem; */
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 90%;
    width: 938px;
    max-height: 650px;
    overflow-y: auto;
}

#quiz-popup::-webkit-scrollbar {
    width: 12px;
}

#quiz-popup::-webkit-scrollbar-track {
    background: #fff; 
    border-radius: 10px;
}

#quiz-popup::-webkit-scrollbar-thumb {
    background-color: var(--main-color); 
    border-radius: 10px;
    border: 3px solid #fff; 
}

.quiz-options{
    display: flex;
  gap: 15px;
}
.quiz-options input{
    width: 15px;
}
.quiz-options label{
    display: flex;
    gap: 7px;
}
.custom-form-step-1 form{
    max-width: 500px;
    margin-top: 50px;
}
.quiz-form-wrapper{
    margin-top: 50px;
    max-width: 500px;
    margin: 50px auto 0 auto;
}
.quiz-form-wrapper input{
    border: 1px solid #d2d2d2;
}
.next-button {
    display: flex;
    justify-content: center;
}
.btn-next.global-btn{
    min-width: 150px;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
}
#quiz-step-1{
    /* justify-content: center;
  display: flex; */
}
.quiz-step form{
    /* display: flex;
    justify-content: center; */
}
form.quiz-form{
    display: block;
}
#close-quiz-btn {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 2rem;
    font-weight: bold;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    line-height: 1;
}

/* Step content and indicator styling */
.quiz-step {
    display: none; /* Hide all steps */
}

.quiz-step.active {
    display: block; /* Show the active step */
}

.quiz-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 32px;
    padding: 30px;
    background: var(--main-color);
}
.quiz-step {
    padding: 0 2rem 2rem 2rem;
}
.quiz-steps-indicator .step {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #999;
    position: relative;
}

.quiz-steps-indicator .step:after {
    content: '';
    position: absolute;
    right: -25px; /* Adjust spacing between steps */
    width: 20px;
    height: 2px;
    background-color: #ddd;
    top: 50%;
    transform: translateY(-50%);
}
/* Remove the connector line for the last step */
.quiz-steps-indicator .step:last-child:after {
  display: none;
}

.quiz-steps-indicator .step.active {
    color: #000; /* Color for the active step text */
    font-weight: bold;
}

.quiz-steps-indicator .step.active .step-number {
    background-color: var(--second-color); /* Active step background color */
    color: #fff;
    /* border-color: var(--main-color); */
}
.step-label {
    color: #fff;
    font-size: 13px;
}
.quiz-steps-indicator .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* border: 2px solid #ccc; */
    margin-right: 10px;
    background-color: #fff;
}

.quiz-faq {
  margin-bottom: 25px;
}

.quiz-question label {
  /* font-weight: bold; */
  display: block;
  margin-bottom: 10px;
  color: #000;
}

.quiz-answer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.quiz-answer label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}

.quiz-answer input {
  margin: 0;
  width: 15px;
}
.quiz-submit{
    height: 55px;
}
.quiz-submit input[type="submit"] {
  background: var(--main-color);
  color: white;
  padding: 10px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  width: fit-content;
  float: left;
}

.quiz-submit input[type="submit"]:hover {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

#quiz-popup-content .wpcf7-response-output {
    color: #000;
    margin: -2rem 20px 20px 20px;
    font-size: 15px;
    display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  height: 0 !important;
  overflow: hidden !important;
}
#quiz-popup-content .wpcf7-not-valid-tip{
    font-size: 14px;
}

.quiz-faq{
    background: #f2f2f280;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--main-color);
}

/* .thankyou-wrapper {
    display: none;
} */
.thankyou-wrapper {
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.thankyou-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.quiz-main-wrapper {
  display: block;
}


.form-submit{
    max-width: 330px;
    margin: 0 auto;
}
.form-submit-btn .submit-btn {
    max-width: calc(330px - 20px);
    justify-content: center;
    font-family: var(--font-family-assistant);
}
.form-submit-btn .submit-btn:hover {
    background-color: var(--second-color) !important;
    color: var(--white-color) !important;
}
.form-submit-btn .submit-btn > i {
    position: absolute;
    right: 20px;
    font-size: 16px;
}


/* Show only one question at a time */
#quiz-step-2 .question-step {
  display: none;
}

#quiz-step-2 .question-step.active {
  display: block;
}
.quiz-navigation p {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.quiz-navigation .global-btn {
  min-width: 120px;
    align-items: center;
    justify-content: center;
}
.quiz-answer .wpcf7-form-control{
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 8px;
}
/* Hide Contact Form 7's default success message for the quiz popup */
/* #quiz-popup-content .wpcf7 form .wpcf7-response-output {
  display: none !important;
} */

