*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Signika", sans-serif;
}

.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}


.car_title ul{
    display: flex ;
    justify-content: center;
    gap: 20px;
    padding-left: 0px;
    flex-wrap: wrap;
}

.list_points{
    margin-top: -39px;
}

.car_title a{
    text-decoration: none;
}

.top_c i{
    display: none;
}

.car_title ul li a{
    color:#1e5c7d;
    text-decoration: none;
}

.content_title p{
    font-size: 18px;
    color: #676767;
}

.sub_card_cover{
    padding: 29px;
    background-color: #3b7ea138;
}

.card_sub{
    max-width: 450px;
    height: 100%;
    background-color: #91bfe117;
    padding: 20px;
    min-height: 490px;
}

.ser_cover{
    background-color: #d1e7f7;
    padding: 10px;
    border-radius: 10px;
}

.ser1_con{
    padding-top: 60px;
    padding-bottom: 60px;
}

.ser1_con2{
    padding-top: 60px;
    padding-bottom: 60px;
}

.main_heading h3{
    font-size: 30px;
    color: #91bfe1;
    margin-top: 16px;
}

.card_sub::before{
    position: absolute;
    content: "";
    top: 61px;
    right: 0px;
    width: 95%;
    height: 1px;
    border-bottom: 2px dotted #256f96;
    background-color: #00000000;
}

.sub_img img{
  border-radius:50px;
}

p{
    font-size: 18px;
    color: #676767;
}

.hero_section{
    position: sticky;
    top: 0px;
    z-index: 9;
    padding-top: 134px;
    /* background: linear-gradient(to right, #91bfe1, rgba(57, 199, 199, 0.375)); */
    background: linear-gradient(to right, rgb(42 109 142 / 62%), rgb(46 234 232 / 21%));
}

.hero_section::after{
    position: absolute;
    content:"";
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background-image:url(../images/waves.png);
    background-position: center;
    background-size: cover;
    z-index:-1;
}

.banner_text{
    max-width: 550px;
    margin: auto;
    background-image: url(../images/dot.png);
    background-position: left;
    background-size:250px;
    background-repeat: no-repeat;
}

.banner_text h1{
    font-size: 55px;
    color: #000;
    font-family: "Bricolage Grotesque", sans-serif;
}

.menu_wrapper{
    padding: 20px 0px;
    position: fixed;
    top: 0px;
    z-index: 99;
    width: 80%;
    margin: auto;
    
}

.inner_bg{
    background: linear-gradient(0deg, rgb(37 111 150 / 0%) 0%, rgb(255 255 255) 100%);
}

.menu_call {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.social ul {
    list-style-type: none;
    display: inline-flex;
    gap: 10px;
    margin-bottom: 0px;
    padding-left: 0px;
}

.social ul li a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.m-list{
    display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 99;
        top: 78px;
}

.m-list ul{
    display: inline-flex ;
        margin: 0px;
        list-style-type: none;
        gap: 20px;
        padding: 15px 20px;
        border-top: 1px solid #fff;
        margin-top: 10px;
}

.m-list ul li a{
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    text-transform: capitalize;
}

.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}

.menu li:first-child {
    margin-left: 0;
}

.menu li a {
  
}

.menu li a:hover,.menu li:hover>a {
    color: #000;
    background: #9ca3da00;
}

.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 170px;
    gap: 0px;
    position: absolute;
    left: 0px;
    background: #ffffff;
    z-index: 99;
    flex-direction: column;
    display: flex;
    transform: translate(0, 20px);
    transition: all 0.2s ease-out;
}

.sub-menu li a{
    padding:12px 13px;
}

.menu ul:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px;
}

.menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    font-size: 12px;
    font-weight: normal;
    display: block;
    color: #000000;
    background: #fff;
}

.menu ul li a:hover,.menu ul li:hover>a {
    background: #91bfe1;
    color: #fff;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

.menu ul ul {
    left: 169px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px,20px);
    transition: all 0.2s ease-out;
}

.menu ul ul:after {
    left: -6px;
    top: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 6px;
    margin-top: -6px;
}

.menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}


.main_link a{
    font-size: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 100;
    padding: 7px;
    border-radius: 31px;
    background-color: #256f96;

}

.main_link a i{
    background-color: #00000000;
    margin-left: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.abt_img_wrapper{
    position: relative;
    z-index:9;

}

.slide_box{
    position: relative;
    overflow: hidden;
    height: 331px;
    width: 100%;
}

.slide_box::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 99;
    left: 0px;
    background: rgb(34,193,195);
    background: radial-gradient(circle, rgba(34, 193, 195, 0) 0%, rgb(255 255 255) 100%);
 }

