@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

:root{
    --theme-dark-blue: #305a90;
    --secondary-teal: #29A3A3;
    --theme-nevy-blue: #212936;
    --theme-orange : #f19e70;
    --theme-black2: #1a1a1a;
    --theme-light-blue: #eef8fe;
    --text-dark: #333333;
    --text-gray: #4b5563;
}

/* Common  */
*{
    box-sizing: border-box;
}
body{
    color: var(--text-gray);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

img{
    max-width: 100%;
}

h1,h2,h3,h4,h5{
    font-family: "Montserrat", sans-serif;
}


/* Backgrounds  */
.bg_lightBlue{
    background-color: var(--theme-light-blue);
}
.bg_black{
    background-color: #000;
}
.bg_nevyBlue{
    background-color: var(--theme-nevy-blue);
}
.text_darkBlue{
    color: var(--theme-dark-blue);
}
.text_orange{
    color: var(--theme-orange);
}
.text_black{
    color: #000 !important;
}
.text_gray{
    color: var(--text-gray);
}

/* Paddings  */
.sectionGap{
    padding: 60px 0;
}

/* Buttons  */
.commonBtn {
    background: #12909C;
    background: linear-gradient(90deg, rgba(18, 144, 156, 1) 0%, rgba(3, 87, 133, 1) 100%);
    color: #fff;
    border: #035785;
    width: 100%;
    padding: 15px 15px;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.commonBtn:hover{
    color: #fff;
    background: linear-gradient(90deg, rgba(3, 87, 133, 1)  0%, rgba(18, 144, 156, 1) 100%);
}
.commonBtn span {
    position: relative;
    padding-right: 30px;
    background: url(../images/next.png) no-repeat right;
    background-size: 20px;
    transition: all 0.5s;
}
.commonBtn:hover span{
    padding-right: 35px;
}
.commonBtn2{
    background: var(--theme-black2);
    padding: 10px 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
    border-radius: 50px;
}
.commonBtn2:hover{
    color: #fff;
    background-color: #333333;
}


.btn_sm{
    background-color: var(--theme-orange);
    color: #fff;
}

.success_badge {
    background: #d9f9e6;
    padding: 10px;
    border-radius: 30px;
    display: inline-flex;
    color: #347659;
    font-size: 14px;
    line-height: 14px;
}
.success_badge img{
    width: 15px;
    margin-right: 4px;
}


.textLists{
    padding: 0;
}
.textLists li{
    padding: 0 0 10px 30px;
    list-style: none;
    background-image: url(../images/check-teal.png);
    background-repeat: no-repeat;
    font-size: 18px;
    background-size: 20px;
    background-position: left 3px;
}

/* Titles  */
.titleDiv{
    margin-bottom: 45px;
}
.mainTitle{
    color: var(--theme-dark-blue);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 15px;
}
.secondaryTitle{
    font-size: 24px;
    font-weight: 600;
    color:  rgb(31, 41, 55);
}
.subTitle{
    font-size: 20px;
}


/* Header  */
.navbar{
    font-size: 16px;
}
.navbar-nav{
    color: #333;
}

.navbar-nav li{
    padding: 0 15px;
}

.navbar-nav a{
    text-decoration: none;
    color: inherit;
}

.navbar__right ul li{
    list-style: none;
    padding-left: 15px;
}

.navbar__right a:not(.btn){
    color: inherit;
    text-decoration: none;
}

/* Banner Section Style  */
.heroSection{
    background-color: var(--theme-light-blue);
    padding: 30px 0 0; 
}
.heroSection__title{
    color: var(--theme-dark-blue);
    font-weight: 700;
    font-size: 55px;
    line-height: 57px;
    margin-bottom: 25px;
}
.heroSection__content{
    padding-bottom: 30px;
}
.heroSection__content p{
    font-size: 20px;
    margin-bottom: 30px;
}
.learnMore a{
    color: #000;
}

/* Feature section  */
.featureSection{
    padding: 45px 0;
}
.serviceBox__title {
    color: #363e4d;
    font-size: 18px;
    font-weight: 600;
}
.serviceBox__icon {
    display: flex;
    height: 60px;
    width: 60px;
    background: var(--theme-light-blue);
    border-radius: 50%;
    padding: 10px;
    margin: 0 auto 10px;
    justify-content: center;
    align-items: center;
}
.serviceBox__icon img{
    max-height: 35px;
}
.serviceBox__icon i{
    color: var(--theme-dark-blue);
    font-size: 24px;
}

.textCard {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    font-size: 17px;
    line-height: 25px;
    min-height: 275px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}
.textCard:hover{
    transform: translateY(-10px);
}
.textCard__icon {
    display: inline-block;
    margin-bottom: 15px;
}
.textCard__icon i {
    font-size: 36px;
}
.textCard__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #333333;
}
.textCard p:last-child{
    margin-bottom: 0;
}

.whatIsGLP__cont{
    padding-bottom: 60px;
}


.partnerImg{
    text-align: center;
}
.partnerSlider .partnerLogo{
    padding:0 15px;
    text-align: center;
}
.partnerSlider .partnerLogo img{
    max-height: 50px;
    margin: 0 auto;
    display: block;
}
.partnerImg img{
    max-height: 100px;
    margin: 0 auto;
    display: block;
}

.innerCard {
    padding: 45px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f3f7fe;
}
.productBox {
    padding: 45px;
}

.imageLists{
    padding-left: 0;
}

.imageLists li{
    list-style: none;
    margin-bottom: 25px;
}
.imageList__icon {
    background: #e3f1f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}
.imageList__icon i{
    color: var(--theme-dark-blue);
    font-size: 16px;
}
.imageList {
    display: flex;
    align-items: center;
}
.imageList__icon img{
    width: 30px;
    height: auto;
}

.imageList__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}
.imageList p{
    margin-bottom: 0;
    line-height: 15px;
}


.rating__stars img{
    height: 18px;
}
.rating__stars2 i{
    color: rgb(251, 191, 36);
}

.checkList{
    gap: 15px;
    padding: 0;
}

.checkList li{
    list-style: none;
    position: relative;
    padding-left: 45px;
}

.checkList li:before{
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: url(../images/check-green.png) #ebfefa;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    left: 0;
}




.card2 {
    background: #f0f6fe;
    padding: 25px;
    border: 1px solid #c7dcfb;
    border-radius: 10px;
    font-size: 16px;
}

.newPrice{
    font-size:35px;
    font-weight: 700;
}
.oldPrice {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
.oldPrice:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 46px;
    background-color: var(--theme-dark-blue);
    top: 14px;
    transform: rotate(15deg);
}
.circleImg {
    text-align: center;
}
.circleImg img {
    width: 380px;
}
.circle {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #e6f5fb;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 15px solid transparent;
    border-top-color: #1a9aa1;
    transform: rotate(225deg);
  }
  
  .text {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .ze {
    color: #1a9aa1;
    font-weight: bold;
    font-size: 24px;
  }
  
  .year {
    font-size: 12px;
    color: #888;
  }
  
  .right-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .right-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
  }
  
  .percent-block {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    font-size: 40px;
    color: #1a3d7c;
    margin-bottom: 45px;
  }
  
  .percent-block .desc {
    font-size: 40px;
    margin-right: 20px;
    color: #9da3ae;
    line-height: 40px;
    font-weight: 600;
}
  
  .percent-block .checkmark {
    font-size: 20px;
    color: #1a9aa1;
    margin-left: 10px;
    color: var(--secondary-teal);
    opacity: 0;
    transform: scale(0.5) translateY(10px); /* Start slightly down */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bounce effect */
}

.checkmark.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}
  
.percent-block .percent {
    color: #305a90;
    font-size: 190px;
    line-height: 150px;
    text-shadow: 1px 7px 0px #d0d3d8;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
.percent-block .checkmark img{
    height: 60px;
}
  .disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
  }
path#gauge-arc {
    stroke: #268a9d;
}
text#weightLossText {
    font-family: "Montserrat", sans-serif;
    font-size: 85px;
    font-weight: 800;
}
.logoIn {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 114px;
}

/* Review Section  */
.reviewCol{
    margin-bottom: 30px;
}
.reviewCard {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.reviewCard__text {
    font-size: 18px;
    min-height: 135px;
}
.reviewCard__rating,
.reviewCard .rating__stars2 {
    display: block;
    margin-bottom: 15px;
}

.reviewCard__rating img{
    height: 20px;
    margin-right: 1px;
}
.rating__stars2 i{
    font-size: 20px;
}
.reviewCard__user-image {
    display: block;
    overflow: hidden;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 0;
}
.imageList__user-info p:last-child{
    margin-bottom: 0;
}
.imageList__user-info h5{
    color: #000;
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 16px;
}

.reviewTotalRating {
    background-color: #fff;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 5px;
    width: fit-content;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}


.imageReviewSlider__item{
    padding: 10px 15px;
}
.imageCard {
    background-color: #f9fafb;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.imageCard__fig img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.imageCard__info {
    padding: 10px 15px;
}

.imageCard__info h5{
    color: #000;
    font-weight: 700;
}

.imageCard__info p{
    font-style: italic;
    font-size: 16px;
}

.imageReviewSlider .slick-arrow{
    height: 50px;
    width: 50px;
    font-size: 0;
    border-radius: 50%;
    background-color: #fff;
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.imageReviewSlider .slick-arrow.slick-next{
    left: auto;
    right: 0;
    background-image: url(../images/right-arrow.png);
}
.slick-dots {
    padding: 0;
    text-align: center;
    margin: 15px 0 0 0;
}

.slick-dots li{
    display: inline-block;
}

.slick-dots li button {
    font-size: 0;
    height: 16px;
    width: 16px;
    background: #d2d5da;
    border: none;
    border-radius: 50%;
    margin: 0 4px;
}

.slick-dots li.slick-active button{
    background-color: var(--theme-dark-blue);
}


.subscriptionDiv{
    padding-top: 45px;
}

.faqContainer .accordion-item{
    border-left: none;
    border-right: none;
}
.accordion-item:first-child{
    border-top: 0;
}
.accordion-item:last-child{
    border-bottom: 0;
}

.accordion-button:not(.collapsed){
    background-color: transparent;
    color: #000;
}
.customAccordian {
    padding: 20px;
    background: #fff;
}
.customAccordian .accordion-button,
.customAccordian .accordion-body{
    padding-left: 0;
    padding-right: 0;
}
.customAccordian .accordion-body{
    padding-top: 0;
}
.customAccordian .accordion-button:focus{
    box-shadow: none;
}

.customAccordian .accordion-button::after,
.customAccordian .accordion-button:not(.collapsed)::after{
    background-image: url(../images/add.png);
}
.customAccordian .accordion-button:not(.collapsed){
    box-shadow: none;
}
.customAccordian .accordion-button {
    font-size: 16px;
    font-weight: 600;
}


.footerTitle {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}
.quickLinks{
    padding: 0;
}
.quickLinks li{
    list-style: none;
    padding-bottom: 15px;
    font-size: 16px;
}
.quickLinks a{
    text-decoration: none;
    color: #9aa0ab;
    transition: all 0.5s;
}
.quickLinks a:hover{
    color: #fff;
}
.footerBottom .container {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #393c41;
}

.footerLogo{
    display: inline-block;
    margin-bottom: 25px;
}
.footerLogo img {
    width: 200px;
    max-width: 100%;
}
.socialLinks{
    padding: 0;
}
.socialLinks li{
    display: inline-block;
    padding-right: 10px;
}

.socialLinks li a{
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #4B5563;
    text-decoration: none;
    color: rgb(156, 163, 175);
    transition: all 0.5s;
}
.socialLinks li a:hover{
    background-color: #fff;
    color: var(--theme-dark-blue);
}
.socialLinks li a img{
    max-height: 20px;
}


.weight-gauge {
    position: relative;
    width: 100%;
    max-width: 400px;
    height:400px;
    margin: 0 auto;
}

.productBox__title{
    color: #1f2937;
    font-size: 30px;
    font-weight: 700;
}
.footerBottom ,.footerBottom p{
    color: rgb(107, 114, 128) !important;
}
.ctaFixed {
    text-align: center;
    padding: 15px;
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
}
/* Responsive  */
@media screen and (min-width: 768px) {
    .heroSection__content{
        padding-right: 45px;
        padding-bottom: 45px;
    }
    .weightLossPlan_inner{
        padding-left: 45px;
    }
}

@media screen and (max-width: 1400.5px){
    .percent-block .percent{
        font-size: 150px;
        line-height: 115px;
    }
    .percent-block .desc {
        font-size: 30px;
        line-height: 28px;
    }
}

@media screen and (max-width: 1199.5px){
    .percent-block .percent {
        font-size: 130px;
        line-height: 100px;
    }
    .percent-block .checkmark img {
        height: 45px;
    }
}
@media(max-width:1024px){
 section.heroSection .col-lg-6 {
    width: 100%;
}
figure.mb-0 img {
    margin: 0 auto;
    display: block;
}
.heroSection__title{
    font-size: 52px;
}
}
@media screen and (max-width: 991.5px) {
    .heroSection__content{
        padding-right: 0;
    }
    .featureSection__col{
        margin-bottom: 15px;
    }
    .header .navbar .container{
        position: relative;
    }
    .header .navbar .container > .d-flex{
        margin-right: 30px;
    }
    .navbar-light .navbar-toggler{
        position: absolute;
        right: 0px;
        top: 15px;
        padding: 0;
        border: none;
    }
    .navbar-light .navbar-toggler:focus{
        outline: none;
        box-shadow: none;
    }
    #navbarNav {
        position: absolute;
        top: 100%;
        background: #fff;
        width: 100%;
        padding: 20px 0;
        left: 0;
    }
    .navbar-nav li {
        padding: 10px;
        border-bottom: 1px dashed #ddd;
    }
    .navbar-nav li:last-child{
        border: none;
    }
    .heroSection__title{
        font-size: 45px;
        line-height: 50px;
    }
    .whatIsGLP__cont{
        padding-bottom: 30px;
    }
    .footerLogo img{
        width: 115px;
    }
    .socialLinks{
        margin-bottom: 30px;
    }
    .weightProgress{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767.5px) {
    .weight-gauge{
        height: 236px;
        width: 236px;
    }
    .navbar-light .navbar-toggler{
        right: 15px;
    }
    .commonBtn {
        font-size: 14px;
    }
    .commonBtn2 {
        padding: 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .sectionGap{
        padding: 18px 0;
    }
    .mainTitle {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .secondaryTitle {
        font-size: 20px;
    }
    .subTitle {
        font-size: 14px;
    }
    
    .serviceBox__title{
        font-size: 15px;
    }
    .productBox {
        padding: 0px 10px 10px;
        margin-bottom: 30px;
    }
    .percent-block .percent{
        font-size: 68px;
        /* line-height: normal; */
        width: 100%;
        text-align: center;
    }
    .percent-block .desc{
        font-size: 25px;
    }
    .percent-block .desc br{
        display: none;
    }
    .percent-block {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
        align-items: center;
    }
    .percent-block .checkmark img {
        height: 40px;
        margin: 0;
    }
    .disclaimer{
        text-align: center;
    }
    .heroSection__content{
        text-align: center;
    }
    .heroSection__title {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }
    .heroSection__content p{
        font-size: 16px;
    }
    .whatIsGLP{
        padding-bottom: 45px !important;
    }
    .whatIsGLP .whatIsGLP__fig {
        background: #9ca2ad;
        padding: 20px 20px 0px 20px;
        border-radius: 10px;
    }
    .whatIsGLP__cont{
        padding-bottom: 25px;
    }
    .textLists li{
        font-size: 14px;
        padding-left: 25px;
        background-size: 18px;
    }
    .innerCard {
        padding: 0 10px 10px 10px;
    }
    .productBox__title{
        font-size: 24px;
    }
    .newPrice {
        font-size: 20px;
        letter-spacing: -1px;   
    }
    .card2{
        padding: 15px;
        font-size: 14px;
    }
    .weightProgress {
        margin-bottom: 15px;
    }
    .transformationSection .mainTitle,
    .transformationSection .subTitle{
        text-align: center;
    }
    .reviewCard__text {
        font-size: 14px;
        min-height: auto;
    }
    .imageReviewSlider .slick-arrow{
        height: 30px;
        width: 30px;
        background-size: 12px;
    }
    .imageCard__info p{
        font-size: 14px;
    }
    .reviewTotalRating{
        font-size: 15px;
        padding: 15px;
    }
    .reviewTotalRating > .d-flex{
        align-items: center;
    }
    .reviewTotalRating .px-1{
        padding: 0 15px !important;
    }
    .reviewTotalRating .rating__stars2 i {
        font-size: 14px;
    }
    .reviewTotalRating .rating__stars2 {
        min-width: 80px;
    }
    .reviewTotalRating .rating {
        display: flex    ;
        align-items: center;
    }
    .reviewTotalRating .rating strong {
        min-width: 50px;
        text-align: center;
        margin-left: 5px;
    
    }
    .imageReviewSlider .slick-arrow {
        left: -10px;
    }
    .imageReviewSlider .slick-arrow.slick-next{
        right: -10px
    }
    .slick-dots li button{
        height: 13px;
        width: 13px;
    }
    .footerLogo img {
        width: 100px;
    }
    .socialLinks {
        margin-bottom: 30px;
    }
    .footerMain{
        padding-bottom: 15px;
    }
    .customAccordian .accordion-button{
        font-size: 14px;
    }
    .checkList li:before{
        height: 25px;
        width: 25px;
        background-size: 10px;
        top: -2px;
    }
    .checkList li{
        padding-left: 35px;
        font-size: 13px;
    }
    .textCard{
        min-height: unset;
        padding: 25px 15px;
        font-size: 14px;
        line-height: 20px;
    }
    .imageCard__info h5{
        font-size: 16px;
    }
    .footerBottom{
        padding-bottom: 30px;
        font-size: 13px;
    }
}


@media screen and (max-width: 480.5px){
    .weight-gauge svg{
        width: 236px;
        margin: 0 auto;
        display: block;
    }
    .logoIn {
        width: 65px;
        top: 55px;
    }
    .navbar-light .navbar-brand{
        margin-right: 0;
    }
    .rating__stars2 i {
        font-size: 16px;
    }
    .imageCard__info h5{
        font-size: 14px;
    }
    .quickLinks li{
        font-size: 14px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 359px){
    .sectionGap {
        padding: 30px 0;
    }
    .navbar-brand img {
        height: 35px;
    }
    .navbar__right .commonBtn2{
        font-size: 13px;
    }
    .serviceBox {
        font-size: 13px;
    }
    .commonBtn {
        font-size: 12px;
    }
    .imageList__title {
        font-size: 14px;
    }
    .imageList__icon {
        height: 40px;
        min-width: 40px;
        padding: 5px;
    }
    .newPrice {
        font-size: 16px;
        letter-spacing: -1px;
    }
    .oldPrice {
        font-size: 16px;
        margin-right: 5px;
    }
    .oldPrice:before {
        height: 1px;
        width: 40px;
        top: 10px;
    }
    .percent-block .percent {
        font-size: 100px;
        line-height: 120px;
    }
    .percent-block .checkmark img {
        height: 30px;
        margin: 0;
    }
    .reviewTotalRating {
        font-size: 13px;
        padding: 10px;
    }
}