/*
Theme Name: Bagels
Description: Specific styles of the theme relative ti this website.
*/

body {
    font-family: 'Outfit', sans-serif;
}

.container{
    width: 1472px;
}

/* a {
    color: #FFFFFF;
} */

/* a:hover {
    color: #25B0C9;
} */


#site-header .navbar-nav > li > a:hover,
#site-header .navbar-nav > li > a:focus,
#site-header .navbar-nav > .active > a,
#site-header .navbar-nav > .active > a:focus,
#site-header .navbar-nav > .active > a:hover,
#site-header .navbar-nav > .open > a,
#site-header .navbar-nav > .open > a:focus,
#site-header .navbar-nav > .open > a:hover {
    color: #4fa9b4;
    background-color: transparent;
    text-decoration: none; /* Remove default underline */
}

#site-header .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    left: 50%; /* Center the underline */
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: #4fa9b4;
    transition: width 0.3s ease;
    transform: translateX(-50%); /* Adjust to center */
}


#site-header .navbar-nav > li > a:hover::after,
#site-header .navbar-nav > li > a:focus::after {
    width: 80%; /* Show underline on hover */
}

#site-header .navbar-nav > li > .active > a::after {
    width: 80%; /* Show underline for active link */
}

/* Styling for the 6th element */
#site-header .navbar-nav > li:nth-child(6) > a {
    color: #FFFFFF !important; /* Ensure the text color is white */
    text-decoration: none !important; /* Remove underline */
}

#site-header .navbar-nav > li:nth-child(6) > a::after {
    color: #FFFFFF !important;
    content: none; /* Remove the underline for the 6th element */
}

#site-header #toggle-search ::after{
    text-decoration: none !important; /* Ensure no underline on search toggle */
}

/* Remove underline from the search toggle link */
#site-header #toggle-search ::after{
    text-decoration: none !important; /* Ensure no underline on search toggle */
    content: none;
}

#site-header .navbar-nav > li > .active > a {
    width: 80%; /* Show underline for active link */
    /* You can add a different color or style if you want to differentiate the underline for the active link */
    background-color: #4fa9b4; /* Keeping the same underline color */
}

#site-header .navbar-nav > li > a:active::after {
    width: 80%; /* Ensure underline is visible when clicking */
}

#site-header .navbar-nav > li > a[aria-current="page"]::after {
    width: 80%; /* Keep the underline for the active page */
    background-color: #4fa9b4; /* You can change this color if needed */
}

#site-header .navbar-nav > li > a[aria-current="page"] {
    color: #4fa9b4; /* Change text color for the active link if desired */
}


#site-header .navbar-nav > li:nth-child(5) > a {
    margin-right: 15px;
}


.sidemenu-div-social-icons{
    margin: 10px;
}

.side-social-icon-title-container,
.side-social-icon-container{
    box-sizing: border-box;
    padding: 12px 15px;
}

.side-social-icon-title-container{
    font-size: 20px;
    line-height: 25px;
    color: rgba(79, 79, 79, 1);
}

.side-social-icon-container{
    display: flex;
    font-size: 24px;
}

.side-social-icon-container > *:not(:last-child) {
    margin-right: 30px;
}

.nav-bar-close{
    height: 60px;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.5); 
    position: absolute;
    right: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: -1; 
}


/* ---- footer css ---- */

.mc-footer-background{
    height: 596px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.footer-content-container{
    height: 100%;
}

.mc-footer-content{
    height: 100%;
    width: 100%;
}

.mc-footer-logo{
    margin-top: 53px;
    height: 80px;
    width: 27%;
}

.mc-footer-logo img{
    width: 100%;
    object-fit: contain;
}

.mc-footer-content-div{
    width: 100%;
    height: 270px;
    margin-top: 101px;
    display: flex;
    justify-content: space-between;
}

.mc-footer-content-left{
    height: 100%;
    width: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
   
}

.mc-footer-content-right{
    height: 100%;
    width: 56%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-navigation-container{
    width: 23%;
    height: 100%;
    color:#FFFFFF;    
}

.footer-div-title{
    font-size: 25px;
    line-height: 31px;
}

.footer-navigation-container-last{
    width: 260px;
    height: 100%;
    color:#FFFFFF;  
    word-wrap: break-word; 
    word-break: break-word; 
    white-space: normal; 
}

.footer-link-section{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    flex-direction: column;
}

.footer-link-section > * {
    /* Fallback for row-gap: Add margin to individual items */
    margin-bottom: 17px;
}

.footer-link-section a{
    color: #FFFFFF;
}

.footer-link-section a:hover{
    color: #8de5af;
}

.social-item{
    display: flex;
}

.social-item > *:first-child {
    margin-right: 15px;
}

.footer-div-social-icons{
    width: 186px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 22px;
}

.footer-content-left-title{
    font-size: 25px;
    color:#FFFFFF;  
}

.footer-content-left-sub-title{
    font-size: 16px;
    color:#FFFFFF;  
}

.input-container {
    display: flex;
    width: 100%;
    margin-top: 10px;
}

.footer-input{
    display: flex;
}

.input-container input {
    height: 42px;
    width: 275px;
    padding: 10px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-top-left-radius: 6px;   
    border-bottom-left-radius: 6px; 
    border-top-right-radius: 0;   
    border-bottom-right-radius: 0; 
    background-color: transparent;
    font-size: 14px;
    margin: 0; 
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

.input-container input:focus {
    outline: none; 
    border: 1px solid #FFFFFF;
}

.mc-footer-btn{
    height: 42px;
    width: 110px;
    border-top-right-radius: 6px;   
    border-bottom-right-radius: 6px; 
    background-color: #FFFFFF;
    color: #186493;
    border: 1px solid #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0; 
    font-family: 'Outfit', sans-serif;
}

.footer-rights{
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 30px;
}

.mc-footer-main-mobile{
    display: none;
    
}

.mc-footer-background-mobile{
    height: fit-content;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover; 
}

.mc-footer-logo-mobile{
    height: 9%;
    width: 30%;
    margin-left: 40px;
}

.mc-footer-logo-mobile img{
    width: 100%;
    object-fit: contain;
}

.mc-footer-mobile-content{
    width: 100%;
}

.mc-footer-mobile-div-one{
    width: 100%;
    margin-top: 15%;

}

.mc-footer-mobile-div-two{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 50px;
}

.footer-form{
    width: 100%;
}

.footer-link-section li {
    list-style: none; 
}

.footer-link-section li a {
    text-decoration: none; 
    margin-bottom: 17px;
}

/* Hero Section Css */

.mc-hero-section{
    height: 100vh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 100vh;
}


#video-container {
    position: absolute; /* Position video container absolutely within the section */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; /* Place video behind the overlay */
}
video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
}

.hero-section-main-con{
    position: absolute;
    bottom: 5%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%); 
    z-index: 2;
    width: 600px;
    text-align: center;
    color: #fff;
    width: 100%; 
    max-width: 600px; 
    box-sizing: border-box;
    padding: 0 15px;
}

.hero-section-main-con .mc-hero-title{
    font-size: 45px;
    line-height: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    word-wrap: break-word;
    white-space: normal; 
    text-align: center;
}

.hero-section-main-con .mc-hero-des{
    font-size: 20px;
    line-height: 34px;
    font-weight: 300;
}