.abt_cover{
    position: absolute;
    animation: marquee 20s linear infinite;
    display: flex;
        gap: 29px;
      
}

.abt_cover img{
 max-width: 300px;
 border-radius: 10px;
 object-fit: cover;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
  }

.second_sec{
   position: relative;

    /* position: sticky;
    top: 0px; */
    z-index: 99;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top:80px;
    padding-bottom:80px;
    background-color: #ffffff;
    background-image:url(../images/shape1.png);
    background-size: cover;
}


.points{
    position: relative;
    z-index: 99;
    background-color: #fff;
}

.main_heading h2{
    font-size: 50px;
    color: #256f96 !important;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
}

.line_dark hr{
    color:#fff;
}

.copyright a{
    color:#246f96;
    text-decoration:none;
}

.para p{
    font-size: 14px;
    text-align: center;
    color: #000;
}


.services_sec{
    position: relative;
    z-index:99;
    padding-top:80px;
    padding-bottom:80px;
    background-color: #dff1ff;
    background-image: url(../images/wall.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.service_wrapper{
    background-color: #ffffff;
    padding: 41px;
    backdrop-filter: blur(10px);
    border-radius: 36px;
    
}


.serv_box{
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}

.serv_text{
    padding: 5px;
    font-size: 17px;
    color: #757575;
}

.card {
    width: 60%;
    margin: 0 20px;
    box-sizing: border-box;
    background: #dedede;
    min-height: 310px;
    border-radius: 32px;
    position: sticky;
    margin: auto;
    border: 1px solid #256f96;
    font-weight: medium;
    color: #FFF;
    padding: 25px;

  }


  .card_img{
    width: 120px;
    height: 120px;
    background-color: #256f9629;
    padding: 24px;
    border-radius: 59px;
 
  }


  .car_title h4{
    font-size: 25px;
    color: #91bfe1;
  }

  .car_title p{
    font-size: 20px;
  }
  
  .one {
    top: 50px;
    background: #ffffff;
    margin-top: 10px;
  }
  .two {
    top: 80px;
    background: #ffffff;
    margin-top: 10px;
  }
  .three {
    top: 110px;
    background: #ffffff;
    margin-top: 10px;
  }
  
  .four {
    top: 140px;
    background: #ffffff;
    margin-top: 10px;
  }

.serv_img img{
    border-radius:10px;
}

.wel{
    font-weight: 300;
    font-size:15px;
}

.ourteam_secs{
    position: relative;
    z-index:99;
    padding-top:80px;
    padding-bottom:100px;
    background-color: #ffffff;
    background-image: linear-gradient(to bottom, #04293d94, #024b811c), url(../images/l4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.total h4{
    font-size:45px;
    color: #256f96;
    margin-bottom: 0px;
}

.ourteam_sec{
    position: relative;
    z-index:99;
    padding-top:80px;
    padding-bottom:80px;
    background-color: #ffffff;
    background-image: url(../images/dot.png);
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: right;
    background-attachment: fixed;

}

.topw {
    padding: 6px 12px;
    background-color: #256f96;
    border-radius: 16px;
    color: #ffffff;
    height: fit-content;
}

.top_c ul li img {
    width: 20px;
}

.top_c ul li a {
  text-decoration: none;
  color:#fff;
}

.top_c ul li a:hover {
    text-decoration: none;
    color:#fff;
  }
  

.blur_wrapper{
    background-color: #ffffff1f;
    backdrop-filter: blur(42px);
    padding: 20px;
    border-radius:20px;
}

.why_us{
    position: relative;
    z-index: 99;
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #dff1ff;

}

.point_cover{
    background-color: #246f96;
}

.point_wrapper{
    max-width: 550px;
    padding: 44px;
}

.point_wrapper h3{
  font-size: 40px;
  color:#91bfe1;
}

.number_one{
    width:120px;

}

.card_wr{
padding:20px;
}

.card_wr1{
    background-color: bisque;
}

.right{
    width:200px;
    height:200px;
}

.no1{
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #9dc3da00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid #cdeeff;
}

.ourteam_secs:after{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background-color: #91bfe1;
    top: 0px;
    left: 0px;
    z-index: -1;
}


.number_cover{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.number_text h5{
    font-size: 25px;
    color: #91bfe1;
}

.team_card{
    background-color: #91bfe163;
    padding: 26px;
    padding-bottom: 0px;
    border-radius: 25px;
    box-shadow: rgb(0 0 0 / 11%) 0px 3px 8px;
    margin-top: 136px;

}

.new_arrivals .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 45px;
    height: 45px;
    border-radius: 27px;
    background-color: #91bfe1;
    font-size: 21px !important;
    color: #ffffff !important;
    user-select: none;
}

.new_arrivals .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 45px;
    height: 45px;
    border-radius: 27px;
    background-color: #91bfe1;
    font-size: 21px !important;
    color: #ffffff !important;
    user-select: none;
}

.owl-nav{
    display: flex;
    justify-content: center;
}

.teamtext p{
    font-size: 18px;
}


.teamtext h5{
    font-size: 20px;
    color: #91bfe1;
}


P.scr {
    text-align: left !important;
    height: 183px;
    overflow-y: scroll;
    font-weight: 300;
    color:#292525;
}

.style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
	border-radius: 10px;
	background-color: #ffffff00;
}

.style-2::-webkit-scrollbar
{
	width: 4px;
	background-color: #f5f5f500;
}

.style-2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
	background-color: #ffffff40;
}

