/* reset Css start */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* reset Css end */

/* font css start */
@font-face {
    font-family: 'AnticDidone-Regular';
    src: url('../fonts/AnticDidone-Regular.woff2') format('woff2'),
        url('../fonts/AnticDidone-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltBlack';
    src: url('../fonts/Outfit-Black.woff2') format('woff2'),
        url('../fonts/Outfit-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltBold';
    src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
        url('../fonts/Outfit-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltExtrabold';
    src: url('../fonts/Outfit-ExtraBold.woff2') format('woff2'),
        url('../fonts/Outfit-ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'outfiltLight';
    src: url('../fonts/Outfit-Light.woff2') format('woff2'),
        url('../fonts/Outfit-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltMedium';
    src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
        url('../fonts/Outfit-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltRegular';
    src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
        url('../fonts/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'outfiltSemiBold';
    src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
        url('../fonts/Outfit-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* font css end */

:root{
    --outfiltBlack : outfiltBlack;
    --outfiltBold : outfiltBold;
    --outfiltExtrabold : outfiltExtrabold;
    --outfiltLight : outfiltLight;
    --outfiltMedium : outfiltMedium;
    --outfiltRegular : outfiltRegular;
    --outfiltSemiBold : outfiltSemiBold;
    --outfiltSemiBold : outfiltSemiBold;
    --AnticDidoneRegular : AnticDidone-Regular;

    --black : #000000;
    --black900 : #666666;
    --black800 : #545454;
    --white : #ffffff;
    --grey : #F2F6EF;
    --green : #213721;
    --green800 : #3C5E39;
    --primaryColor : #48A6A0;
    --primaryColor900 : #377D79;
    --lightGreen : #AED6CF;
    --lightGreen900 : #C8D8C0;
    --lightGreen800 : #899F87;
    --darkBlack : #0C0C0C;
    --darkBlack800 : #2D2D2D;
    --bgLightGreenOpacity : #AED6CF33;
    --red : #B10000;


    --fs98 : 98px; 
    --fs60 : 60px;
    --fs56 : 56px;
    --fs40 : 40px;
    --fs36 : 36px;
    --fs32 : 32px;
    --fs30 : 30px;
    --fs28 : 28px;
    --fs24 : 24px;
    --fs22 : 22px;
    --fs20 : 20px;
    --fs18 : 18px;
    --fs16 : 16px;
    --fs15 : 15px;
    
}

.outfiltBlack {
    font-family: var(--outfiltBlack);
}
.outfiltBold {
    font-family: var(--outfiltBold);
}
.outfiltExtrabold {
    font-family: var(--outfiltExtrabold);
}
.outfiltLight {
    font-family: var(--outfiltLight);
}
.outfiltMedium {
    font-family: var(--outfiltMedium);
}
.outfiltRegular {
    font-family: var(--outfiltRegular);
}
.outfiltSemiBold {
    font-family: var(--outfiltSemiBold);
}

.AnticDidoneRegular {
    font-family: var(--AnticDidoneRegular);
}


.black{
    color: var(--black);
}
.white{
    color: var(--white);
}
.grey{
    color: var(--grey);
}
.primaryColor{
    color: var(--primaryColor);
}
.primaryColor900{
    color: var(--primaryColor900);
}
.green{
    color: var(--green);
}
.green800{
    color: var(--green800);
}
.lightGreen800{
    color: var(--lightGreen800);
}
.black900{
    color: var(--black900);
}
.black800{
    color: var(--black800);
}
.darkBlack{
    color: var(--darkBlack);
}
.red{
    color: var(--red);
}
.darkBlack800{
    color: var(--darkBlack800);
}

.bglightGreen{
    background: var(--lightGreen);
}
.bgLightGreenOpacity{
    background: var(--bgLightGreenOpacity);
}
.bgprimaryColor900{
    background: var(--primaryColor900);
}


.fs98{
    font-size: var(--fs98);
}
.h1,
h1,
.fs60{
    font-size: var(--fs60);
}
.h2,
h2,
.fs56{
    font-size: var(--fs56);
}
.h3,
h3,
.fs40{
    font-size: var(--fs40);
}
.h4,
h4,
.fs36{
    font-size: var(--fs36);
}
.h5,
h5,
.fs32{
    font-size: var(--fs32);
}
.h6,
h6,
.fs30{
    font-size: var(--fs30);
}
.fs28{
    font-size: var(--fs28);
}
.fs24{
    font-size: var(--fs24);
}
.fs22{
    font-size: var(--fs22);
}
.fs20{
    font-size: var(--fs20);
}
.fs18{
    font-size: var(--fs18);
}
.fs16{
    font-size: var(--fs16);
}
.fs15{
    font-size: var(--fs15);
}
body{
    font-family: var(--outfiltRegular);
    font-size: var(--fs16);
    color: var(--green);
    background-color: var(--grey);
}

.whiteBtn{
    background-color: var(--grey);
    color: var(--green);
    padding: 20px;
    width: 356px;
    border-radius: 16px;
    transition: 0.3s ease-in;
}
.whiteBtn:hover{
    background-color: var(--green);
    color: var(--grey);
}
.pb100{
    padding-bottom: 100px !important;
}
.ulIcon ul li img{
    display: none;
}
.ulIcon ul li{
    position: relative;
    padding-left: 25px;
}
.ulIcon ul li::before{
    position: absolute;
    content: "";
    background-image: url("https://172.105.42.212/cmporbit/wp-content/uploads/2025/11/trustedReview.png");
    background-repeat: no-repeat;
    height: 18px;
    width: 18px;
    top: 0;
    left: 0;   
    background-size: contain;
}


/* customNav css start */
.customNav{
    padding-top: 16px;
    padding-bottom: 6px;
    position: sticky;
    top: 0;
    z-index: 9;
    background: var(--themeBgColor);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.3s ease;
}
.customNav.scrolled {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: var(--primaryColor);
}
.customNav .nav-link::after{
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--green);
    left: 0;
    bottom: -8px;
    transition: width 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}
.customNav .nav-link:hover::after,
.customNav .current-menu-item .nav-link::after{
    width: 50%;
}
.customNav .nav-link:hover,
.customNav .current-menu-item .nav-link{
    color: var(--green);
}
.customNav .navbar-nav{
    gap: 20px;
}

.radius16{
    border-radius: 16px;
}
.borderGreen{
    border: 2px solid var(--lightGreen);
}

/* customNav css end */



/* bannerSection css start */
.bannerSection{
    min-height: 732px;
    /* background: url("../images/homeBannerIamge.png"); */
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
    z-index: 1;
}
.bannerSection::before{
    /* background: linear-gradient(90deg, #48A6A0 59%, rgba(42, 42, 42, 0) 100%); */
    background: linear-gradient(90deg, #48A6A0 59%, rgb(14 12 12 / 27%) 100%);
    position: absolute;
    content: "";
    height: 100%;
    background-size: cover;
    width: 100%;
    left: 0;
    z-index: -1;
    top: 0;
}
.bannerSection .bannerContent{
    max-width: 890px;
}
.bannerSection::after{
    position: absolute;
    content: "";
    background-image: url("../images/bannerFlowerVector.png");
    width: 577px;
    height: 603px;
    bottom: 0;
    left: 44%;
    transform: translateX(-50%);
    opacity: 0.6;
    z-index: -1;
}
.bannerSection .slick-custom-prev img,
.bannerSection .slick-custom-next img {
    filter : invert(4400%) sepia(5000%) saturate(6587%) hue-rotate(154deg) brightness(293%) contrast(108%)
}
.bannerSection .slick-dots{
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.bannerSection .slick-dots li button:before{
    display: none;
}
.bannerSection .slick-dots li button{
    height: 4px;
    width: 4px;
    background-color: var(--white);
    transform: rotate(45deg);
}
.bannerSection .slick-dots li.slick-active button{  
    background-color: var(--green);
}
.bannerSection .slick-dots li{
    height: auto;
    width: auto;
}
.bannerSection .custom-nav{
    margin-right: 40px;
}
/* bannerSection css end */

/* popularSection css start */
.popularSection{
    padding-top: 100px;
}
.popularSection .leftCol{
    padding-left: 66px;
    padding-right: 66px;
}
.popularSection .popularImg{
    width: 577px;
    height: 710px;
}
.popularSection .rightCol {
    background-color: var(--lightGreen);
    padding: 60px 45px 60px 56px;
}
.popularSection .categoryWrapperDiv .categoryLinkArrow,
.healthCtaSection .sectionCard .arrowWrapper{
    background-color: var(--primaryColor);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    min-width: 48px;
    transition: 0.4s all;
}
.popularSection .categoryWrapperDiv .categoryLinkArrow:hover,
.healthCtaSection .sectionCard .arrowWrapper:hover{
    background-color: var(--primaryColor900);
}
.popularSection .categoryWrapperDiv .categoryLinkArrow img,
.healthCtaSection .sectionCard .arrowWrapper img{
    transition: 0.4s all;
}
.popularSection .categoryWrapperDiv .categoryLinkArrow:hover img,
.healthCtaSection .sectionCard .arrowWrapper:hover img{
    transform: translate(1px, -1px);
}

.categoryAccordion .accordion-button:not(.collapsed)::after{
    filter: invert(84%) sepia(34%) saturate(6517%) hue-rotate(157deg) brightness(134%) contrast(101%);
}
.categoryAccordion .accordion-button::after{
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(100%) contrast(100%);
}
.categoryAccordion .accordion-button{
    color: var(--white);
}
.categoryAccordion .accordion-button:not(.collapsed){
    color: #00F0E3 ;
}
.categoryAccordion .accordion-body{
    background-color: #00F0E3;
    border-radius: 20px;
}
.categoryAccordion .accordion-body p:not(:last-child){
    margin-bottom: 8px;
}
.categoryAccordion .accordion-body p a{
    opacity: 0.6;
}
.categoryAccordion .accordion-body p a.active{
    opacity: 1;
}
.sectionCard .card--header .productImg {
    min-height: 159px;
    object-fit: cover;
    max-height: 159px;
}

.sectionCard .customWidthCard .card--header .productImg{
    min-height: 140px;
    height: 140px;
    width: 140px;
    padding: 10px;
}

/* popularSection css end */


/* ctaSection css start */
.ctaSection .divider {
    width: 1px;
    background-color: var(--primaryColor);
    height: 88px;
}
.ctaSection .ctaBlock{
    max-width: 315px;
}
.ctaSection{
    padding-top: 100px;
    padding-bottom: 100px;
}
.ctaBottomLine{
    opacity: 1;
    border-top-color: var(--lightGreen900);
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
}
/* ctaSection css end */

/* ourExpertSection css start */
.ourExpertSection{
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px;
}
.ourExpertSection .expetBlockWrapper{
    background-color: var(--lightGreen);
    padding: 30px 45px;
    box-shadow: 0px 4px 18px 5px #00000012;
    transition: 0.4s all;
}
.ourExpertSection .expetBlockWrapper:hover{
    background-color: var(--primaryColor900);
}
.ourExpertSection .expetBlockWrapper .imgWrapper img{
    border: 4px solid #596F39;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}
.ourExpertSection .expertRow{
    margin-top: 56px;
}
.ourExpertSection .expetBlockWrapper::before {
    position: absolute;
    content: "";
    border: 1px solid var(--lightGreen);
    width: 326px;
    height: 250px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: -1;
    transition: 0.2s all;
}
.ourExpertSection .expetBlockWrapper:hover::before {   
    border-color: var(--primaryColor900);   
}
.ourExpertSection .expetBlockWrapper:hover .expertDet h6,
.ourExpertSection .expetBlockWrapper:hover .expertDet p {
    color: var(--white);
}
/* ourExpertSection css end */

/* read-compare-section css start */
.read-compare-section {
    background: #C8E6E0;
    color: #1A5F5A;
    padding: 100px 0;
}
.read-compare-section .text-primary-dark { 
    color: #1A5F5A !important; 
}
.read-compare-section .read-card {
    transition: transform .3s ease, box-shadow .3s ease;
    min-height: 200px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12) !important;
}
.read-compare-section .read-card .btn-primary {
    background: var(--primaryColor);
    border: none;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}
.read-compare-section .read-card .btn-primary:hover {
    background: #0F3F3A;
}
.read-compare-section .cardDetImg{
    width: 260px;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: left;
}
.read-compare-section > .container > header{
    margin-bottom: 94px;
}
/* read-compare-section css end */





/* testimonial-section start */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}
.testimonials-section .testimonial-slide .sliderImg{
    width: 373px; 
    height: 585px; 
    object-fit: cover; 
}
.testimonials-section .testimonialTitle{
    margin-bottom: 80px;
}
.testimonials-section hr{
    opacity: 1;
    border-color: var(--lightGreen900);
    margin: 0;
}


.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    display: none !important;
}


.testimonials-section .custom-nav {
    right: 20px;
}

.testimonials-section .custom-nav button {
    border: none;
    transition: all 0.3s ease;
}

.testimonials-section .custom-nav button:hover {
    background: #0F3F3A;
    transform: scale(1.1);
}

.testimonials-section .slick-custom-dots {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.testimonials-section .slick-custom-dots button {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    font-size: 0;
    transition: all 0.3s ease;
}

.testimonials-section .slick-custom-dots .slick-active button {
    transform: rotate(45deg);
}
.testimonials-section .slick-dots{
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.testimonials-section .slick-dots li button:before{
    display: none;
}
.testimonials-section .slick-custom-dots .slick-active button{
    /* transform: none; */
    background-color: var(--green);
}
.testimonials-section .slick-dots li{
    width: auto;
    height: auto;
}
.testimonials-section .slick-dots li button{
    background-color: var(--green) !important;
    width: 4px;
    height: 4px;
    border-radius: 0;
    transform: rotate(45deg);
}
/* testimonial-section end */

/* letsConnectSection css start */
.connect-cta .connectCTAWrapper{
    background-color: #AED6CF66;
    padding: 60px 56px;
    border-radius: 25px;
}
.connect-cta .text-teal {
    color: #1A5F5A !important; /* Dark teal text */
}

.connect-cta .btn-connect {
    min-width: 400px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #C8D8C0 ;
    border-radius: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.connect-cta .btn-connect:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
/* letsConnectSection css end */


/* faqSection css start */
.faq-section {
    padding: 100px 0;
}
.faq-section .accordion.accordion-faq{
    background: #AED6CF33;
    padding: 58px 40px;
    border: 2px solid var(--lightGreen);
    border-radius: 16px;
    backdrop-filter: blur(26px);
}

.faq-section .text-teal-dark { 
    color: #0F3F3A !important;
}
.faq-section .bg-teal-light { 
    background :linear-gradient(90deg, rgb(174 214 207 / 20%) 0%, rgb(20 255 214 / 20%) 100%);;
}

/* Hide default Bootstrap arrow */
.faq-section .accordion-button::after { display: none !important; }

/* Button layout */
.faq-section .accordion-button {
    position: relative;
    padding-right: 3.5rem !important;   /* space for icon */
    font-weight: 500 !important;       /* prevent accidental bold */
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    padding-left: 40px;
    box-shadow: none;
}

/* Icon container */
.faq-section .accordion-button .toggle-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* PLUS: horizontal line + vertical line */
.faq-section .accordion-button.collapsed .toggle-icon::before,
.faq-section .accordion-button.collapsed .toggle-icon::after {
    content: "";
    position: absolute;
    background: #596F39;
}

.faq-section .accordion-button.collapsed .toggle-icon::before {
    width: 10px;
    height: 2px;
}
.faq-section .accordion-button.collapsed .toggle-icon::after {
    width: 2px;
    height: 10px;
}

/* MINUS: only horizontal line */
.faq-section .accordion-button:not(.collapsed) .toggle-icon::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: #596F39;
}
.faq-section .accordion-button:not(.collapsed) .toggle-icon::after {
    display: none;
}

/* Hover effect */
.faq-section .accordion-button:hover .toggle-icon {
    transform: translateY(-50%) scale(1.1);
    border-color: #596F39;
}
.faq-section .accordion-button:hover .toggle-icon::before,
.faq-section .accordion-button:hover .toggle-icon::after {
    background: #596F39;
}

/* Remove focus ring */
.faq-section .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-section .accordion-body{
    padding: 20px 40px 28px 40px;
}
/* faqSection css end */


/* footer css start */
.footer {
    color: #1A5F5A;
}

.footer a.text-white-50 {
    transition: color 0.3s ease;
}
.footer a.hover-teal:hover {
    color: var(--green800) !important;
}

/* Newsletter Input */
.footer .form-control {
    background: var(--white);
    border: none;
    /* font-size: 0.9rem; */
    border: 1px solid #C8D8C0;
    border-radius: 16px 0 0 16px;
    height: 72px;
}
.footer .form-control::placeholder {
    color: var(--lightGreen800);
    font-size: var(--fs20);
}
.footer .form-control:focus{
    box-shadow: none;
}
.footer .btnSubmitArrow{
    border-radius: 0 16px 16px 0;
    height: 70px;
    background-color: var(--white);
}
.erromsgWrap .wpcf7-not-valid-tip{
    position: absolute;
    margin-top: 5px;
}
.newsletterForm .screen-reader-response{
    clip-path: unset;
    width: 100%;
    height: max-content;
    bottom: -60px;
    clip: unset;
    padding: 20px 0;
}

/* footer css end */

/* healthBanner css start */
.healthBanner.bannerSection {
    /* background-image: url("../images/healthBannerImg.png"); */
    background-size: contain;
}
.beautyBanner.bannerSection{
    /* background-image: url("../images/beautyBanner.png"); */
}
.womenTravelBanner.bannerSection{
    /* background-image: url("../images/womenTravelBanner.png"); */
}
.flightDealBanner.bannerSection{
    /* background-image: url("../images/flightDealBanner.png"); */
}
.comparisonBanner.bannerSection{
    background-image: url("../images/comparsionBanner.png");
}
.comparisonDetailBanner.bannerSection{
    background-image: url("../images/comparisonDetailBanner.png");
}
.aboutUsBanner.bannerSection{
    background-image: url("../images/aboutUsBanner.png");
}
.contactUsBanner.bannerSection{
    background-image: url("../images/contactUsBanner.png");
}
.thankyouBanner.bannerSection{
    background-image: url("../images/thankyouBanner.png");
    background-size: contain;
}
.privacyPolicyBanner.bannerSection{
    background-image: url("../images/privacyPolicyBanner.png");
}
.tncbanner.bannerSection{
    background-image: url("../images/tncbanner.png");
}
.cookieBanner.bannerSection{
    background-image: url("../images/cookiepolicybanner.png");
}
.imprintBanner.bannerSection{
    background-image: url("../images/imprintbanner.png");
}
.blogbanner.bannerSection{
    background-image: url("../images/blogbanner.png");
}
.blogDetailbanner.bannerSection{
    background-image: url("../images/blogdetaibanner.png");
}

.subPageBanner.bannerSection {
    min-height: 550px;
}
/* healthBanner css end */

/* healthCtaSection css start */
.healthCtaSection{
    padding: 100px 0;
}
.healthCtaSection .sectionCard .card{
    padding: 30px 20px;
    border: 2px solid var(--lightGreen);
}
.healthCtaSection .sectionCard .card:hover{
    transition: 0.4s all;
}
.healthCtaSection .sectionCard .card:hover{
    background: linear-gradient(180deg, rgba(20, 255, 214, 0.2) 0%, rgba(174, 214, 207, 0.2) 100%);
}

.ourExpertSection.subPage .expetBlockWrapper .imgWrapper img{
    width: 80px;
    height: 80px;
}
.ourExpertSection.subPage{
    padding-top: 100px;
}
.ourExpertSection.subPage .expetBlockWrapper{
    padding: 60px 30px;
    border-radius: 30px;
    height: 100%;
}

#compareorbit-prev {
    /* width: 35px;
    height: 35px; */
    border-radius: 50%;
    background: #f2f2f2;
}
#compareorbit-prev:disabled {
    opacity: 0;
}


.pagination{
    margin-top: 150px;
    gap: 6px;
}
.pagination .number{
    background-color: #E4F0E9;
    gap: 6px;
}
.pagination .number button,
.pagination .page-numbers{
    background-color: var(--white);
    color: var(--black);
    width: 24px;
    height: 24px;   
    transition: 0.4s all; 
}
.pagination .number button:hover{
    background-color: var(--primaryColor900);
    color: var(--white); 
}
.pagination .page-numbers{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
}
.pagination .page-numbers:hover{
    background-color: var(--primaryColor900);
    color: var(--white);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next{
    background-color: transparent;
    width: auto;
    height: auto;
    color: var(--primaryColor900);
    font-size: var(--fs20);
}
.pagination .page-numbers.next{
    margin-left: 10px;
}
.pagination .page-numbers.prev{
    margin-right: 10px;
}

.sectionHrLine{
    border-color: var(--lightGreen900);
    opacity: 1;
}
/* healthCtaSection css end */

/* productSection css start */
.productSection .productWrapper img{
    width: 178px;
    height: 178px;
    object-fit: cover;
    padding: 20px;
}
.themeGreenArrow{
    width: 40px;
    height: 40px;
}
.themeGreenArrow img{
    filter: invert(39%) sepia(54%) saturate(385%) hue-rotate(127deg) brightness(98%) contrast(89%);
}
.ratingBoxBlue{
    background-color: #00F0E3;
    padding: 20px 22px 15px 22px;
    border-radius: 10px;
}
.productUl li{
    margin-bottom: 10px;
}
span.productTagRibbon {
    background: #596F39;
    /* display: inline-flex !important; */
    /* width: max-content !important; */
    padding: 4px 10px;
    position: absolute;
    top: 10px;
    transform: rotate(-40deg);
    width: 42%;
    left: -23px;
    text-align: center;
    color: white;
}
/* productSection css end */


/* categoryCard css start */
.categoryCard{
    padding-top: 34px !important;
    padding-bottom: 114px !important;
}
.categoryCard .checkArrow{
    filter: invert(100%) sepia(100%) saturate(13%) hue-rotate(237deg) brightness(104%) contrast(204%);
}
.categoryCard ul li a{
    transition: 0.4s all;
}

.categoryCard ul li a:hover,
.categoryCard ul li.active-category a{
    color: #00F0E3 !important;
}
.categoryCard ul li a:hover .checkArrow,
.categoryCard ul li.active-category a .checkArrow{
    filter: invert(45%) sepia(32%) saturate(7469%) hue-rotate(125deg) brightness(103%) contrast(101%);
}
/* categoryCard css end */

/* dealCard css start */
.dealCard .dealImg{
    width: 54px;
    height: 54px;
    padding: 8px;
    background: var(--white);
}
.dealCard .dealWrapper{
    border-bottom: 1px solid #AED6CF;
    padding-top: 6px;
}
.ratingSpan{
    background-color: var(--darkBlack800);
    color: var(--white);
    display: block;
    padding: 4px 6px;
    border-radius: 6px;
    margin-left: 12px;
}
.visitLink{
    background-color: var(--white);
    color: var(--black);
    padding: 12px 14px;
    min-width: 80px;
    border-radius: 10px;
    transition: 0.4s all;
    margin-right: 30px;
}
.visitLink:hover{
    background-color: var(--black);
    color: var(--white);
}
.siderbarSticky{
    height: 100%;
    position: sticky;
    top: 140px;
}
/* dealCard css end */


/* detailSection css start */
.detailSection{
    padding-top: 100px;
}
.detailSection .detailSecWrapper{
    padding: 30px 56px 52px 20px;
    border: 2px solid var(--lightGreen);
    border-radius: 16px;
}
.detailSection .detailSecWrapper .detailImg{
    border-radius: 18px;
    display: block;
}
.detailSection .detailSecWrapper .detContent{
    padding-left: 30px;
}
/* detailSection css end */


/* aboutUsSection css start */
.aboutUsSection{
    padding-top: 100px;
    padding-bottom: 100px;
}
.aboutUsSection .aboutSecWrapper{
    padding: 30px 40px 70px 40px;
}
/* aboutUsSection css end */

/* thankYouSection css start */
.thankYouSection{
    padding: 100px 0;
}
.thankYouSection .thankYouWrapper{
    padding: 80px 30px;
}
/* thankYouSection css end */

/* blogSec css start */
.blogSec,
.importantPage,
.blogPageSection,
.contactUsPage{
    padding-top: 100px;
    padding-bottom: 100px;
}
.blogSec .blogDetImg img{
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    border-radius: 18px;
}
/* blogSec css end */

/* blogPageSection css start */
.blogPageSection .sectionCard .card{
    padding: 30px;
}
.blogPageSection .sectionCard .card .blogImgWrapper img{
    height: 168px;
    width: 168px;
    object-fit: cover;
    object-position: left;
    box-shadow: 0px 4px 17px 1px #0000002B;
}
.blogPageSection .sectionCard .card .btn-primary{
    height: 30px;
    width: 30px;
    background-color: var(--primaryColor900);
    transition: 0.4s all;
    position: absolute;
    right: 22px;
}
.blogPageSection .sectionCard .card .btn-primary:hover{
    background-color: var(--primaryColor);
}
.blogPageSection .sectionCard .card .btn-primary img{
    width: 12px;
}
.blogPageSection .articleDescSec{
    margin-bottom: 90px;
}
.blogPageSection .whiteBtn{
    width: max-content;
    padding-left: 36px;
    padding-right: 36px;
}
/* blogPageSection css end */


/* contactUspage css start */
       
.contactUsPage .form-label {
    color: #F3F3F3;
}
.contactUsPage .contact-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contactUsPage .form-control::placeholder {
    color: #6c757d;
}
.contactUsPage .form-control {
    background-color: #fff;
    border: none;
    padding: 9px 20px;
}
.contactUsPage .rounded-pill-custom {
    border-radius: 50px !important;
    height: 42px;
}
.contactUsPage .rounded-message {
    border-radius: 12px !important;
}

/* 
.btn-light {
    background-color: #E0F2E9;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-light:hover {
    background-color: #d0ece4;
}
 */
@media (max-width: 767px) {
    .contactUsPage .contact-card img {
        height: 300px;
        object-fit: cover;
    }
}
/* contactUspage css end */










@media(max-width : 1439px){ 
    :root{
        --fs98 : 80px; 
        --fs60 : 56px;
        --fs56 : 54px;
        --fs40 : 40px;
        --fs36 : 36px;
        --fs32 : 32px;
        --fs30 : 30px;
        --fs28 : 28px;
        --fs24 : 24px;
        --fs22 : 22px;
        --fs20 : 20px;
        --fs18 : 18px;
        --fs16 : 16px;
        --fs15 : 15px;
    }

}
@media(max-width : 1399px){
    .ourExpertSection .expetBlockWrapper::before {
        width: calc(100% + 10px);
    }
    .connect-cta .btn-connect{
        min-width: 100%;
    }
}
@media(max-width : 1199px){
    :root{
        --fs98 : 70px; 
        --fs60 : 52px;
        --fs56 : 50px;
        --fs40 : 38px;
        --fs36 : 34px;
        --fs32 : 30px;
        --fs30 : 28px;
        --fs28 : 26px;
        --fs24 : 24px;
        --fs22 : 22px;
        --fs20 : 20px;
        --fs18 : 18px;
        --fs16 : 16px;
        --fs15 : 15px;
    }
    .whiteBtn{
        padding: 14px 40px;
        width: auto;
        font-size: 20px;
    }
    .container{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        max-width: 100%;
    }

    /* .customNav .navbar-nav{
        background-color: var(--primaryColor900);
        padding: 40px;
        border-radius: 20px;
    } */
    .navbar-toggler{
        position: relative;
        border: 0;
        /* top: 6px; */
    }
    .navbar-toggler span,
    .navbar-toggler span::before
    ,.navbar-toggler span::after{
        cursor: pointer;
        border-radius: 1px;
        height: 3px;
        width: 28px;
        background: var(--white);
        position: absolute;
        display: inline-block;
        content: '';
        left: 0;
    }
    .navbar-toggler span:before {
        top: -10px;
        left: 0;
    }
    .navbar-toggler span:after {
        bottom: -10px;
        left: 0;
    }
    .navbar-toggler span, .navbar-toggler span:before, .navbar-toggler span:after {
        -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
        -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
        -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000);
        transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */
    }
    .navbar-toggler.open{
        top: 7px;
    }
    .navbar-toggler.open span {
        background-color: transparent;
    }
    .navbar-toggler.open span:before, .navbar-toggler.open span:after {
        top: -10px;
    }
    .navbar-toggler.open span:before {
        transform: rotate(45deg);
    }
    .navbar-toggler.open span:after {
        transform: translateY(-10px) rotate(-45deg);
        top: 00px;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-collapse{
        position: absolute;
        width: 80%;
        left: -20px;
        padding: 20px;
        transform: translateX(-100%);
        background-color: var(--primaryColor900);
        transition: 0.2s ease-in;
        height: 100vh;
        top: 0;
        box-shadow: rgb(10 59 59 / 21%) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    }
    .navbar-collapse.show{
        transform: translateX(0%);
        left: 0;
    }
    .navbar-collapse.collapse:not(.show){
        display: block;
    }
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9;
    }
    body.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }
    body.nav-open {
        overflow: hidden;
    }

    .bannerSlider{
        padding-right: 60px !important;
        padding-top: calc(50px + 115px) !important;
        padding-bottom: 100px !important;
    } 
    .bannerSection{
        min-height: auto;
    }

    .popularSection{
        padding-top: 80px;
    }
    .popularSection .leftCol,
    .popularSection .rightCol{
        padding-left: 40px;
        padding-right: 40px;
    }
    .categoryWrapperDiv .categoryIcon{
        width: 40px;
    }
    .popularSection .categoryWrapperDiv .categoryLinkArrow,
    .healthCtaSection .sectionCard .arrowWrapper{
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .popularSection .categoryWrapperDiv .categoryLinkArrow img,
    .healthCtaSection .sectionCard .arrowWrapper img{
        width: 14px;
        height: auto;
    }
    .ctaBottomLine{
        width: 800px;
    }
    .read-compare-section .cardDetImg{
        width: 190px;
    }
    .read-compare-section .read-card .btn-primary{
        margin-bottom: 10px;
    }
    .testimonials-section hr{
        display: none;
    }
    .testimonials-section .custom-nav{
        right: 20px !important;
    }
    .connect-cta .connectCTAWrapper{
        padding: 50px;
    }
    .footer .btnSubmitArrow{
        height: 58px;
    }
    .footer .form-control{
        height: 60px;
    }
    .footer .footerLogo{
        width: 190px;
        height: auto;
    }
    .pagination{
        margin-top: 80px;
    }
    .healthCtaSection,
    .ourExpertSection.subPage,
    .aboutUsSection,
    .blogSec,
    .importantPage,
    .blogPageSection,
    .contactUsPage {
        padding: 80px 0;
    }
    .productSection .productWrapper img{
        width: 150px;
        height: 150px;
    }
    .thankYouSection .thankYouIcon{
        width: 100px;
    }

}
@media(max-width : 991px){
    :root{
        --fs98 : 64px; 
        --fs60 : 50px;
        --fs56 : 48px;
        --fs40 : 36px;
        --fs36 : 32px;
        --fs32 : 28px;
        --fs30 : 26px;
        --fs28 : 24px;
        --fs24 : 22px;
        --fs22 : 20px;
        --fs20 : 20px;
        --fs18 : 18px;
        --fs16 : 16px;
        --fs15 : 15px;
    }
    .popularSection .leftCol img{
        display: none !important;
    }
    .popularSection{
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 60px;
    }
    .popularSection .leftCol{
        padding-left: 0;
        padding-right: 0;
    }
    .ctaSection,
    .thankYouSection{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .ctaBottomLine{
        display: none;
    }
    .ourExpertSection .expertRow{
        row-gap: 40px;
    }
    .ourExpertSection .expetBlockWrapper::before {
        width: calc(100% + 12px);
    }
    .read-compare-section .read-card .btn-primary{
        width: 38px;
        height: 38px;
    }
    .read-compare-section .read-card .btn-primary img {
        width: 14px;
    }
    .read-compare-section .cardDetImg{
        height: 100%;
    }
    .read-compare-section .read-card {
        flex-direction: column !important;
    }
    .read-compare-section .read-card img {
        width: 100% !important;
        height: 260px !important;
        border-radius: 1rem 1rem 0 0 !important;
    }
    .read-compare-section .read-card .btn-primary img.arrowIcon{
        width: 14px !important;
    }
    .read-compare-section{
        padding: 60px 0;
        padding-bottom: 80px;
    }
    .read-compare-section > .container > header{
        margin-bottom: 60px;
    }
    /* .testimonials-section .custom-nav{
        flex-direction: row-reverse !important;
    }
    .testimonials-section .slick-custom-dots{
        display: none !important;
    } */
    .testimonials-section .testimonial-slide .sliderImg{
        height: 100%;
    }
    .connect-cta .connectCTAWrapper{
        padding: 40px;
    }
    .connect-cta .btn-connect{
        padding: 16px;
    }
    .faq-section .accordion.accordion-faq{
        padding: 34px;
    }
    .subPageBanner.bannerSection {
        min-height: auto;
        padding-top: calc(70px + 80px);
        padding-bottom: 70px;
    }
    .siderbarSticky{
        height: 100%;
        position: static;
        top: 0;
    }
    .categoryCard{
        padding: 34px !important;
    }
    .detailSection{
        padding-top: 80px;
    }
    .detailSection .detailSecWrapper{
        padding: 40px;
    }
    .detailSection .detailSecWrapper .detContent{
        padding-left: 0;
        padding-top: 40px;
    }
    .aboutUsSection .aboutSecWrapper{
        padding: 40px;
    }
    span.productTagRibbon{
        width: 25%;
    }
    .sectionCard .card--header .productImg {
        min-height: 179px;
        object-fit: cover;
        max-height: 179px;
    }
    .sectionCard .card--header .productWrapper  .productImg{
        min-height: auto;
    }
    .productSection .productWrapper img{
        padding: 8px;
    }
}


@media(max-width: 767px){
    :root{
        --fs98 : 60px; 
        --fs60 : 46px;
        --fs56 : 44px;
        --fs40 : 34px;
        --fs36 : 30px;
        --fs32 : 26px;
        --fs30 : 24px;
        --fs28 : 22px;
        --fs24 : 20px;
        --fs22 : 18px;
        --fs20 : 18px;
        --fs18 : 15px;
        --fs16 : 16px;
        --fs15 : 14px;
    }

    
    
    .read-compare-section .read-card .card-body {
        padding: 1.5rem;
    }
    .read-compare-section {
        padding: 60px 0;
    }
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-section .testimonial-slide .row {
        flex-direction: column;
        text-align: center;
    }
    .testimonials-section .testimonial-slide img {
        margin-bottom: 0;
    }
    .testimonials-section .custom-nav {
        display: none !important;
    }
    .faq-section { padding: 60px 0; }
    .faq-section .accordion-button {
        /* font-size: 0.95rem; */
        padding: 1rem 1.25rem;
    }
    .faq-section .accordion-button .toggle-icon {
        right: 1rem;
        width: 18px;
        height: 18px;
    }
    .faq-section .accordion-button.collapsed .toggle-icon::before { width: 9px; height: 2px; }
    .faq-section .accordion-button.collapsed .toggle-icon::after  { width: 2px; height: 9px; }
    .faq-section .accordion-button:not(.collapsed) .toggle-icon::before { width: 9px; }
    .footer .row > div {
        /* text-align: center; */
    }
    .footer .d-flex.gap-3 {
        /* justify-content: center; */
    }
    .footer form {
        /* justify-content: center; */
    }
    .footer .form-control {
        width: 100%;
        max-width: 250px;
    }
    .ctaSection .ctaIcon{
        width: 50px;
    }
    .ourExpertSection .expertBlock{
        margin: 0 auto;
    }
    .ourExpertSection .expetBlockWrapper{
        padding: 20px 25px;
    }
    .ourExpertSection .expetBlockWrapper::before {
        width: calc(100% + 20px);
    }
    .ourExpertSection .expetBlockWrapper .imgWrapper img{
        height: 150px;
        width: 150px;
    }
    .ourExpertSection{
        padding-bottom: 60px;
    }
    .testimonials-section .testimonial-slide .sliderImg{
        margin: 0 auto;
    }
    .testimonials-section .testimonialTitle{
        margin-bottom: 40px;
    }
    .testimonials-section .slick-dots{
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    .aboutUsSection .aboutSecWrapper{
        padding: 30px;
    }
    .thankYouSection .thankYouIcon{
        width: 80px;
    }
    .blogSec .blogDetImg img{
        max-height: 250px;
    }
    .blogPageSection .articleDescSec {
        margin-bottom: 60px;
    }
    span.productTagRibbon {
        width: 25%;
        top: 20px;
    }
}

@media(max-width : 575px){
    :root{
        --fs98 : 50px; 
        --fs60 : 46px;
        --fs56 : 44px;
        --fs40 : 34px;
        --fs36 : 30px;
        --fs32 : 26px;
        --fs30 : 24px;
        --fs28 : 22px;
        --fs24 : 20px;
        --fs22 : 18px;
        --fs20 : 18px;
        --fs18 : 15px;
        --fs16 : 16px;
        --fs15 : 14px;
    }
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .bannerSection::before{
            background: linear-gradient(90deg, #48A6A0 27%, rgba(42, 42, 42, 0) 100%);
    }
    .bannerSection{
        background-size: cover;
    }
    .bannerSlider {
        padding-right: 0px !important;
        padding-top: calc(20px + 115px) !important;
        padding-bottom: 80px !important;
    }
    .bannerSection .custom-nav {
        margin-right: 20px;
    }
    .bannerSection .slick-dots{
        display: none !important;
    }
    .bannerSection::after{
        display: none;
    }
    .whiteBtn {
        padding: 10px 25px;
        font-size: 16px;
    }
    .popularSection{
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
    }
    .categoryWrapperDiv .categoryIcon {
        width: 30px;
    }
    .popularSection .rightCol{
        padding: 20px;
    }
    .popularSection .categoryWrapperDiv .categoryLinkArrow,
    .healthCtaSection .sectionCard .arrowWrapper {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .popularSection .categoryWrapperDiv .categoryLinkArrow img,
    .healthCtaSection .sectionCard .arrowWrapper img {
        width: 12px;
        height: auto;
    }
    .ctaSection{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ctaSection .ctaIcon {
        width: 40px;
    }
    .read-compare-section .read-card .btn-primary{
        width: 25px;
        height: 25px;
    }
    .read-compare-section .read-card .btn-primary img.arrowIcon{
        width: 10px !important;
    }
    

    .testimonials-section .testimonial-slide .sliderImg {
        height: 170px;
        width: 170px;
    }
    .testimonials-section .slick-dots{
        margin-top: 20px;
    }
    .testimonials-section .testimonial-slide img{
        width: 25px;
    }
    .connect-cta .connectCTAWrapper{
        padding: 30px;
    }
    .connect-cta .btn-connect{
        padding: 10px;
    }
    .faq-section .accordion.accordion-faq{
        padding: 24px;
    }
    .faq-section .accordion-body {
        padding: 14px 26px;
    }
    .faq-section .accordion-button {
        /* font-size: 0.95rem; */
        padding: 20px !important;
        padding-right: 35px !important;
        line-height: 1.3;
    }
    .footer .form-control {
        height: 50px;
    }
    .footer .btnSubmitArrow {
        height: 48px;
    }
    .customNav .navbar-brand img{
        width: 150px;
    }
    .subPageBanner.bannerSection{
        background-size: cover;
    }
    .subPageBanner.bannerSection {
        min-height: auto;
        padding-top: calc(40px + 80px);
        padding-bottom: 60px;
    }
    .ourExpertSection.subPage h2{
        font-size: 36px;
    }
    .healthCtaSection, 
    .ourExpertSection.subPage,
    .aboutUsSection,
    .thankYouSection,
    .blogSec,
    .importantPage,
    .blogPageSection,
    .contactUsPage {
        padding: 60px 0;
    }
    .ourExpertSection.subPage .expetBlockWrapper{
        padding: 30px;
    }
    .detailSection{
        padding-top: 60px;
    }
    .detailSection .detailSecWrapper,    
    .aboutUsSection .aboutSecWrapper{
        padding: 20px;
    }
    .blogPageSection .articleDescSec {
        margin-bottom: 40px;
    }
    .blogPageSection .whiteBtn {
        padding: 12px 20px;
    }
    .contactUsPage .contactIcon{
        width: 40px;
    }
    span.productTagRibbon {
        width: 45%;
        top: 20px;
        left: -60px;
    }

}

@media(max-width : 420px){
    span.productTagRibbon {
        width: 54%;
        top: 30px;
        left: -30px;
    }
}


@media(min-width: 1200px){
    .sectionCard .customWidthCard{
        width: 20% !important;
    }
    span.productTagRibbon{
        width: 50%;
        left: -22px;
    }
    .healthCtaSection  .sectionCard .customWidthCard .card{
        padding: 24px 30px;
    }   
}

@media(min-width : 1400px){
    .customNav .container{
        max-width: 1280px;
    }
    .ourExpertSection .expertBlock{
        width: 310px;
    }
    .ourExpertSection .expetBlockWrapper::before{
        width: 316px;
    }
    .ourExpertSection.subPage .expertBlock {
        width: 330px;
    }
    .ourExpertSection.subPage .expetBlockWrapper::before{
        width: calc(100% + 24px);
        height: calc(100% - 80px);
    }
    .healthCtaSection .container,
    .ourExpertSection.subPage .container,
    .detailSection .container,
    .blogSec .container,
    .importantPage .container,
    .blogPageSection .container,
    .contactUsPage .container
    {
        max-width: 1200px;
    }
    
    
}
@media(min-width : 1560px){
    .customNav .container{
        max-width: 1380px;
    }
    .popularSection .popularImg{
        width: 100%;
        height: auto;
    }
    .ourExpertSection .expertBlock{
        width: 320px;
    }
    .ourExpertSection .expetBlockWrapper::before{
        width: 326px;
    }
    .ourExpertSection.subPage .expertBlock {
        width: 360px;
    }
    .ourExpertSection.subPage .expetBlockWrapper::before{
        width: calc(100% + 24px);
        height: calc(100% - 80px);
    }

}