.hero-section-main-con .mc-hero-video{
    height: 40px;
    width: 200px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
    background-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.mc-hero-video a{
    color: #FFFFFF;
}

.hero-section-main-con .mc-hero-video a:hover{
    color: #FFFFFF;
}

.mc-hero-section-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    max-width: 600px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.hero-section-social-icons{
    display: flex;
    font-size: 22px;
}

.hero-section-social-icons > *:not(:last-child) {
    margin-right: 30px;
}

.hero-section-social-icons a{
    color: #FFFFFF;
    transition: color 0.3s ease;
}

/* support section css */

.mc-support-section{
    height: fit-content;
    width: 100%;
}

.mc-support-main-container{
    width: 100%;
    height: 257px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.mc-section-title{
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
}

/* .section-title-section-one{
    color: #186493;
}

.section-title-section-two{
    color: #25B0C9;
} */

.support-section-description{
    width: 880px;
    text-align: center;
    font-weight: 300;
    line-height: 28px;
    font-size: 16px;
    margin-top: 20px;
}

.support-section-button {
    position: relative;
    width: 220px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 20px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    isolation: isolate; /* Creates a new stacking context */
}


.support-section-button a,
.support-section-button a:hover{
    color: #FFFFFF;;
}

/* Committed to Our Patients section */

.mc-commited-to-patient-section{
    height: fit-content;
    width: 100%;
}

.mc-committed-section-main-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.mc-committed-section-content{
    width: 1024px;
    height: 324px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.mc-committed-section-items{
    width: 100%;
    height: 246px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin: auto 0;
}

.mc-committed-single-item{
    width: 298px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mc-committed-single-item-middle{
    width: 312px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mc-committed-item-image{
    width: 82px;
    height: 82px;
}

.mc-committed-item-image img{
    width: 100%;
    object-fit: contain;
}

.mc-committed-item-title{
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    /* color: #186493; */
    margin-top: 20px;
}

.mc-committed-item-description{
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
    color: rgba(79, 79, 79, 1);
}

#committed-section-owl{
    display: none;
}

#committed-section-owl .owl-item{
    display: flex;
    justify-content: center;
}

#committed-section-owl .owl-dots {
    margin-top: 20px;
}

.owl-dots .owl-dot span{
    display: inline-block;
    width: 8px !important;
    height: 8px !important;
    border-radius: 2px !important;
    /* border: 1px solid #186493 !important; */
    background-color: #FFFFFF !important;
    margin: 0 2px !important;
}

.owl-dots .owl-dot.active span{
    display: inline-block;
    width: 22px !important;
    height: 8px !important;
    border-radius: 2px !important;
    border: 1px solid #186493 !important;
    background-color: #186493 !important;
    margin: 0 2px !important;
}


/* care options section css */

.mc-care-options-section{
    width: 100%;
    height: fit-content;
}

.mc-our-care-options-main-container{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
}

.mc-care-options-content{
    width: 100%;
    height: 544px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.mc-care-options-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    width: 100%;
    height: fit-content;
    margin-top: 20px;
}

.mc-care-option-item{
    width: 96%;
    height: 406px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    border: 0.41px solid var(--Box-Stroke, rgba(236, 236, 236, 1));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07);
}

.care-options-item-image{
    width: 100%;
    height: 57%;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.care-options-item-content{
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 20px;
}

.care-item-title{
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}

.care-item-description{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #4F4F4F;
}

.care-item-description p{ 
    margin: 0;
}

.care-item-learn-more{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  
}

.care-item-learn-more a{
    transition: background 0.3s ease
}


#care-options-owl-single .owl-item,
#care-options-owl .owl-item{
    display: flex;
    justify-content: center;
}

#care-options-owl-single .owl-stage-outer{
    padding-bottom: 20px;
    margin-bottom: -20px;
    padding-left: 5px;
    margin-left: -5px;
    padding-right: 5px;
    margin-right: -5px;
    overflow: hidden;
}

#care-options-owl .owl-stage{
    margin-bottom: 20px;
}

#care-options-owl .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#care-options-owl .owl-stage-outer{
    border-radius: 10px;
    overflow: hidden;
}


/* our blogs css */

.mc-our-blogs-container{
    width: 100%;
    height: fit-content;
}

.mc-our-blogs-main-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

.mc-blog-items{
   
    margin-top: 15px;
    flex-grow: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mc-blog-item{
    width: 24%;
    height: 445px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-right: 1.2%;
}

.mc-blog-item:nth-child(4n) {
    margin-right: 0; /* Removes the left margin for the 4th item in each row */
}

.mc-blog-overlay-card{
    width: 100%;
    height: 37.2%;
    background: linear-gradient(to top, rgba(36, 125, 139, 0.6) 12.85%, rgba(16, 148, 64, 0.6) 184.25%);
    backdrop-filter: blur(17.15260124206543px);
    -webkit-backdrop-filter: blur(17.15260124206543px); 
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 15px;
    color: rgba(255, 255, 255, 1);
}

.blog-overlay-title{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.blog-overlay-title a{
    color: white;
    transition: all 0.3 ease-out;
}

.blog-overlay-description{
    font-size: 15px;
    font-weight: 100;
    line-height: 20px;
}

.blog-overlay-learn-more{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    width: 100%;
}

.blog-overlay-learn-more a{
    color: #FFFFFF;
}

#blogs-owl{
    display: none;
}

#blogs-owl .owl-item{
    display: flex;
    justify-content: center;
}

#blogs-owl .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#blogs-owl .owl-stage-outer{
    border-radius: 10px;
    overflow: hidden;
}


/* Testimonials section Css */

.mc-testimonials-section{
    width: 100%;
    height: fit-content;
}