.teamimg{
    position: relative;
}

.team_img_bx{
    position: absolute;
    min-width: 352px;
    left: -138px;
    bottom: 0px;
}

.inner_section{
    position: relative;
    top: 0px;
    /* min-height:450px; */
    z-index: 9;
    /* background: linear-gradient(to right, #91bfe1, rgba(57, 199, 199, 0.375)); */
    background: linear-gradient(to right, rgb(42 109 142 / 62%), rgb(46 234 232 / 21%));
}

.inner_section::after{
    position: absolute;
    content:"";
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background-image:url(../images/waves.png);
    background-position: center;
    background-size: cover;
    z-index:-1;
}

.inner_banner_img{
    position: relative;
}

.inner_banner_img img{
    position: relative;
    min-height: 474px;
    width: 101%;
    object-fit: cover;
}

.inner_banner_img::after{
    position: absolute;
    content: "";
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(0deg, rgb(37 111 150 / 0%) 0%, rgb(255 255 255) 100%);
}

.new_arrivals .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 45px;
    height: 45px;
    border-radius: 27px;
    background-color: #91bfe1;
    font-size: 21px !important;
    color: #ffffff !important;
    user-select: none;
}

.new_arrivals .owl-carousel .owl-nav{
position: absolute;
display: flex;
justify-content: center;
bottom: -43px;
right: 10%;
margin-bottom: 14px;
}


.list_points ul {
    list-style-type: none;
    padding-left: 0px;
    font-size: 17px;
    color: #575757;
}

.list_points ul li{
    margin-top:15px;
}

.before_af_img {
    width:450px;
    margin: auto;
}

.bg_cover{
    background-color: #91bfe13b;
    padding: 20px;
    border-radius: 30px;
    height: 100%;
}

.inner-header{
    background-color: #000000;
}

.surgry p{
    font-size: 14px;
    color: #256f96;
    margin-top: 12px;
    text-transform: capitalize;
}

.side_text h2 {
    font-size: 37px;
    color: #256f96 !important;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
}

.vap_img{
    max-width: 350px;
    margin: auto;
}

.side_text{
    max-width:450px;
}

