 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: "Montserrat", sans-serif;
 }

 :root {
     --primary-color: #E80A1B;
     --secondary-color: #000000;
     --tertiary-color: #ffffff;
 }

 /* common class  */
 .container {
     max-width: 1186px;
     width: 100%;
     margin: 0 auto;
     padding: 0 15px;
 }

 a {
     display: inline-block;
     text-decoration: none;
 }

 ul {
     list-style-type: none;
 }

 html,
 body {
     overflow-x: hidden;
 }

 .row {
     display: flex;
     flex-wrap: wrap;
     margin: 0 -15px;
 }
.col-25{
    width: 25%;
    padding: 15px 0px;
}
 .col-33 {
     width: 33.33%;
     padding: 0 15px;
 }

 .col-40 {
     width: 40%;
     padding: 0 15px;
 }

 .col-50 {
     width: 50%;
     padding: 0 15px;
 }

 .col-60 {
     width: 60%;
     padding: 0 15px;
 }

 .col-100 {
     width: 100%;
     padding: 0 15px;
 }

 .btn {
     padding: 11px 22px;
     border-radius: 10px;
 }

 /* header section  */
 .hdr-sec {
     padding: 15px 0;
     position: relative;
 }

 nav,
 .navbar-collapsed,
 .navbar-collapsed>ul {
     display: flex;
     align-items: center;
 }

 .nav-logo {
     max-width: 210px;

 }

 .nav-logo>a>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .nav-logo:hover {
     transition: 0.5s linear;
     transform: translateY(2px);
 }

 .nav-links {
     margin-left: 90px;
     font-size: 18px;
     color: var(--primary-color);
 }
 .nav-links{
    position: relative;
 }

 .nav-links:hover {
    
     transform: translateY(2px);
     transition: 0.5s linear;
 }
  .nav-links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  
}
.nav-links:hover::after {
  width: 100%;
  transition: 0.6s linear;
}

 .primary-btn {
     font-size: 14px;
     font-weight: 500;
     /* font-family: ; */
     background-color: var(--primary-color);
     color: var(--tertiary-color);
     margin-left: 90px;
 }

 .primary-btn:hover {
     border: 1px solid var(--primary-color);
     background-color: transparent;
     color: var(--primary-color);
     transition: 0.5s linear;
     transform: translateY(2px);
 }

 .navbar-toggler {
     display: none;
 }

 /* banner section  */
 .banner-sec {
     padding: 15px 0px;
     min-height: 60vh;
     background: url('../assets/bannerimg.png') no-repeat center/cover;
     background-blend-mode: overlay;

 }

 .banner-icon {
     margin: 90px 0px 0px 38px;
 }

 span {
     color: var(--tertiary-color);
     margin: 90px 0px 0px 12px;
     font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;

 }

 .banner-content h1 {
     font-size: 50px;
     font-weight: 600;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     max-width: 580px;
     margin: 0px 0px 0px 38px;

 }

 .word1 {
     background-color: var(--primary-color);
     font-size: 40px;
     font-weight: 600;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 5px;
      
 }

 .banner-content p {
     font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: #F0F0F0;
     max-width: 531px;
     margin: 36px 0px 0px 38px;
 }

 .banner-btn-1 {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     background-color: var(--primary-color);
     color: var(--tertiary-color);
     margin: 36px 0px 41px 38px;
     padding: 15px 20px;
     border-radius: 10px;
 }

 .banner-btn-1:hover {
     border: 1px solid #ffffff;
     background-color: var(--primary-color);
     color: var(--tertiary-color);
     transition: 0.5s linear;
     transform: translateY(2px);
 }

 .banner-btn-2 {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     border: 1px solid #ffffff;
     background-color: transparent;
     color: var(--tertiary-color);
     margin: 0px 0px 0px 16px;
     padding: 15px 40px;
     border-radius: 10px;
 }

 .banner-btn-2:hover {
     transition: 0.5s linear;
     transform: translateY(2px);
 }

 /* facilities section  */
 .facilities-sec {
     padding: 50px 0px;
     background-color: #FFE8E9;
 }

 .facilities-box {
     background-color: var(--tertiary-color);
     border-radius: 10px;
      box-shadow: 5px 5px 19px #e87b84;
    padding: 30px 0px 0px 0px;
 }

 .facilities-img {
     background-color: #DCDCDC;
     border-radius: 100px;
     max-width: 80px;
     height: 80px;
     margin: 0 auto;
    
 }

 .facilities-img img {
     padding: 22px 22px;
     margin: 0 auto;
 }
 .facilities-img img:hover {
  transform: rotate(20deg);
  transition: 0.5s linear;
  cursor: pointer;
}

 .facilities-box h2 {
     font-size: 16px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     max-width: 249px;
     color: var(--secondary-color);
     margin: 0 auto;
     text-align: center;
     padding: 24px 0px 0px 0px;
 }

 .facilities-box p {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     max-width: 204px;
     color: #6A6A6A;
     margin: 0 auto;
     text-align: center;
     padding: 12px 0px 30px 0px;
 }

 /* service section  */
 .service-sec {
     padding: 50px 0px;
 }

 .service-sec p {
     font-size: 16px;
     font-weight: 300;
     font-family: "Montserrat", sans-serif;
     color: var(--primary-color);
     text-transform: capitalize;
     margin: 50px 0px 0px 0px;
 }

 .service-sec h2 {
     font-size: 34px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     text-transform: capitalize;
     max-width: 504px;
     margin: 16px 0px 0px 0px;

 }

 .service-btn {
     display: flex;
     justify-content: end;
     align-items: end;

 }

 .arrow-left {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid #000000;
     background-color: transparent;
 }

 .arrow-left:hover {
     transition: 0.5s linear;
     transform: translateY(2px);
     cursor: pointer;
 }

 .arrow-right {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: var(--secondary-color);
     color: var(--tertiary-color);
     margin-left: 10px;
 }

 .arrow-right:hover {
     transition: 0.5s linear;
     transform: translateY(2px);
     cursor: pointer;
 }

 .service-box {
     margin: 49px 0px 0px 0px;
     position: relative;

 }


 .view-details {
     position: absolute;
     right: 1%;
     background-color: var(--secondary-color);
     width: 80px;
     height: 80px;
     border-radius: 20px;
     padding: 12px 14px;
 }

 .view-details:hover {
     transition: 0.5s linear;
     transform: translateY(3px);
 }

 .service-content {
     max-width: 90%;
     position: absolute;
     bottom: 0;
     transform: translate(5%, -20%);
     background-color: #eae5e5;
     backdrop-filter: blur(10px);
     border-radius: 10px;

 }

 .service-content h3 {
     font-size: 18px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     padding: 18px 0px 0px 18px;
 }

 .service-content p {
     font-size: 14px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     max-width: 330px;
     line-height: 1.4rem;
     color: #474747;
     padding: 5px 0px 18px 18px;
 }

 /* about section  */
 .about-sec {
     padding: 50px 0px;
     background-color: #FFE8E9;
 }

 .about-title {
     font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--primary-color);
 }

 .about-content h2 {
     font-size: 34px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     max-width: 504px;
     padding: 16px 0px 0px 0px;
 }

 .about-description {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: #6A6A6A;
     max-width: 590px;
     padding: 20px 0px 0px 0px;
 }

 .about-list {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     padding: 28px 0px 0px 0px;
     line-height: 1.8rem;
 }
 .about-list li::before{
     content: url('../assets/check-mark.png');
     font-size: xx-large;
    
 }

 .about-btn {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     background-color: var(--secondary-color);
     color: var(--tertiary-color);
     border-radius: 10px;
     margin: 46px 0px 0px 0px;
     padding: 16px 20px;
 }

 .about-btn:hover {
     border: 1px solid var(--secondary-color);
     background-color: transparent;
     color: var(--secondary-color);
     transition: 0.5s linear;
     transform: translateY(3px);
 }

 .about-img {
     max-width: 480px;
 }

 .about-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 hr {
     margin: 46px 0px 0px 0px;
 }

 .about-part p {
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: #6A6A6A;
     max-width: 440px;
     line-height: 1.5rem;
     padding: 20px 0px 0px 0px;
 }

 .about-info h3 {
     font-size: 40px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--primary-color);
     padding: 20px 0px 0px 0px;
 }

 .about-info p {
     font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     line-height: 1.3rem;
 }

 /* medical section */
 .medical-sec {
     padding: 50px 0px;
 }

 .medical-box1 {
     position: relative;
 }

 .medical-img {
     max-width: 500px;
 }

 .medical-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .rect {
     position: absolute;
     background-color: #F45561;
     max-width: 500px;
     bottom: 0%;
     border-radius: 0px 0px 10px 10px;
 }

 .rect h2 {
     font-size: 20px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 32px 0px 0px 54px;
 }

 .rect p {
     font-size: 13px;
     font-weight: 400;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 7px 0px 32px 54px;
 }

 .medical-box2 {
     background-color: #F45561;
     max-width: 500px;
     border-radius: 10px 10px;
 }

 .doctor-img {
     max-width: 240px;
     margin: 0px 0px 0px 140px;
     
 }

 .doctor-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* margin: 0 auto;
     text-align: center; */
 }

 .medical-box2 h2 {
     font-size: 24px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     max-width: 370px;
     padding: 36px 0px 0px 0px;
 }

 .medical-box2 p {
     font-size: 14px;
     font-weight: 400;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     max-width: 330px;
     line-height: 1.2rem;
     padding: 10px 0px;
    margin: 0 auto;
    text-align: center;
 }

 /* wellness section  */
 .wellness-sec {
     padding: 50px 0px;
     background-color: #F2F2F2;
 }

 .wellness-img {
     max-width: 502px;
 }

 .wellness-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 
 .wellness-content h2 {
     font-size: 34px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     max-width: 408px;
 }

 .wellness-content p {
     font-size: 14px;
     font-weight: 400;
     font-family: "Montserrat", sans-serif;
     color: #4A4A4A;
     max-width: 500px;
     padding: 12px 0px 32px 0px;
 }

 .wellness-btn {
     background-color: var(--secondary-color);
     color: var(--tertiary-color);
     padding: 16px 20px;
     border-radius: 10px;
 }

 .wellness-btn:hover {
     border: 1px solid #000000;
     background-color: transparent;
     color: var(--secondary-color);
     transition: 0.5s linear;
     transform: translateY(2px);
 }
 /* experts section  */
 .experts-sec{
    padding: 50px 0px;
 }
 .experts-sec p{
      font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--primary-color);
     text-transform: capitalize;
 }
 .experts-sec h2{
      font-size: 36px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     max-width: 703px;
     color: var(--secondary-color);
     text-transform: capitalize;
 }
 .expert-box img{
    margin: 40px 0px 0px 0px;
 }
 .expert-box{
    position: relative;
 }
 .arrow-btn{
     position: absolute;
     bottom: 2%;
    right: 2%; 
     background-color: var(--primary-color);
     /* width: 50px;
     height: 50px;  */
     border-radius: 10px;

     
 }
 .arrow-btn img{
    margin: 8px 8px;

 }
 .arrow-btn:hover{
    transform: translateY(2px);
 }
 .expert-content{
     position: absolute;
     bottom: 8%;
     background-color: var(--tertiary-color);
    
    min-height: 6vh;
     margin: 0px 0px 0px 19px;
     padding: 10px 5px;
       border-radius: 10px 0px 10px 0px;
 }
 .expert-content p{
      font-size: 14px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
 }
 .swiper-button-next,
.swiper-button-prev {
  display: none !important;
}
.swiper-slide {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.swiper-pagination {
  display: none;
}
 /* testimonial section  */
 .testimonial-sec{
    padding: 50px 0px;
    background-color: #FFE8E9;
   
 }
.testimonial-box{
    background-color: var(--tertiary-color);
    border-radius: 20px;
    max-width: 440px;
    
   
}
 .testimonial-box1{
    display: flex;
justify-content: space-between;
    align-items: center; 
    
 }
.box1,
.box2 {
  flex: 1;                 /* Equal width */
  height: 120px;           /* Same height */
  border-radius: 12px;
  padding: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 

 .box1{
    background-color: #F45561;
    border-radius: 13px;
     margin:20px 0px 0px 20px;
    padding: 27px 20px;
 }
 .box1 img{
    max-width: 25px;
    margin: 15px 0px 0px 0px;
 }
 .box1 h2{
    font-size: 24px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 6px 0px 0px 0px;
}
.box1 p{
    font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 5px 10px 10px 0px;
     
} 
  .box2{
   background-color: #FF737E;
    border-radius: 13px;
   margin:20px 0px 0px 20px;
   padding: 27px 20px;
}
.box2 img{
    max-width: 150px;
     margin: 20px 20px 0px 0px;
}
 .box2 h2{
    font-size: 24px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 6px 0px 0px 0px;
}
.box2 p{
 font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     padding: 5px 10px 10px 0px;
     
     }
.box3 img{
    max-width: 400px;
    margin: 30px 0px 20px 0px;
}
.box3 img img{
     width: 100%;
     height: 100%;
     object-fit: cover;
}
.testimonial-content p{
 font-size: 16px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--primary-color);
}
.testimonial-content h3{
    font-size: 32px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
}
.testimonial-box2{
    background-color: var(--tertiary-color);
    border-radius: 10px;
    max-width: 660px;
    margin: 25px 0px;
     box-shadow: 5px 5px 19px #e87b84;
}
.testimonial-box2 img{
    margin: 12px 0px 0px 41px;
}
.testimonial-box2 p{
     font-size: 14px;
     font-weight: 300;
     line-height: 1.4rem;
     font-family: "Montserrat", sans-serif;
     color: var(--secondary-color);
     margin: 12px 0px 37px 42px;
     max-width: 500px;
}
 .review{
    display: flex;
    justify-content: start;
    align-items: start;
 }
 .review img{
    margin: 10px 0px 38px 31px;
 }
 .review h4{
     font-size: 16px;
     font-weight: 600;
     font-family: "Montserrat", sans-serif;
    margin: 16px 8px;
 }

 .arrow{
    margin-left: 150px;
 }
 /* booking section  */
 .booking-sec{
    padding: 50px 0px;
    background: url(../assets/booking-img.png) no-repeat;
    background-size: cover;
    text-align: center;
    min-height: 366px;
 }
 .booking-sec h2{
     font-size: 34px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     /* margin: 0 auto; */
     text-align: center;
     margin: 40px 0px 0px 0px ;
 }
 .booking-sec p{
     font-size: 20px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     /* margin: 0 auto; */
     text-align: center;
     margin: 25px 0px ;
 }
 .booking-btn{
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
     font-size: 14px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     padding: 14px 20px;
    border-radius: 10px;
  
 }
 .booking-btn:hover{
    transition: 0.5s linear;
    transform: translateY(2px);
    border: 1px solid var(--secondary-color);
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
 }
 /* footer section  */
 .footer-sec{
    padding: 50px 0px ;
    background-color: var(--secondary-color);
 }
 .footer-logo{
    max-width: 214px;
 }
 .footer-logo img{
    width: 100%;
    height:100%;
    object-fit: cover;
 }
 .icons{
    color: var(--primary-color);
    font-size: xx-large;
    margin: 0px 14px;
 }
 .icons:hover{
    color: var(--tertiary-color);
    transform: translateY(2px);
 }
 .footer-hdr{
     color: var(--tertiary-color);
     font-size: 20px;
     font-weight: 700;
     font-family: "Montserrat", sans-serif;
 }
 .links{
     color: var(--tertiary-color);
     font-size: 13px;
     font-weight: 400;
     font-family: "Montserrat", sans-serif;
     line-height: 2.6rem;
 }
 .link1{
     font-size: 13px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     line-height: 2.6rem;
    max-width: 150px;  
 }
 .link2{
    font-size: 13px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     line-height: 2.6rem;
    /* max-width: 200px;  */
 }
 .link3{
    font-size: 13px;
     font-weight: 500;
     font-family: "Montserrat", sans-serif;
     color: var(--tertiary-color);
     line-height: 2.6rem;
    max-width: 335px; 
 }
 .footer-btn{
    color: var(--tertiary-color);
     margin: 30px 0px 0px 0px;
     display: flex;
    justify-content: center;
    align-items: center;
 }
 
 /* header media section  */
 @media screen and (max-width:1200px) {
     .navbar-collapsed {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
          background-color: var(--secondary-color);
          
        
     }
 .nav-logo {
         /* display: none; */
         max-width: 120px;
         margin: 0 auto;
         text-align: center;
     } 
     .navbar-collapsed ul{
        flex-direction: column;
       align-items: center; 
    
       
     }
     .nav-links{
        padding-top: 10px;
        color: var(--tertiary-color);
        font-size: 14px;
          margin: 0 auto;
         text-align: center;
     }
     .primary-btn {
         display: none;
     }

     .navbar-toggler {
         display: block;
         margin-left: auto;
         font-size: 1.2rem;
         color: var(--primary-color);
     }

 }


 /* banner media section  */
 @media screen and (max-width:1200px) {
     .banner-sec {
          width: 100%;
         text-align: center;
         margin: 0 auto; 
        display: flex;
        justify-content: center;
        align-items: center;
    
     }
    
      .banner-content{
        padding-top:200px;
     } 
        .banner-content h1{
     margin: 0 auto;
        text-align: center;
        font-size: 30px;
     }
     .word1{
        margin: 0 auto;
        text-align: center;
        font-size: 30px;
    
     }
    .banner-content p{
     margin: 0 auto;
        text-align: center;
        font-size: 16px;
        margin-top: 10px;
     }
 }

  @media (max-width: 576px) {

    .banner-sec {
        min-height: auto;
        padding: 40px 15px;
        text-align: center;
    }
   
 .banner-icon {
         margin: 0 0 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    
    }

    .banner-icon img {
        max-width: 70px;
    }

    span {
        margin: 0 0px 0px 10px;
        font-size: 17px;
        font-weight: 500;
        
    }

    .banner-content h1 {
        font-size: 25px;
        line-height: 1.3;
        margin: 0 auto 15px;
        max-width: 100%;
    }

     .word1 {
        font-size: 25px;
        padding: 2px 6px;
    } 
    

    .banner-content p {
        font-size: 12px;
        margin: 0 auto 25px;
        max-width: 100%;
    }

    .banner-btn-1,
    .banner-btn-2 {
        display: block;
        margin: 10px auto;
        width: fit-content;
        padding: 12px 24px;
    }

    .banner-btn-2 {
        margin-left: auto;
    }
}

 /* facilities media section  */
 @media screen and (max-width:1200px) {
     .facilities-c {
         width: 50%;
         margin: 0 auto;
         text-align: center;
         margin-top: 20px;
     }
 }

 @media screen and (max-width:758px) {
     .facilities-c {
         width: 50%;
         margin: 0 auto;
         text-align: center;
         margin-top: 20px;
     }
 }

 @media screen and (max-width:576px) {
     .facilities-c {
         width: 100%;
         margin: 0 auto;
         text-align: center;
         margin-top: 25px;
     }
 }

 /* service media section   */
 @media screen and (max-width:1200px) {
    
      .service-sec p{
        margin: 0 auto;
        text-align: center;
      }
       .service-sec h2{
        font-size: 20px;
        margin: 0 auto;
        text-align: center;
      }
      .arrows{
         margin: 0 auto;
        text-align: center;
      
      }
      .service-c{
         width: 100%;
         margin: 0 auto;
         text-align: center;
         display: flex;
         justify-content: center;
         align-items: center;
      }
    
 }
 @media screen and (max-width:991px){
 .service-btn{
        margin-top: 15px;
    }
 }
 @media screen and (max-width:576px){
    .service-box img{
        max-width: 250px;
    }
    .view-details{
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    .service-sec h2{
        font-size: 20px;
        margin-top: 10px;
    }
    .service-btn{
        margin-top: 15px;
    }
 }
 

 /* about media section  */
 @media screen and (max-width:1200px) {
     .about-c {
         width: 100%;
         margin: 0 auto;
         text-align: center;
     }

     .about-content h2 {
         margin: 0 auto;
         text-align: center;
     }

     .about-description {
         margin: 0 auto;
         text-align: center;
     }

     .about-img {
         margin: 0 auto;
         text-align: center;
         max-width: 300px;
         margin-top: 20px;
     }

     .about-part p {
         margin: 0 auto;
         text-align: center;
     }
 }

 @media screen and (max-width:758px) {
     .about-c {
         width: 100%;
         margin: 0 auto;
         text-align: center;
     }

     .about-content h2 {
         margin: 0 auto;
         text-align: center;
         font-size: 22px;
         max-width: 400px;
     }

     .about-description {
         margin: 0 auto;
         text-align: center;
         max-width: 400px;
     }

     .about-img {
         margin: 0 auto;
         text-align: center;
         max-width: 300px;
         margin-top: 20px;
     }

     .about-part p {
         margin: 0 auto;
         text-align: center;
     }
 }

 /* medical media section  */
 @media screen and (max-width:1200px) {
     .medical-c {
         width: 100%;
         margin: 0 auto;
         text-align: center;
         display: flex;
         justify-content: center;
         align-items: center;
         margin-top: 25px;
     }

 }


 .medical-box2 h2 {
     font-size: 18px;
     margin: 0 auto;
     text-align: center;

 }

 @media screen and (max-width: 768px) {

     .medical-sec {
         padding: 40px 20px;
     }

     .row {
         flex-direction: column;

     }

     .col-50 {
         width: 100%;
     }

     .medical-img {
         max-width: 100%;
     }

     .rect {
         max-width: 100%;
         padding-right: 20px;
     }

     .rect h2 {
         font-size: 18px;
         padding: 24px 20px 0 20px;
     }

     .rect p {
         font-size: 13px;
         padding: 10px 20px 24px 20px;
         line-height: 1.4;
     }


     .medical-box2 {
         max-width: 100%;
         padding-bottom: 20px;
     }

     .medical-box2 h2 {
         font-size: 22px;
         max-width: 100%;
         padding: 28px 20px 0;
     }

     .medical-box2 p {
         font-size: 14px;
         max-width: 100%;
         padding: 12px 20px 0;
         line-height: 1.4;
     }

     .doctor-img {
         max-width: 220px;
         margin: 20px auto 0;
     }
 }

 @media  screen and (max-width: 320px) {

     .medical-sec {
         padding: 30px 15px;
     }

     .row {
         flex-direction: column;
     }

     .col-50 {
         width: 100%;
     }

     .medical-img {
         max-width: 100%;
     }

     .rect {
         position: static;
         max-width: 100%;
         border-radius: 0 0 10px 10px;
         padding: 15px;
     }

     .rect h2 {
         font-size: 16px;
         padding: 0 0 8px 0;
     }

     .rect p {
         font-size: 12px;
         padding: 0;
         line-height: 1.4;
     }

     .medical-box2 {
         max-width: 100%;
         margin-top: 20px;
         padding-bottom: 15px;
     }

     .medical-box2 h2 {
         font-size: 18px;
         padding: 20px 15px 0;
     }

     .medical-box2 p {
         font-size: 12px;
         max-width: 100%;
         padding: 10px 15px 0;
         line-height: 1.4;
     }

     .doctor-img {
         max-width: 180px;
         margin: 15px auto 0;
     }
 }
 /* wellness media section  */
 @media screen and (max-width:1200px){
    .wellness-c{
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
 }
  @media screen and (max-width:991px){
    .wellness-content h2{
        font-size: 22px;
        margin: 0 auto;
        text-align: center;
        margin-top: 15px;
    }
    .wellness-img{
        max-width: 400px;
    }
    .wellness-content p{
        font-size: 12px;
    }
  }
   @media screen and (max-width:576px){
    .wellness-content h2{
        font-size: 18px;
    }
   }
  /* expert media section  */
    @media screen and (max-width:1200px){
   .experts-sec p{
    margin: 0 auto;
    text-align: center;
   }
    .experts-sec h2{
    margin: 0 auto;
    text-align: center;
    font-size: 25px;
   }
   
    /* .expert-c{
        width: 100%;
        margin: 0 auto;
        text-align: center;
         display: flex;
        justify-content: center;
        align-items: center;
    }
    .arrow-btn{
        position: absolute;
        right: 3%;
    } */
   }
     @media screen and (max-width:576px){
       .experts-sec h2 {
        font-size: 20px; 
        margin-top: 10px;
       }
     } 

   /* testimonial media section  */
    @media screen and (max-width:1200px){
        .testimonial-c{
              width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        }
    }
     @media screen and (max-width:991px){
 .testimonial-c{
              width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        }
     }
    @media screen and (max-width:758px){
        .testimonial-c{
              width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        }
        
         .testimonial-box1{
             margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        }
        .box1 img{
            margin: 0 auto;
            text-align: center;
        }
        .testimonial-content p{
            margin-top: 15px;
            font-size: 12px;
        }
        .testimonial-content h3{
            margin-top: 15px;
            font-size: 18px;
        }
        .testimonial-box2 p{
            font-size: 10px;
             margin: 0 auto;
        text-align: center;
        }
        .box2{
            margin-right: 20px;
        }
        .arrow{
            margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 8px;
        }

    }
 @media screen and (max-width:576px){
    .testimonial-box1{
              width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        }
       
     .box3 img{
        max-width: 300px;
     }
       .testimonial-box2 p{
          margin-top: 10px;
        }
    /* .testimonial-content p{
        margin-top: 30px;
    }
    .testimonial-box2 img{
        margin: 0 auto;
        text-align: center;
        margin-top: 20px;
    }
  
   .review{
     display: flex;
        justify-content: center;
        align-items: center;
   }
    */

 }

    /* booking media section  */
      @media screen and (max-width:1200px){
      .booking-sec{
           /* width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center; */
        background-position: center;

      }
     }
     @media screen and (max-width:758px){
      .booking-sec{
           /* width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center; */
           background-position: center;
      }
     } 
      @media screen and (max-width:576px){
        .booking-sec{
             background-position: center;
        }
        .booking-content h2{
            font-size: 24px;
        }
      }
   /* footer media section  */
    @media screen and (max-width:1200px){
        .footer-c{
            width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center; 
        }
        .footer-logo{
            margin: 0 auto;
        text-align: center; 
        }
        .icons{
           display: none;
        }
        .link2{
            font-size: 13px;
        margin: 0 auto;
        /* text-align: center;  */
        }
        .footer-btn{
           margin: 0 auto;
        text-align: center; 
        margin-top: 20px;  
        }
    }