.mc-testimonials-main-container{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.mc-testimonials-items{
    width: 100%;
    height: 435px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2%;
    margin-top: 20px;
}

.mc-testimonial-item{
    width: 96%;
    height: 435px;
    display: flex;
    flex-direction: column;
    /* background: rgba(54, 130, 176, 1); */
    box-shadow: 0px 3.92px 12.76px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    color: rgba(255, 255, 255, 1);
}

.testimonials-comma-icon{
    width: 65%;
    height: 11%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.testimonials-content-con{
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
}

.testimonials-description{
    font-size: 20px;
    line-height: 28px;
    font-weight: 200;
    width: 73%;
}

.testimonials-rating-stars{
    display: flex;
    gap: 8px;
    font-size: 16px;
}

.testimonials-author-details{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.testimonials-author-name{
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.testimonials-author-position{
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

#testimonials-owl .owl-item{
    display: flex;
    justify-content: center;
}

#testimonials-owl .owl-dots {
    display: flex;
    justify-content: center;
}

#testimonials-owl .owl-stage{
    margin-bottom: 30px;
}

.comma-image{
    height: 100%;
    width: 20%;
}

.comma-image img{
    height: 100%;
    object-fit: contain;
}

#testimonials-owl .owl-stage-outer{
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0px 3.92px 12.76px 0px rgba(0, 0, 0, 0.25); */
}


/* contact us css */

.mc-contact-section{
    margin-top: 40px;
}

.contact-us-page{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mc-contact-main-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mc-contact-us-content{
    width: 1320px;
    height: 462px;
    display: flex;
    box-shadow: 0px 4px 30.2px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.contact-us-content-left{
    width: 44.5%;
    height: 100%;
    box-sizing: border-box;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.contact-us-left-overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(36, 125, 139, 0.6) 25.24%, rgba(16, 148, 64, 0.6) 186.07%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.contact-us-left-info-section{
    width: 100%;
    height: 37%;
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact-left-title{
    font-size: 30px;
    line-height: 37px;
    font-weight: 400;
}

.contact-left-description{
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
}

.contact-left-whatsapp{
    display: flex;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    color: rgba(255, 255, 255, 1) !important;
}

.contact-form-whatsap-image{
    width: 46px;
}

.contact-form-whatsap-image img{
  max-width: 100%;
  object-fit: contain;
}

.whatsapp-no-contact{
    margin-left: 10px;
    color: rgba(255, 255, 255, 1);
}

.contact-left-whatsapp a{
    color: rgba(255, 255, 255, 1);
    transition: color 0.3s ease;
}

.contact-left-whatsapp a:hover{
    color: #25B0C9;
}

.contact-us-content-right{
    flex-grow: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
}

.contact-us-content-right p{
    margin: 0;
}

.wpcf7.js{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wpcf7 input[type="submit"] {
    position: relative; 
    box-sizing: border-box;
    width: 116px;
    height: 43px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-appearance: none;
    isolation: isolate;
}

.footer-input .wpcf7 input[type="submit"]{
    height: 42px;
    width: 110px;
    border-radius: 0;
    border-top-right-radius: 6px;   
    border-bottom-right-radius: 6px; 
    background: #FFFFFF;
    color: rgba(36, 125, 139, 1);
    border: 1px solid #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0; 
    font-family: 'Outfit', sans-serif;
    transition: background 0.3s ease-out;
}

.footer-input .wpcf7 input[type="submit"]:hover{
    color: #FFFFFF;
}

.footer-input .wpcf7 input[type="email"]{
    height: 42px;
    width: 275px;
    padding: 10px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-top-left-radius: 6px;   
    border-bottom-left-radius: 6px; 
    border-top-right-radius: 0;   
    border-bottom-right-radius: 0; 
    background-color: transparent;
    font-size: 14px;
    margin: 0; 
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

.footer-input .wpcf7 p{
        display: flex;
}

.contact-us-right-input-section{
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.content-right-input-field{
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-input{
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: rgba(79, 79, 79, 1);
}

.contact-form-input-fields{
    height: 42px;
    border: none;
    padding: 16px 32px 16px 14px;
    gap: 10px;
    border-radius: 6px; 
}

.content-right-input-field input{
    border: 0.6px solid rgba(201, 201, 201, 1);
}

.content-right-input-field input:focus{
    outline: none;
    border: 0.6px solid rgba(201, 201, 201, 1);
}

.content-right-input-field-text-area{
    display: flex;
    width: 100%;
    height: 156px;
    flex-direction: column;
}

.content-right-input-field-text-area textarea{
    height: 114px;
    border: 0.6px solid rgba(201, 201, 201, 1);
    resize: none; 
}

.contact-form-submit-btn{
    box-sizing: border-box;
    width: 116px;
    height: 43px;
    border-radius: 6px;
    /* background-color: rgba(24, 100, 147, 1); */
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-submit-btn:hover{
    background-color:#25B0C9;
}

.contact-div-social-icons{
    display: flex;
    width: 15%;
    justify-content: space-between;
    font-size: 30px;
    margin-top: 20px;
}

.contact-details-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.contact-us-links-section{
    width: 100%;
    box-sizing: border-box;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-size: 18px;
    border-top: 2px solid #f1f1f1; 
    border-bottom: 2px solid #f1f1f1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.social-wrapper{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About-us-page-Css */

.mc-about-us-background-image{
    width: 100%;
    height: 380px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
}

.pg-temp-about-title{
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    margin-top: 80px;
}

.pg-temp-about-post-title{
    height: calc(100% - 41.42px);
    display: flex;
    padding-bottom: 0;
    padding-top: 0;
    justify-content: flex-start;
    align-items: end;
    position: relative;
}

.mc-about-us-title-div{
    z-index: 1;
    height: auto;
    max-width: 40%;
    /* background-color: rgba(24, 100, 147, 0.8); */
    background: linear-gradient(90deg, rgba(36, 125, 139, 0.8) 0%, rgba(16, 148, 64, 0.8) 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    padding: 25px;
}

.About-us-page-section{
    margin-top: 80px;
}

.mc-about-us-content-main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bagels-theme-button a:hover {
    color:#fff;
}

.mc-about-us-description{
    width: 100%;
    text-align: center;
}

.mc-about-us-description{
    width: 496px;
    margin-top: 10px;
    color: rgba(79, 79, 79, 1);
}

.mc-about-us-description p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: rgba(79, 79, 79, 1);
}

.mc-about-us-item-container{
    width: 70%;
    height: 246px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.about-us-item-first{
    width: 29.1%;
    height: 100%;
}

.about-us-item-second{
    width: 30.3%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#mc-section-title-mobile{
    display: none;
}

#mc-section-title-desktop{
    display: block;
}
.mc-about-us-success-story.reverse-layout,
.mc-about-us-success-story{
    height: 670px;
    width: 920px;
    display: flex;
    margin-top: 40px;
}

.mc-about-us-success-story.reverse-layout{
    flex-direction: row-reverse;
}

.mc-success-story-left{
    width: 51%;
    height: 100%;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
}

.mc-success-story-right{
    flex-grow: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-left: 10px;
}

.mc-story-content{
    height: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;  
}

.mc-success-story{
    margin: 0 auto;
    margin-top: 20px;
}

.mc-success-story-phara{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: rgba(79, 79, 79, 1);
    width: 298px;
    height: 72px;
}

.mc-founder-story{
    width: 100%;
    display: flex;
    height: fit-content;
    margin-top: 20px;
}

.mc-story-div-three,
.mc-story-div-one{
    width: 15%;
    height: 100%;
    box-sizing: border-box;
}

.mc-story-div-one{
    display: flex;
    justify-content: flex-end;
}

.mc-story-div-two{
    width: 298px;
    height: 100%;
    box-sizing: border-box;
    padding-top: 25px;
    padding-bottom: 25px;
}

.mc-story-div-three{
    display: flex;
    align-items: flex-end;
}

.story-comma-one{
    width: 50%;
    height: 30px;
}

.story-comma-one img{
    width: 100%;
    object-fit: contain;
}

.story-comma-two img{
    width: 100%;
    object-fit: contain;
}

.mc-story-div-two p{
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 0;
    color: rgba(85, 86, 88, 1);
}

.founder-name{
    width: 298px;
}

.author-name-span{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(85, 86, 88, 1);
}

.author-position-span{
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: rgba(79, 79, 79, 1);
}

.mc-success-story-left img{
    width: 100%;
    object-fit: contain;
}

.about-us-our-team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    margin-bottom: 50px;
}

.our-team-list{
    width: 98%;
    height: 482px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.our-team-member{
    height: 482px;
    width: 96%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 11px 9px 11px 9px;
    border-radius: 10px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}



.member-infor-overlay{
    width: 100%;
    height: 24%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(36, 125, 139, 0.75) 12.85%, rgba(16, 148, 64, 0.75) 184.25%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    padding: 17px 92px 17px 92px;
}

.mc-our-team-member-name{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.mc-our-team-member-position{
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.member-social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.member-social-icons > *:nth-child(-n+2) {
    margin-right: 12px;
}

.member-social-icons a{ 
    color: rgba(255, 255, 255, 1);
}

.member-social-icons a:hover{ 
    color: #25B0C9;
}

#team-member-owl .owl-item{
    height: 100%;
    display: flex;
    justify-content: center;
}

#team-member-owl .owl-dots{
    display: block;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}



/* our services page css */

.mc-our-services-page-section{
    margin-top: 80px;
}

.mc-services-main-cintainer{
    width: 100%;
    height: fit-content;
}

.our-services-pharahraph-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 30px;
}

.mc-services-pharagraph{
    box-sizing: border-box;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: rgba(79, 79, 79, 1);
}

.mc-services-pharagraph p{
    margin-bottom: 20px;
}

#care-options-owl-single .owl-dots{
    display: block;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mc-care-options-items-mobile{
    display: none;
}

.mc-care-options-items-div{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    margin-top: 20px;
}

/* Testimonials single page css */

.mc-testimonials-page-section{
    margin-top: 80px;
}

.mc-testimonials-page-container{
    width: 100%;
}

.mc-testimonials-items-single-page{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    height: fit-content;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.mc-testimonials-items-single-page > * {
    /* Fallback for row-gap: Add margin to individual items */
    margin-bottom: 25px;
}

.mc-testimonial-item-single{
    width: 30.8%;
    height: 435px;
    display: flex;
    flex-direction: column;
    background: rgba(54, 130, 176, 1);
    box-shadow: 0px 3.92px 12.76px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    color: rgba(255, 255, 255, 1);
}

.testimonials-load-more-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

.mc-load-more-btn{
    width: 124px;
    height: 41px;
    display: none;
    box-sizing: border-box;
    padding: 16px, 26px, 16px, 26px;
    /* background-color: rgba(24, 100, 147, 1); */
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 6px;
}

/* single service page css */

.single-service-page-video i{
    color: rgba(255, 255, 255, 1);
}

.mc-services-single-section{
    margin-top: 80px;
}

.mc-service-single-main-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mc-service-container-div-two.reverse-layout,
.mc-service-container-div.reverse-layout,
.mc-service-container-div-two,
.mc-service-container-div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    min-height: 412px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.mc-service-container-div-two.reverse-layout{
    flex-direction: row-reverse;
}

.mc-service-container-div.reverse-layout{
    flex-direction: row-reverse;
}

.mc-service-container-content{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mc-service-container-image{
    width: 48%;
    height: 500px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1);
    font-size: 40px;
    position: relative;
    overflow: hidden;
}

.single-service-page-video{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-overlay-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Icon color */
    font-size: 48px; /* Size of the pause icon */
}

.mc-service-content-pharagraph p{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: rgba(79, 79, 79, 1);
    margin-bottom: 0;
}

 #mc-single-section-title-mobitel{
    display: none;
}

.mc-service-container-image-two{
    width: 48%;
    height: 544px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.key-aspect-item{
    width: 84%;
    margin-top: 20px;
}

.key-aspects-title-con{
    display: flex;
    align-items: center;
    justify-content: left;
    height: 20px;
}

.key-aspects-title-con > *:first-child {
    margin-right: 8px;
}

.key-aspects-title-con img{
    height: 100%;
    object-fit: contain;
}

.key-aspect-title-name{
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: rgba(79, 79, 79, 1);
}

.key-aspect-description{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: rgba(79, 79, 79, 1);
}

.mc-service-container-div-three{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.mc-care-stories-section{
    width: 1320px;
    height: 498px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.care-story-item-si,
.care-story-item{
    height: 100%;
    width: 94%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2%;
}

.care-story-item-si:nth-child(3n),
.care-story-item:nth-child(3n) {
    margin-right: 0; /* Remove margin for the last item in each row */
}

.care-story-image{
    height: 132px;
    width: 132px;
    border-radius: 50%;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    border: 0.1px solid rgba(255, 255, 255, 1);
    z-index: 100;
    position: absolute;
}

.care-story-content{
    width: 100%;
    height: 440px;
    z-index: 1;
    margin-top: 60px;
    border-radius: 10px;
}

.story-content-list{
    width: 100%;
    height: 80%;
    margin-top: 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-sizing: border-box;
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 6%;
}

.sotry-teller-name{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(255, 255, 255, 1);
}

.story-descrtiption p{
    font-weight: 200;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 1);
}

.read-story-div a{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(255, 255, 255, 1);
}

#care-stories-owl .owl-item{
    height: 100%;
    display: flex;
    justify-content: center;
}

#care-stories-owl .owl-dots{
    display: block;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* case study section css */

.case-study-section{
    margin-top: 80px;
}

.mc-case-study-main-container{
    width: 100%;
    height: fit-content;
}

.mc-case-study-description{
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding-left: 10%;
    padding-right: 10%;
}

.mc-case-study-description p{
   font-weight: 300;
   font-size: 16px;
   line-height: 22px;
   color: rgba(79, 79, 79, 1);
}

.mc-wellness-stories-section{
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mc-wellness-story-list-div{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    margin-top: 30px;
}

.mc-wellness-story-list-div > * {
    /* Fallback for row-gap: Add margin to individual items */
    margin-bottom: 20px;
}

#care-story-item-single{
    width: 32%;
}


/* case study single css */

.mc-single-case-study-section{
    margin-top: 80px;
}

.mc-single-case-study-main-continer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mc-case-study-single-content{
    width: calc(100% - 30%);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.mc-single-study-con-1{
    margin-bottom: 30px;
}

.mc-single-study-con-1 p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: rgba(79, 79, 79, 1);
    margin-bottom: 20px;
}
.mc-single-study-con-2.reverse-layout,
.mc-single-study-con-2{
    margin-bottom: 60px;
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: space-between;
    
}

.mc-single-study-con-2.reverse-layout{
    flex-direction: row-reverse;
}

.mc-study-con-2-left{
    width: 48%;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mc-study-con-2-left-content{
    margin-top: 20px;
}

.mc-study-con-2-left-content p{
    color: rgba(79, 79, 79, 1);
    margin-bottom: 20px;
    font-weight: 300;
}

.mc-study-con-2-right-image{
    width: 48%;
    min-height: 400px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.mc-study-con-2-right-image-mobile{
    display: none;
    width: 100%;
    height: 420px;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
}

.mc-care-study-single-phara{
    margin-top: 20px;
}

.mc-study-speech-container{
    width: 100%;
    height: 300px;
    background-color: rgba(246, 246, 246, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    margin-bottom: 60px;
}

.speech-main-container{
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
}

.speech-comma-image-one{
    width: 6%;
    height: 100%;
    display: flex;
    justify-content: right;
    box-sizing: border-box;
    padding-top: 10px;
}

.speech-comma-image-one img{
    width: 100%;
    object-fit: contain;
}

.speech-comma-image-two{
    width: 6%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    padding-bottom: 10px;
}

.sppech-content-message{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}

.speech-author-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.study-author-name{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: rgba(85, 86, 88, 1);
}

.study-author-position{
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: rgba(85, 86, 88, 1);
}

.mc-contact-main-container{
    margin-top: 20px;
    margin-bottom: 60px;
}

.page-not-found-error-section{
    margin-top: 80px;
}

.blog-description{
    margin-top: 20px;
    color: rgba(79, 79, 79, 1);
}

.footer-rights a{
    font-weight: 300;
    color: white;
}

/* flexible content element CSS */

.mc-element-main{
    width: 1442px;
}

.row-element{
    height: 100px;
    background-color: #25B0C9;
}

.mc-spacer{
    width: 100%;
}

/* FAQs page css */


.faq-main-container{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
}

.mc-faq-question-container{
    display: flex;
    justify-content: space-between;
    min-height: 100px;
    margin-bottom: 15px;
}

.mc-faq-question-icon{
    width: 3%;
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding-top: 8px;
    color: rgba(36, 125, 139, 1);
}

.mc-faq-question-content-container {
    width: 97%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mc-faq-answer,
.mc-faq-question{
    height: fit-content;
    padding: 6px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.mc-faq-question span{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(36, 125, 139, 1);
}

.mc-faq-answer p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 200;
    color:rgb(68, 68, 68);
}

.pg-temp-faqs .mc-section-title{
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

  /* search css */
  .mc-service-search-container{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
  }

  .mc-service-search{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
  }

.pg-temp-about-title{
    bottom: 0;
}

.mc-post-item-section{
    margin-top: 80px;
}

.mc-search-component {
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items to the left */
    margin-bottom: 60px;
    margin-top: 30px;
    gap: 25px; /* Add spacing between items */
}

.mc-search-component > * {
    flex: 1 1 23%;
    max-width: 23%; /* Ensures items don’t expand beyond 24% */
    box-sizing: border-box;
}

.mc-blog-item-search{
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.search-row{
    padding-left: 15px;
    padding-right: 15px;
}

.mc-search-component-2{
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    margin-bottom: 60px;
    margin-top: 30px;
    gap: 25px;
}

.mc-search-component-2 > * {
    flex: 1 1 32%;
    max-width: 32%;
    box-sizing: border-box;
}

/* search page */

/* Full-page search overlay */
.nav-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(79, 169, 180, 0.7); /* Semi-transparent with 70% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px); /* Apply a 10px blur effect */
}

.nav-search-overlay .overlay-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    color: white;
}

.nav-search-overlay .input-group {
    width: 100%;
    color: white;
}

.nav-search-overlay .input-group input{
    color: white;
}

.nav-search-overlay .form-control {
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 2.5rem;
    background: transparent;
    color: white;
    border: none; 
    outline: none; 
    box-shadow: none; 
    
}

.nav-search-overlay .form-control::selection {
    background: transparent;
    color: inherit; 
}

.nav-search-overlay .btn {
    height: 50px;
    background-color: transparent;
    font-size: 28px;
}

.close-search {
    position: absolute;
    top: -10px;
    right: -10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.nav-search-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.nav-search-overlay .form-control::placeholder {
    color: rgba(255, 255, 255, 1); 
    opacity: 1; 
}

.btn-default-search{
    color: white;
}

.btn-default-search:hover{
    color: #8de5af;
}

.full-page-search {
    border-bottom: 1px solid white; 
}


.btn-default-search:active {
    background-color: transparent;
    border: none;
    box-shadow: none;
}


.btn-default-search:focus {
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
}


/* responsive section start from here */

@media (max-width: 1679px) {
    .container{
        width: 1400px;
    }

    .member-infor-overlay{
        width: 100%;
        height: 28%;
        box-sizing: border-box;
        padding: 15px 30px 15px 30px;
    }

    .mc-blog-overlay-card{
        height: 46%;
        padding: 15px;
    }
}

@media (max-width: 1439px) {
    .container{
        width: 1300px;
    }

    .testimonials-description{
        width: 85%;
    }

    .story-descrtiption p{
        font-weight: 300;
        font-size: 20px;
        line-height: 30px; 
    }

    .read-story-div a{
        font-size: 22px;
        font-weight: 400;
        line-height: 30px;
        color: rgba(255, 255, 255, 1);
    }

    .sppech-content-message{
        width: 65%;
        height: fit-content;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 22px;
        line-height: 34px;
        font-weight: 500;
    }

    .mc-study-speech-container{
        height: 350px;   
    }

    .mc-about-us-background-image{
        height: 250px;
    }

   
}

@media (max-width: 1365px) {
    .container{
        width: 1280px;
    }

    .content-right-input-field{
        width: 45%; 
    }

    .our-team-member{
        height: 420px; 
    }

    .member-infor-overlay{
        width: 100%;
        height: 28%;
        box-sizing: border-box;
        padding: 15px 30px 15px 30px;
    }

    .mc-search-component > * {
        flex: 1 1 30%;
        max-width: 30%; /* Ensures 3 items per row on smaller screens */
    }
}

@media (max-width: 1279px) {
    .container{
        width: calc(100% - 30px);
    }
    .testimonials-description{
        width: 95%;
    }

    .mc-case-study-single-content{
        width: calc(100% - 15%);
    }

    .mc-study-con-2-left{
        width: 52%;
        height: 100%;
    }

    .mc-study-con-2-right-image{
        width: 42%;
        height: 100%;
    }
}

@media (max-width: 1200px) {
    .container{
        width: calc(100% - 50px);
    }

    .mc-committed-section-content{
        width: 100%;
    }

    .mc-our-blogs-main-container{
        height: fit-content;
    }

    .mc-blog-overlay-card{
        height: 45%;
        padding: 10px;
    }
   
    .blog-overlay-title{
        font-size: 16px;   
    }
    
    .blog-overlay-description{
        font-size: 14px;   
    }

    .mc-testimonial-item{ 
        height: 380px; 
    }

    .testimonials-description{
        font-size: 18px;
        line-height: 28px;
        font-weight: 300;
        width: 90%;
    }

    .mc-about-us-success-story.reverse-layout,
    .mc-about-us-success-story{
        height: 600px;
        width: 800px;  
    }

    .key-aspect-item{
        width: 100%;
        margin-top: 15px;
    }

    .story-content-list{
        width: 100%;
        height: 80%;
        margin-top: 20%;
        padding-left: 8%;
        padding-right: 8%;
    }

    .story-descrtiption p{
        line-height: 28px;
    }

    .read-story-div a{
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .care-story-image{
        height: 100px;
        width: 100px;
    }

    .mc-care-stories-section{
        height: 420px;
    }

    .care-story-content{
        height: 400px;
        margin-top: 50px;
    }

    .contact-us-links-section{
        padding-left: 0;
        padding-right: 0; 
    }

    .mc-search-component-2 > * {
        flex: 1 1 40%;
        max-width: 40%;
        box-sizing: border-box;
    }

    .mc-blog-item{
        height: 350px;  
    }

    .mc-blog-overlay-card{
        height: 50%;
        padding: 15px;
    }
    
}

@media (max-width: 991px) {
    .container{
        width: calc(100% - 50px);
    }

    .mc-footer-main{
        display: none;
    }

    .mc-footer-main-mobile{
        display: block;
    }

    .support-section-description{
        width: 100%;   
    }

    .mc-committed-single-item{
        width: 29.2%; 
    }
    
    .mc-committed-single-item-middle{
        width: 30.3%;
    }

    .mc-committed-section-content{
        height: fit-content;
    }
    
    .mc-committed-section-items{
        height: fit-content;
        margin-top: 20px;
    }

    .mc-blog-items{
       display: none;
    }

    #blogs-owl{
        display: block;
    }

    .mc-blog-item{
        width: 96%;
        height: 394px;
    }

    .blog-overlay-title{
        font-size: 20px;   
    }
    
    .blog-overlay-description{
        font-size: 16px;   
    }

    .mc-blog-overlay-card{
        height: 46%;
        padding: 15px;
    }

    .mc-our-blogs-main-container{
        height: fit-content; 
    }

    .mc-contact-us-content{
        flex-direction: column;
        height: 860px;
    }

    .contact-us-content-left{
        width: 100%;  
        height: 45%;
    }

    .contact-us-left-info-section{
        width: 100%;
        height: 48%;
        justify-content: space-between;
    }
    
    .contact-left-title{
        font-size: 40px;
        line-height: 50px;
        font-weight: 400;
    }
    
    .contact-left-description{
        font-size: 16px;
        font-weight: 300;
        line-height: 28px;
        width: 400px;
    }
    
    .contact-left-whatsapp{
       
        font-size: 36px;
        font-weight: 600;
        line-height: 36px;
    }

    .contact-form-whatsap-image{
        width: 40px;
    }
    
    .contact-form-whatsap-image img{
      max-width: 100%;
      object-fit: contain;
    }
    
    .whatsapp-no{
        margin-left: 15px;
    }

    .contact-us-left-overlay{
        padding: 30px;
    }

    .wpcf7 input[type="submit"],
    .contact-form-submit-btn{
        margin: 10px auto;
        width: 265px;
        height: 42px;
        font-size: 18px;
    }

    .footer-form{
        display: flex;
    }

    .mc-about-us-title-div{
        z-index: 1;
        height: fit-content;
        max-width: 55%;
        font-weight: 500;
        font-size: 26px;
        line-height: 30px;
    }

    .About-us-page-section{
        margin-top: 60px;
    }

    .mc-about-us-item-container{
        width: 90%;
        height: fit-content;
    }

    .mc-about-us-success-story.reverse-layout,
    .mc-about-us-success-story{
        height: 500px;
        width: 700px;   
    }

    .mc-story-div-two p{
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        margin-bottom: 0;
        color: rgba(85, 86, 88, 1);
    }
    
    .author-name-span{
        font-size: 18px;
    }
    
    .author-position-span{
        font-size: 14px;
    }

    .mc-success-story-phara{
        font-size: 16px;
        line-height: 18px;
        font-weight: 300;
        color: rgba(79, 79, 79, 1);
        width: 298px;
        height: 72px;
    }

    .mc-success-story{
        margin-top: 30px;
    }

    .mc-our-services-page-section{
        margin-top: 60px;
    }

    .mc-testimonials-page-section{
        margin-top: 60px;
    }

    .mc-testimonial-item-single{
        width: 45%;
        height: 435px;
    }

    .mc-service-content-pharagraph p{
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.5;
    }

    #mc-single-section-title-desktop{
        display: none;
    }

    #mc-single-section-title-mobitel{
        display: block;
    }

    .mc-services-single-section{
        margin-top: 60px;
    }

    .mc-single-section-title-mobile{
        font-size: 25px;
        font-weight: 500;
        line-height: 31.5px
    }

    .key-aspect-description{
        line-height: 1.5;
    }

    
    .story-content-list{
        width: 100%;
        height: 80%;
        margin-top: 15%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .story-descrtiption p{
        line-height: 28px;
    }

    .read-story-div a{
        font-size: 22px;
        font-weight: 400;
        line-height: 28px;
    }

    .care-story-image{
        height: 100px;
        width: 100px;
    }

    .mc-care-stories-section{
        height: 420px;
    }

    .care-story-content{
        height: 400px;
        margin-top: 50px;
    }

    .case-study-section{
        margin-top: 60px;
    }

    #care-story-item-single{
        width: 48%;
    }

    .read-story-div a{
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        color: rgba(255, 255, 255, 1);
    }

    .mc-about-us-background-image{
        width: 100%;
        height: 360px;
    }
    
    .mc-single-case-study-section{
        margin-top: 60px;
    }

    .mc-study-con-2-left{
        width: 55%;
        height: 100%;
    }

    .mc-study-con-2-right-image{
        width: 42%;
        height: 100%;
    }

    .mc-case-study-single-content{
        width: 100%;
    }

    .mc-study-con-2-left-content p{
        line-height: 22px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .mc-study-con-2-left-content{
        margin-top: 10px;
    }
    .mc-single-study-con-2.reverse-layout,
    .mc-single-study-con-2{
        width: 100%;
        height: 480px;
        display: flex;
        justify-content: space-between;
    }

    .sppech-content-message{
        width: 65%;
        height: fit-content;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
    }

    .mc-study-speech-container{
        height: 300px;   
    }

    .mc-single-section-title2-mobile{
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .mc-service-container-div-three{
        margin-bottom: 140px;
    }
    
    .mc-service-container-div.reverse-layout,
    .mc-service-container-div{
        flex-direction: column;
        height: fit-content;
    }

    .mc-service-container-div-two.reverse-layout,
    .mc-service-container-div-two{
        flex-direction: column-reverse;
        height: fit-content;
    }

    .mc-service-container-content{
        width: 100%;
        height: fit-content;
        
    }
    
    .mc-service-container-image{
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }

    .mc-service-container-image-two{
        width: 100%;
        margin-top: 20px;
    }

    .mc-service-container-div-two.reverse-layout,
    .mc-service-container-div.reverse-layout,
    .mc-service-container-div-two,
    .mc-service-container-div{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .mc-service-container-div-two.reverse-layout,
    .mc-service-container-div-two{
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .story-comma-one{
        width: 50%;
        height: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .mc-footer-logo-mobile img{
        margin-top: 0;
        margin-left: 40px;
        height: 40%;
        width: 90%;
    }

   

    .mc-faq-question-icon{
        width: 3%;  
    }
    
    .mc-faq-question-content-container {
        width: 95%;
    }

    .contact-us-links-section{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-us-links-section > * {
        /* Fallback for row-gap: Add margin to individual items */
        margin-bottom: 10px;
    }

    .social-wrapper{
        width: fit-content;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .contact-div-social-icons{  
        width: 30%;  
    }
    
    .contact-us-content-right{
        gap: 10px;
        padding-bottom: 10px;
        height: fit-content;
    }

    .contact-us-content-right .wpcf7-spinner {
        position: relative;
        top: 0;
        right: -46%;
        color: #000;
    }

    .pg-temp-about-title{
        margin-top: 60px;
    }

    .mc-post-item-section{
        margin-top: 60px;
    }

    .mc-search-component > * {
        flex: 1 1 44%;
        max-width: 44%; /* Ensures 3 items per row on smaller screens */
    }

    .mc-search-component-2 > * {
        flex: 1 1 42%;
        max-width: 42%;
        box-sizing: border-box;
    }


}

@media (max-width: 767px) {
    .container{
        width: calc(100% - 50px);
    }

    .mc-about-us-background-image{
        width: 100%;
        height: 280px;
    }

    .mc-footer-mobile-div-two{
        flex-wrap: wrap;
        justify-content: left;
        row-gap: 50px;
    }

    .footer-navigation-container{
        width: 188px;
    }

    .mc-footer-logo-mobile{
        margin-top: 0;
        margin-left: 0;
        height: 11%;
        width: 41%;
    }

    .footer-div-social-icons{
        
        justify-content: flex-start;
        gap: 20px;
    }

    .hero-section-main-con .mc-hero-title {
        white-space: normal; 
        word-break: break-word; 
    }

    .hero-section-main-con .mc-hero-des{
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

    .hero-section-main-con{
        width: calc(100% - 50px);   
    }

    .mc-support-main-container{
        height: fit-content;
    }

    .mc-section-title{
        font-size: 25px;
        line-height: 31px;
        width: calc(100% - 105px);
        text-align: center;
    }

    .support-section-description{
        font-size: 16px;
        line-height: 25px;
        
    }

    .mc-committed-section-items{
        display: none;
    }

    #committed-section-owl {
        display: block;
        margin-top: 20px;
      }

    .mc-committed-single-item{
        width: 90%; 
    }
    
    .mc-committed-single-item-middle{
        width: 90%;
    }

    .testimonials-description{
        width: 85%;
    }

    .mc-blog-item{
        width: 100%;
    }

    .mc-testimonial-item{
        width: 100%;
    }

    .mc-care-option-item{
        width: 100%;
        
    }

    .contact-us-content-left{
        width: 100%;  
        height: 37%;
        justify-content: center;
    }

    .contact-us-right-input-section{
        height: 150px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .contact-us-content-right{
        gap: 10px;
        padding: 30px;
        padding-bottom: 10px;
    }

    .content-right-input-field{
        width: 100%;
        justify-content: center;
    }

    .contact-us-left-info-section{
        width: 100%;
        height: 70%;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-left-title{
        font-size: 30px;
        line-height: 50px;
        font-weight: 400;
    }
    
    .contact-left-description{
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;
    }
    
    .contact-left-whatsapp{
       
        font-size: 28px;
        font-weight: 600;
        line-height: 36px;
    }

    .mc-contact-section{
        margin-top: 10px;
    }

    .mc-care-options-content{
        height: fit-content;
    }

    .mc-about-us-item-container{
        width: 60%;
        height: fit-content;
        flex-wrap: wrap;
        row-gap: 30px;
        justify-content: center;
        align-items: center;
    }

    .mc-about-us-description{
        width: calc(100% - 50px);
        margin-top: 10px;
    }

    .mc-about-us-title-div{
        position: absolute;
        left: 0;
        z-index: 1;
        height: auto;
        max-width:55%;
        font-weight: 400;
        font-size: 20px;
        line-height: 31.5px;
        border-top-left-radius: 0;
        border-top-right-radius: 45px;
        justify-content: left;
        bottom: 0;
        padding: 15px 22.5px;
    }

    .single-page-title-span{
        padding-left: 0;
    }

    .mc-about-us-success-story.reverse-layout,
    .mc-about-us-success-story{
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mc-success-story-right{
        flex-grow: 0;
        height: 100%;
        width: 100%;
        padding-left: 0;
    }

    .mc-success-story-left{
        flex-grow: 0;
        width:  calc(100% - 100px);
        padding-left: 0;
    }

    .mc-story-content{
        height: fit-content;
        width: 100%;
        align-items: center;
        
    }

    .mc-success-story{
        margin: 0;
        margin-top: 20px;
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;

    }

    .mc-founder-story{
        width: 100%;
        display: flex;
        height: fit-content;
        justify-content: center;
    }

    .mc-story-div-two{
        width: 50%;
        height: fit-content;
        box-sizing: border-box;
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
    }

    .mc-story-div-three,
    .mc-story-div-one{
     width: 10%;
     height: 100%;
     box-sizing: border-box;
     height: auto;
    }

    .mc-story-div-three{
        display: flex;
        align-items: flex-end;

    }

    .mc-about-us-success-story.reverse-layout,
    .mc-about-us-success-story{
        height: fit-content;
        width: 100%;   
    }

    .our-team-member{
        height: 482px;
        width: 100%; 
    }

    #care-options-owl-single{
        display: none;
    }

    .mc-care-options-items-mobile{
        display: block;
    }

    .mc-services-pharagraph{
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .mc-testimonial-item-single{
        width: 75%;
        height: 380px;
    }

    .mc-load-more-btn{
        display: block;
    }
    .mc-service-container-div.reverse-layout,
    .mc-service-container-div{
        flex-direction: column;
        height: fit-content;
        row-gap: 20px;
    }

    .mc-service-container-div-two.reverse-layout,
    .mc-service-container-div-two{
        flex-direction: column-reverse;
        height: fit-content;
        row-gap: 20px;
    }

    .mc-service-container-content{
        width: 100%;
        height: fit-content;
        
    }
    
    .mc-service-container-image{
        width: 100%;
        height: 400px;
    }

    .mc-service-container-image-two{
        width: 100%;
    }

    .mc-single-section-title-mobile{
        font-size: 25px;
        font-weight: 500;
        line-height: 31.5px
    }

    .mc-single-section-title2-mobile{
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        line-height: 31.5px;
        margin-bottom: 20px;
    }

    .story-content-list{
        width: 100%;
        height: 70%;
        margin-top: 15%;
        padding-left: 12%;
        padding-right: 12%;
    }

    .story-descrtiption p{
        line-height: 28px;
    }

    .read-story-div a{
        font-size: 24px;
        font-weight: 400;
        line-height: 28px;
    }

    .care-story-image{
        height: 132px;
        width: 132px;
    }

    .mc-care-stories-section{
        height: 400px;
    }

    .care-story-content{
        height: 360px;
        margin-top: 60px;
    }

    .care-story-item{
        width: 100%;
    }

    .mc-service-content-pharagraph{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .mc-case-study-description{
        width: 100%;
        text-align: start;
        padding-left: 0;
        padding-right: 0;
    }

    #care-story-item-single{
        width: 100%;
    }

    .mc-wellness-story-list-div{
        width: 100%;
    }
    .mc-single-study-con-2.reverse-layout,
    .mc-single-study-con-2{
        margin-top: 30px;
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mc-study-con-2-left{
        width: 100%;
        height: 100%;
    }

    .mc-study-con-2-right-image{
        display: none;
    }
    
    .mc-study-con-2-right-image-mobile{
        display: block;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .mc-study-con-2-left-content p{
        line-height: 24px;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .mc-study-speech-container{
        height: 300px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .sppech-content-message{
        width: 100%;
    }

    .mc-service-container-div-two.reverse-layout,
    .mc-service-container-div.reverse-layout,
    .mc-service-container-div-two,
    .mc-service-container-div{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .mc-service-container-div-three{
        margin-bottom: 80px;
    }

    
    
    .mc-faq-question-icon{
        width: 3%;  
    }
    
    .mc-faq-question-content-container {
        width: 94%;
    }

    .mc-service-search{
        width: 100%;
      }

    .mc-footer-logo-mobile img{
        margin-top: 0;
        margin-left: 25%;
        height: 40%;
        width: 75%;
    }

    .pg-temp-about-title{
        width: 100%;
    }

    .mc-hero-section{
        height: calc(100vh - 110px);
    }

    .contact-us-content-right .wpcf7-spinner {
        position: relative;
        top: 0;
        margin: 0;
        color: #000;
    }

    .mc-FAQs-section{
        margin-top: 60px;
    }

    .mc-search-component {
        height: fit-content;
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Align items to the left */
        margin-bottom: 60px;
        margin-top: 30px;
        gap: 25px; /* Add spacing between items */
    }

    .mc-search-component > * {
        flex: 1 1 80%;
        max-width: 80%; /* Ensures 3 items per row on smaller screens */
    }

    #mc-section-title-desktop{
        width: 100%;
    }

    .mc-search-component-2 > * {
        flex: 1 1 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mc-blog-overlay-card{
        height: 46%;
        padding: 15px;
    }
    
}

@media (max-width: 475px) {

    .container{
        width: calc(100% - 15px);
    }

    .hero-section-main-con{
        width: calc(100% - 25px); 
        
    }

    .input-container input {
        width: 70%; 
    }

    .mc-footer-btn{
        width: 25%;  
    }

    .footer-navigation-container{
        width: 50%;
    }

    .mc-footer-btn{
        font-size: 14px;
        line-height: 20px;
        
    }

    .hero-section-main-con .mc-hero-title{
        padding: 0 25px;
        font-size: 41px;
        line-height: 48px;
    }

    .support-section-button{
        width: 60%;  
    }

    .mc-support-section{
       margin-top: 20px;
    }

    .testimonials-description{
        width: 100%;
        line-height: 27px;
        font-size: 16px;
    }

    .testimonials-author-name{
        line-height: 28px;
    }

    .mc-testimonial-item{
        padding: 25px;
    }

    #testimonials-owl .owl-stage{
        margin-bottom: 20px;
    }


    .contact-left-title{
        font-size: 25px;
        line-height: 31px;
        font-weight: 500;
    }
    
    .contact-left-description{
        font-size: 14px;
        font-weight: 300;
        line-height: 18px;
        width: 100%;
    }

    .contact-left-description span{
        width: 100%;
       
    }

    .contact-us-left-info-section{
        width: 100%;
        height: 75%;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    
    .contact-left-whatsapp{
        font-size: 28px;
        font-weight: 600;
        line-height: 36px;
    }

    .mc-about-us-item-container{
        width: 100%;
        height: fit-content;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    #mc-section-title-desktop{
        display: none;
    }

    #mc-section-title-mobile{
        display: block;
        width: 100%;
    }

    .mc-about-us-background-image{
    
        height: 167px;
        
    }

    .mc-success-story-left{
        flex-grow: 0;
        width: 100%;
        padding-left: 0;
    }

    .mc-story-div-three,
    .mc-story-div-one{
     width: 15%;
     height: auto;
    }

    .mc-story-div-two{
        width: 70%;
        height: fit-content;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mc-services-pharagraph{
        padding-left: 0;
        padding-right: 0;
    }

    .mc-about-us-title-div{
        width: 60%;
    }

    .single-page-title-span{
        padding-left: 0;
    }

    .mc-testimonial-item-single{
        width: 100%;
        height: 332px;
    }

    .mc-service-container-image{
        width: 100%;
        height: 200px;
    }

    .story-content-list{
        width: 100%;
        height: 70%;
        margin-top: 20%;
        padding-left: 12%;
        padding-right: 12%;
    }

    .story-descrtiption p{
        font-size: 16px;
        line-height: 26px;
    }

    .read-story-div a{
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .care-story-image{
        height: 132px;
        width: 132px;
    }

    .mc-care-stories-section{
        height: 400px;
    }

    .care-story-content{
        height: 340px;
        margin-top: 60px;
    }

    .mc-care-stories-section{
        margin-top: 10px;
    }

    .mc-study-con-2-right-image-mobile{
        height: 412px;
    }

    .mc-single-study-con-2.reverse-layout,
    .mc-single-study-con-2{
        margin-top: 0;
    }

    .mc-study-speech-container{
        height: 450px;
        padding-left: 2%;
        padding-right: 2%;
        justify-content: space-evenly;
    }

    .sppech-content-message{
        
        font-size: 21px;
        line-height: 34px;
        font-weight: 500;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .speech-comma-image-one{
        width: 12%;
        height: 100%;    
        padding-top: 5px;
    }
    
    .speech-comma-image-one img{
        width: 100%;
        object-fit: contain;
    }
    
    .speech-comma-image-two{
        width: 12%;
        height: 100%;
        padding-bottom: 5px;
    }

    .mc-single-study-con-1{
        margin-bottom: 30px;
    }

    .mc-single-study-con-2.reverse-layout,
    .mc-single-study-con-2{
        margin-bottom: 30px;
    }

    .mc-hero-section-content{
        margin-bottom: 20px;  
    }

    .speech-main-container{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
    }

    .mc-footer-logo-mobile img{
        margin-left: 10%;
        height: 70%;
        width: 100%;
    
    }

    .contact-us-links-section{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-div-social-icons{  
        width: 60%;  
    }
    .pg-temp-about-post-title,
    .pg-temp-about-title{
        width: 100%;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }

    .wpcf7 input[type="submit"],
    .contact-form-submit-btn{
        margin: 20px auto;
        margin-bottom: 10px;
        
    }

    .contact-us-content-right {
        gap: 10px;
        padding: 30px;
        padding-bottom: 10px;
    }

    .contact-us-content-right .wpcf7-spinner {
        position: relative;
        top: 0;
        margin: auto;
        color: #000;
    }

    .mc-search-component > * {
        flex: 1 1 100%;
        max-width: 100%; 
    }

}

@media (max-width: 391px) {
    .mc-section-title{
        width: calc(100% - 90px);
    }

    .wpcf7 input[type="submit"],
    .contact-form-submit-btn{
        width: 100%;
    }

    .contact-left-whatsapp{
        font-size: 22px;
        font-weight: 600;
        line-height: 36px;
        margin-top: 6px;
    }

    .story-descrtiption p{
        font-size: 16px;
        line-height: 22px;
    }

    .story-content-list{
        width: 100%;
        height: 70%;
        margin-top: 25%;
        padding-left: 8%;
        padding-right: 8%;
    }

    .mc-about-us-title-div{
        width: 70%;
    }

    .support-section-button{
        width: 70%;  
    }

    .hero-section-main-con .mc-hero-title{
        padding: 0;
    }

    
}


.single-post .post-conten .editor-content p{
    color: rgb(79, 79, 79);
}


.mc-care-study-single-phara p{
    color: rgb(79, 79, 79);
    font-weight: 300 !important;
}

.mc-care-study-single-phara span{
    color: rgb(79, 79, 79);
    font-weight: 300 !important;
}


.fancybox-iframe, .fancybox-video {
    width: fit-content;
    margin: 0 auto;
}

#crumbs {
    white-space: nowrap; /* Prevent wrapping of breadcrumb items */
    overflow: hidden; /* Hide overflow if necessary */
    text-overflow: ellipsis; /* Optionally add ellipsis if content overflows */
}

@media (max-width: 600px) {
    #crumbs {
        white-space: nowrap; /* Prevent wrapping on small screens */
        overflow: hidden;
        text-overflow: ellipsis; /* Optional, if you want to show ellipsis for overflow */
    }
}



.single-service-page-video i{
    font-size: 80px;
}

.single-service-page-video a{
    display: flex;
    justify-content: center;  /* Horizontally center */
    align-items: center;      /* Vertically center */
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;       /* Ensure the element is positioned absolutely */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering method */
}