.video_cover{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_text{
    position: absolute;
}

.video_text i{
    font-size:50px;
    color:#ffffff;
}

.video_text a{
    text-decoration: none;
}

.side_text ul{
    padding-left:0px;
    list-style-type: none;
}

.side_text ul li{
    font-size: 18px;
    color: #1e5c7d;
}

.video_cover img{
    border-radius: 48px;
}

.surgry img{
    border-radius:20px;
}

.footer_sec{
    position: relative;
    z-index:99;
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #91bfe1;
}


.con_cover {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 28px;
}

.contact-icon i {
    color: #ffffff;
    font-size: 20px;
}

.single_footer ul li a {
    color: #ffffff;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.single_footer h4 {
    color: #246f96;
    margin-top: 0;
    margin-bottom: 3px;
    margin-top: 20px;
    font-size: 23px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 14px;

}

.footer-social-link li {
    display: inline-block;
}

.custom-shape-divider-top-1733486340 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1733486340 svg {
    position: relative;
    display: block;
    width: calc(121% + 1.3px);
    height: 120px;
}

.custom-shape-divider-top-1733486340 .shape-fill {
    fill: #FFFFFF;
}

.rows {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .columns {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .columns img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 20px;
  }


  .offcanvas-start {
    top: 0;
    left: 0;
    width: 312px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%);
}

.side-bar .menu{
    width: 100%;
    margin-top: 30px;
   }
   
   .side-bar .menu .item{
    position: relative;
    cursor: pointer;
   }
   
   .side-bar .menu .item a{
    color: #256f96;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 5px;
    text-transform: uppercase;
    line-height: 36px;
   }
   
   .side-bar .menu .item a:hover{
    background: #33363a00;
    transition: 0.3s ease;
   }
   
   .side-bar .menu .item i{
    margin-right: 15px;
   }
   
   .side-bar .menu .item a .dropdown{
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
   }
   
   .side-bar .menu .item .sub-menu{
    background: #26262700;
    display: none;
   }
   
   .side-bar .menu .item .sub-menu a{
    padding-left: 29px;
    font-size: 14px;
    color: #56869f;
   }

   .sub-menu li{
    width:100%;
   }

   .offcanvas-start {
    top: 0;
    background-image: url(../images/waves.png);
    background-position: center;
    background-size: cover;
    left: 0;
    width: 312px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    background: linear-gradient(to right, rgb(195 221 233), rgb(146 231 230));
    transform: translateX(-100%);
}
   
   .rotate{
    transform: rotate(90deg);
   }
   

  @media only screen and (max-width: 900px) {
    .main_heading h2 {
        font-size: 28px;
        color: #256f96 !important;
        text-align: center;
        font-family: "Bricolage Grotesque", sans-serif;
    }


    .number_cover {
        display: flex ;
        justify-content: flex-end;
        align-items: flex-start;
        flex-direction: column;
    }
    
    

    .side_text h2 {
        font-size: 28px;
        color: #256f96 !important;
        text-align: center;
        font-family: "Bricolage Grotesque", sans-serif;
    }


    .point_wrapper h3 {
        font-size: 28px;
        color: #91bfe1;
    }

    .banner_text h1 {
        font-size: 32px;
        color: #000;
        font-family: "Bricolage Grotesque", sans-serif;
    }

    .main_link a i {
        background-color: #00000000;
        margin-left: 5px;
        width: 35px;
        height: 35px;
        display: flex ;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        border-radius: 50%;
        border: 1px solid #ffffff;
    }

    .card {
        width: 100%;
        margin: 0 20px;
        box-sizing: border-box;
        background: #ffffff;
        min-height: 310px;
        border-radius: 32px;
        position: sticky;
        margin: auto;
        border: 1px solid #256f96;
        font-weight: medium;
        color: #FFF;
        padding: 25px;
    }

    .main_link a {
        font-size: 17px;
        text-decoration: none;
        display: flex ;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        font-weight: 100;
        padding: 7px;
        border-radius: 31px;
        background-color: #256f96;
    }

    .ourteam_secs:after {
        position: absolute;
        content: "";
        width: 0%;
        height: 100%;
        background-color: #91bfe1;
        top: 0px;
        left: 0px;
        z-index: -1;
    }

    .top_c ul{
        display: none;
    }

    .top_c i{
        display: block;
    }

    .team_card {
        background-color: #91bfe163;
        padding: 26px;
        padding-bottom: 0px;
        flex-direction: column;
        border-radius: 25px;
        box-shadow: rgb(0 0 0 / 11%) 0px 3px 8px;
        margin-top: 27px;
    }

    .team_img_bx {
        position: relative;
        min-width: 352px;
        left: 0;
        bottom: 0px;
    }

    .team_img_bx img{
        max-width:250px;
    }



  }


  @media screen and (max-width: 860px){
    .m-list{
        display: none;
    }


    .inner_banner_img img {
        position: relative;
        min-height: 360px;
        width: 101%;
        object-fit: cover;
    }

    .menu_wrapper {
        padding: 20px 0px;
        position: fixed;
        top: 0px;
        z-index: 999;
        width: 80%;
        margin: auto;
    }

    .sof{
        visibility: hidden;
    }
    .inner_bg {
        background: linear-gradient(0deg, rgb(37 111 150 / 0%) 0%, rgb(255 255 255 / 0%) 100%);
    }
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .columns {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }

    .new_arrivals .owl-carousel .owl-nav {
        position: absolute;
        display: flex
    ;
        justify-content: center;
        bottom: -43px;
        right: 1%;
        margin-bottom: 14px;
    }

    .second_sec {
        position: relative;
        z-index: 99;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        padding-top: 40px;
        padding-bottom: 80px;
        background-color: #ffffff;
        background-image: url(../images/shape1.png);
        background-size: cover;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .columns {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }