/* Reset some default styles for HTML elements */
html, body, div, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    color: #2F3032;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
body.fixed header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: #1D1E20;
}
/* Header styles */
/* Reset some default styles for the list and anchor tags */
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* Basic header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1D1E20;
/*    padding: 10px 20px;*/
    color: #fff;
}

.header-logo img {
/*    max-width: 100px;*/
}

.header-nav ul {
    display: flex;
    grid-gap: 38px;
}
.header-nav li{
    position: relative;
}
.header-nav li a{
    font-family: 'Poppins', sans-serif;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    padding: 30px 0;

}

.header-nav > li:last-child {
    display: none;
}
.header-nav > li:last-child a{
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background-color: #51B748;
    padding: 20px;
    display: inline-block;
}
.header-nav .sub-menu {
    display: none;
    position: absolute;
    background: #1D1E20;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 23px 18px;
    width: max-content;
    top: 83px;
    z-index: 99;
}
.header-nav .sub-menu li{
    border-bottom: 1px solid #FFFFFFCC;
    margin-bottom: 16px;
}
.header-nav .sub-menu li:last-child{
    border: none;
    margin-bottom: 0px;
}
.header-nav .sub-menu li:last-child a{
    padding-bottom: 0;
}
.header-nav .sub-menu li a{
    padding-bottom: 17px;
    padding-top: 0;
}
.header-nav li.bt-arrow img{
    transition: 0.6s;
}
.bt-arrow.active img{
    transform: rotate(180deg) !important;
    transition: 0.6s;
}
.header-nav li:hover .sub-menu {
    display: block;
}

.cta-button a {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background-color: #51B748;
    padding: 18px 20px;
    display: inline-block;
    border-radius: 50px;
}

/* Hide the menu on default */
.header-nav ul {
    display: flex; /* Display the menu as a horizontal list */
}

/* Show the menu when the hamburger icon is clicked */
.menu-icon {
    display: none;
    cursor: pointer;
}

button#menu-toggle{
    display: none;
}
.header-logo {
    display: flex;
    padding: 16px 30px 15px 25px;
/*    background-color: #2F3032;*/
}
.header-logo img{
    width: 160px;
    height: 53px;
    object-fit: contain;
}
body.stop{
    overflow-y: hidden;
}
@media (min-width: 1101px) {
    .header-nav li:hover span.bt-arrow img{
        transform: rotate(180deg);
    }
    .header-nav li:hover .sub-menu {
        min-width: 250px;
    }
    .header-nav li a.active {
    border-bottom: 3px solid #D9D9D9;
}
}
@media (max-width: 319px){
.banner h1 {
    font-size: 27px !important;
    line-height: 38px !important;
}
.package-des{
    padding-bottom: 80px !important;
}
.franchises-header h3, h3 {
    font-size: 23px !important;
    line-height: 31px !important;
}
.opening-box-iner {
    padding: 18px !important;
    padding-bottom: 20px !important;
}
.carrer-des{
    padding-bottom: 60px;
}
.carrer-des.opening{
    padding-top: 50px !important;
}
}
@media (max-width: 1100px) {
    .menu-icon {
        display: block;
        font-size: 20px;
    }

    ul.sub-menu {
   position: unset !important;
}
    button#menu-toggle{
        display: inline-block;
        position: absolute;
        right: 15px;
        background: transparent;
        border: none;
        font-size: 50px;
        color: #fff;
        padding: 0;
    }
    nav.header-nav > ul.show {
        display: block !important;
        position: absolute !important;
        height: 100vh !important;
        z-index: 9999;
        overflow: auto;
        padding-bottom: 100px;
    }
    span.bt-arrow.active img{
        transform: rotate(180deg);
        transition: 0.6s;
    }

    ul.sub-menu.show-menu{
        display: block !important;
    }
    .header-nav li:hover .sub-menu {
        display: none;
    }
    .cta-button{
        display: none;
    }
    .header-nav > ul {
        display: none;
        flex-direction: column; /* Display the menu items vertically on small screens */
        background-color: #1D1E20; /* Add a background for the mobile menu */
        position: absolute;
        top: 70px; /* Adjust this value as needed to control the menu's vertical placement */
        right: 0;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .header-nav li {
        margin: 12px 0;
    }

    .menu-toggle:checked + .header-nav ul {
        display: flex; /* Display the mobile menu when the checkbox is checked */
    }
    ul.sub-menu.show-menu {
        position: unset;
        width: 100%;
    }
    .header-nav li a{
        padding: 10px 0;

    }
    .header-nav li{
        margin: 0px !important;
        border-bottom: 0.5px solid #ffffff36;
    }
    .header-nav li:last-child a {
        background: #51B748;
    }
    .header-nav li:last-child{
        display: block !important;
    }
    ul.sub-menu.show-menu {
        padding: 10px 0;
        box-shadow: none;
    }
    .header-nav .sub-menu li{
        border: none;
    }
    .header-nav .sub-menu li:last-child a {
        padding-bottom: 17px;
    }
    .header-nav .sub-menu li a{
        border: none;
        opacity: 0.8;
    }
    .header-nav .sub-menu li:last-child a{
        background: none;
    }
}
.header-nav li:last-child{
    display: none;
}
.header-nav .sub-menu li:last-child{
    display: block !important;
}
/* Section styles */
section {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
.container{
    max-width: 1268px;
    margin: 0 auto;
}
/*banner*/
.banner{
    background: url('/assets/images/banner.jpg');
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}
.banner.banner-slider-home{
    background: transparent;
    height: 80vh;
    display: flex !important;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
.banner-slider-content ul.slick-dots {
    position: absolute;
    bottom: 50px;
}
.banner-slider-content{
    margin-bottom: 0 !important;
}
.banner-slider-content .slick-dots li button:before {
    opacity: .70;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 18px;
}
.banner-slider-content .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}
.banner:before{
    content: "";
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.85) 9.06%, rgba(13, 13, 13, 0.50) 66.83%, rgba(13, 13, 13, 0.30) 103.85%);
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner-text {
    position: relative;
}
.banner h1{
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 53px;
    font-style: normal;
    font-weight: 600;
    line-height: 65px;
    padding-right: 40%;
    position: relative;
}
h3{
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 24px;
}
p{
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}
p:last-child{
    margin-bottom: 0;
}
.tr-sec-iner h3 {
    padding-right: 200px;

}
.green-btn{
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    border-radius: 5px;
    background: #51B748;
    padding: 20px 37px;
    border: none;
    cursor: pointer;
    margin-top: 25px;
}
/*Left image right image setion*/
.outer-img-sec {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-gap: 69px;
    align-items: flex-start;
    position: relative;
    z-index: 9;
}
.lft-sec > img{
    width: 100%;
    height: 100%;
    display: flex;
/*    max-width: 634px;*/
object-fit: cover;
}
.lft-rt-con {
    background: #2F3032;
    padding-top: 80px;
    padding-bottom: 94px;
    position: relative;
}
.lft-rt-con:before{
    content: "";
    background: url(/assets/images/icon-rt.png);
    width: 251.383px;
    height: 507.824px;
    position: absolute;
    right: 0;
    top: 20px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    z-index: 1;
}
/*End Left image right image setion*/
/*specialities*/
.specialities{
    background-color: #1D1E20;
    padding-top: 104px;
    padding-bottom: 119px;
}
.specialities-header h3{
    margin-bottom: 37px;
}
.specialities-box-img img{
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
h4{
    color: #FFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 14px;
    margin-top: 0;
}
.specialities-outer {
    /*display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;*/
}
/* Add a margin to the right of each slick slider item */
.specialities-outer .slick-slide,
.management-outer .slick-slide {
    margin-right: 15px; /* Adjust the value as needed */
}

/* To avoid margin on the last item, you can use the :last-child selector */
.specialities-outer .slick-slide:last-child,
.management-outer .slick-slide:last-child{
    margin-right: 0;
}


.box-des.hover-show{
    display: none;
    padding: 0 46px;
    transition: 1s;
}
.box-des.hover-show p{
    font-size: 15px;
    line-height: 23px;
}
.specialities-box:hover .box-des.hover-show{
    display: block;
    transition: 1s;
}
.specialities-box{
    position: relative;
}
.specialities-box-con{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 37.66%, #0D0D0D 100%);
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    border-radius: 10px;
}
.specialities-box:hover .specialities-box-con{
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 32.94%, rgba(13, 13, 13, 0.83) 71.71%, #0D0D0D 100%);
}
.box-title {
    padding: 0 46px;
}
.specialities-box-con-inner {
    width: 100%;
    padding-bottom: 34px;
}
/*End specialities*/
/*Our packages*/
.our-package {
    padding-top: 79px;
    padding-bottom: 100px;
    background: #2F3032;
    mix-blend-mode: multiply;
}
.package-header h3{
    margin-bottom: 33px;
}
.package-inner-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 45px;
    align-items: center;
    background: #030404;
}
.custom-arrow {
    position: absolute;
    background: #2F3032;
    width: 70.472px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 7px;
    cursor: pointer;
    z-index: 9;
}
.custom-arrow.custom-prev-arrow.slick-arrow{
    right: 84px;
}
.custom-arrow.custom-next-arrow.slick-arrow{
    transform: rotate(180deg);
    right: 7px;
}
.package-des h4 {
    margin-bottom: 17px;
}
.package-des {
    padding-right: 100px !important;
    padding: 40px;
    padding-left: 0;
}
.package-des button {
    padding: 14px 40px;
    margin-top: 0;
    font-size: 12px;
    line-height: 15px;
}
.image-package img{
    width: 100%;
    height: 100%;
/*    max-width: 611px;*/
}
/*End Our packages*/
/*testimonials*/
.testmonial {
    padding-top: 105px;
    padding-bottom: 137px;
    background: #1D1E20;
    mix-blend-mode: multiply;
}


.testimonial-inner-outer-text{
    margin-top: 100px;
}
.quote{
    width: 89px;
    height: 60px;
    flex-shrink: 0;
    color: rgba(246, 246, 246, 0.50);
    font-family: 'Cagliostro', sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    transform: translate(-7px, 45px);
}
/* Custom styles for the video container */
.video-container {
    position: relative;
        width: max-content;
}
.testimonial-inner{
    display: grid !important;
}
/* Custom play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 60px;
    height: 60px;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
    /*border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;*/
    cursor: pointer;
}

/* Custom poster image */
.video-poster {
    width: 100%;
}
.video-container {
  width: auto;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 9;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
  /*width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;*/
}
/*div#video-container:hover div#circle-play-b {
    opacity: 1 !important;
}
*/
.testmonial .custom-arrow,
.specialities .custom-arrow{
    bottom: -80px;
    background: #030404;
}
/* Hide the default video controls */
video::-webkit-media-controls {
/*    display: none;*/
}
.cb-video-container {
  position: relative;
}

.video {
  display: block;
}

.play-pause--click-area {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-pause--container {
  position: relative;
  width: 30px;
  height: 30px;
}
.play-pause--container .play-pause--icon {
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
.play-pause--container .play-icon {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-width: 15px;
  border-top-width: 15px;
  border-left: 25px solid #fff;
  cursor: pointer;
}
.play-pause--container .pause-icon {
  background-color: #fff;
  width: 10px;
  height: 30px;
  left: -10px;
  position: absolute;
}
.play-pause--container .pause-icon:after {
  content: "";
  background: inherit;
  width: 10px;
  height: 30px;
  left: 15px;
  position: absolute;
  cursor: pointer;
}


.testimonial-inner {
    /*grid-gap: 24px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;*/
}
.testimonial-video{
    margin: 0 12px;
}
.testimonial-inner .slick-list{
    margin: 0 -12px;
}
.testimonial-con {
    background: #030404;
    padding: 35.91px 66px 37px 66px;
    position: relative;
    margin: 0 12px;
    height: 330px;
}
.testi-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.name {
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.designation {
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.testi-top p {
    margin-bottom: 18px;
    margin-bottom: 18px;
    max-height: 144px;
    min-height: 144px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*End testimonials*/
/*consultation*/
.consultation{
    background-image: url('/assets/images/right-banner.png');
    background-position: right;
    background-repeat: no-repeat !important;
    padding: 67px 0 79px 0;
    background-size: contain !important;
    background-color: #2F3032;
}
.consultation-left {
    width: 60%;
}
.consultation-left p {
    color: #CBCBCB;
    margin-bottom: 10px;
}
.consultation-left h3 {
    margin-bottom: 18px;
}
.consultation-left .green-btn{
    padding: 19px 62px;
    line-height: 18px;
    font-size: 15px;
}
/*End consultation*/
/*Braches*/
.branches {
    background: #1D1E20;
    mix-blend-mode: multiply;
    padding: 51px 0 150px;
}
.branches-box-sec{
    position: relative;
}
.branches-box-sec a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.branches-box {
    padding: 31px 53px 37px 53px;
    background: #323335;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.branches-box-icon img {
    width: 69.635px;
    height: 65.607px;
}
.location-name {
    color: #F9F9F9;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
    min-height: 65px;
}
.branches-inner {
    /*display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;*/
}
/* Add a margin to the right of each slick slider item */
.branches-inner .slick-slide {
    margin-right: 15px; /* Adjust the value as needed */
}

/* To avoid margin on the last item, you can use the :last-child selector */
.branches-inner .slick-slide:last-child {
    margin-right: 0;
}

.branches-header h3 {
    margin-bottom: 31px;
}
/*end branches*/
/*franchises*/
.franchises {
    background: #2F3032;
    mix-blend-mode: multiply;
    padding: 89px 0 102px;
    text-align: center;
    position: relative;
}
.franchises:before{
    content: "";
    background: url('/assets/images/full-circle.svg');
/*    background-size: cover;*/
    background-repeat: no-repeat !important;
    background-position: 100% 36%;
    position: absolute;
    width: 869px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 9;
}
.franchises-header {
    position: relative;
    z-index: 99;
}
.franchises-header h3 {
    margin-bottom: 25px;
}
.franchises-header p {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.franchises-header .green-btn{
    line-height: 18px;
    font-size: 15px;
}
/*end franchises*/
/*terms and condition*/
.terms-condition-section h1 {
    color: #0e0b0b;
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
    margin-bottom: 50px;
    text-align: center;
}
.terms-condition{
    padding: 100px 0;
}
.terms-condition-inner h4{
    color: #0e0b0b;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.terms-condition-section {
    max-width: 850px;
    margin: 0 auto;
}
.terms-condition-inner ul,
.terms-condition-inner ul li{
    list-style-type: disc;
    color: #0e0b0b;
}
.terms-condition-inner ul{
    padding-left: 40px;
    margin-bottom: 20px;
}
.terms-condition-inner ol,
.terms-condition-inner ol li{
    list-style-type: decimal;
    color: #0e0b0b;
}
.terms-condition-inner p{
    color: #0e0b0b;
}
/*end terms and condition*/
/* Footer styles */
footer {
    background: #1D1E20;
    mix-blend-mode: multiply;
    padding: 60px 0 0;
}
.address-outer .address {
    margin-top: 10px;
}
.ft-logo img {
    width: 206px;
    height: 85px;
    margin-bottom: 25px;
}
.footer-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.ft-head h3 {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
}
.ft-menu ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 0px 43px;
    padding-left: 20px;
}
.ft-menu ul li a{
    color: #BABABA;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px; /* 250% */
    position: relative;
}
.ft-menu ul li a:before{
    content: "-";
    position: absolute;
    left: -15px;
}
.left-ft {
    width: 35%;
    padding-right: 44px;
}
.center-sec {
    width: 39%;
    padding-right: 79px;
}
.ft-rt{
    width: 25%;
}
.footer-inner .socail-media {
    margin-top: 25px;
}
.logo-des p {
    line-height: 40px;
}
.socail-media a {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50px;
    background: #52B046;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.socail-media {
    display: flex;
    grid-gap: 8px;
}
.copy-right {
    background: #000;
    padding-top: 20px;
    padding-bottom: 20px;
}
.ft-contact ul li .icon-ft {
    width: 29px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #52B046;
    border-radius: 50px;
}
.ft-contact li{
    margin-bottom: 18px;
}
.ft-contact li:last-child{
    margin-bottom: 0;
}
.ft-contact li a {
    color: #BABABA;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    grid-gap: 20px;
}
.address-outer {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.address {
    width: calc(100% - 50px);
    color: #BABABA;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    transform: translate(0px, -10px);
}
/*about page*/
.banner.banner-breadcrump h1 {
    padding: 0;
    margin-bottom: 17px;
}
.breadcrump,
.breadcrump a {
    color: #FFF !important;
    font-family: Poppins, sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-right: 7px;
}
.lft-rt-con.about-lt-con-rt-img {
    background: #1C1C1C;
    mix-blend-mode: multiply;
    padding: 115px 0;
}
.lft-rt-con.about-lt-con-rt-img  .lft-sec img {
    border-radius: 5px;
}
.gray-btn {
    border-radius: 5px;
    background: #2E2E2E !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.50);
    border: none;
    color: #51B748;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    padding: 10px 18px;
    margin-bottom: 26px;
    cursor: pointer;
}
.lft-rt-con.about-lt-con-rt-img .tr-sec-iner h3 {
    padding-right: 5.5%;
    margin-bottom: 19px;
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
}
.lft-rt-con.about-lt-con-rt-img .tr-sec-iner p{
    font-size: 19px;
    line-height: 29px;
}
.our-mission{
    background: #2F3032;
    mix-blend-mode: multiply;
    padding: 97px 0 105px 0;
}
.mission-outer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 45px;
}
.about-h3{
    font-size: 40px;
    line-height: 53px;
    margin-bottom: 18px;
}
.about-p{
    font-size: 19px;
    line-height: 29px;
}
.lft-rt-con.about-lt-con-rt-img.our-story{
    padding: 78px 0 96px;
}
.lft-rt-con.about-lt-con-rt-img.our-story:before{
    display: none;
}
/*counter*/
.counter-section {
    background: #2F3032;
    mix-blend-mode: multiply;
    padding: 110px 0 90px;
}
.counter-plus {
    display: flex;
}
div#counter {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
    justify-content: center;
    align-items: center;
}
.counter-value {
    color: #FFF;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
}
span.plus {
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
    transform: translate(0, -15px);
}
.title-counter {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 53px;
    margin-top: 10px;
}
/*end counter*/
/*timeline*/
.timeline-outer{
    background: #222;
    padding: 93px 0 60px;
}
.time-period {
    border-top: 1px solid #EAEAEA;
}
.timeline-heading h3 {
    padding-bottom: 49px;
}
.dot-section-outer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 45px;
    transform: translate(0, -35px);
}
.icon-dot {
    text-align: center;
}
.year{
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 75% */
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.year-des{
    color: #FFF;
/*    text-align: justify;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}
/*end timeline*/
/*management*/
.management{
    background: #222;
}
.management h3{
    text-align: center;
    margin-bottom: 47px;
}
.management-outer {
   /* display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 47px;*/
    padding-bottom: 99px;
}
.management-outer-about{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 47px;
}
.management-brach .management-outer{
    display: block !important;
}
.management-outer .management-img img,
.management-outer-about .management-img img{
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 12px;
}
.man-des {
/*    position: absolute;*/
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0px 0px 11px 11px;
    background: #1C1C1C;
    margin-top: -12px;
    position: relative;
    z-index: 99;
}
.management-box{
    position: relative;
}
.management-designation {
    color: #656565;
    text-align: left;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    padding:0 15px 43px 15px;

}
.management-name {
    color: #FFF;
    text-align: left;
    min-height: 81px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
    padding:33px 15px 0 15px;
}
.banner.banner-breadcrump {
    height: 400px;
}
/*end management*/
/*specialities page*/
.specialities-section{
    background: #1C1C1C;
    padding: 134px 0;
}
.specialities-section button.green-btn {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 14px 35px;
    font-size: 12px;
    line-height: 15px;
}
.specialities-section a.green-btn.contct-btnb,
.specialities-box-con a.green-btn.contct-btnb {
    position: unset;
    width: unset;
}
.specialities-section h4{
    font-size: 25px;
    line-height: 30px;
}
.specialities-section p{
    font-size: 15px;
    line-height: 23px;
}
.specialities-section .specialities-outer.unslick,
.specialities-outer.unslick{
    grid-gap: 32px 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.specialities-section .specialities-outer
.specialities-section .specialities-box-con,
.specialities-section  .specialities-box-img img{
    border-radius: 10px;
}
.specialities-outer{
    position: relative;

}
.specialities-outer a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
/*end specialities page*/
/*end about page*/
/*specialities-section-detail*/
.specialities-section-detail{
    padding: 100px 0 72px;
}
.specialities-des {
    margin-bottom: 25px;
}
.speciality-head h3 {
    margin-bottom: 40px;
}
/*end specialities-section-detail*/
/*Package*/
.package{
    background: #1C1C1C;
}
.package .outer-img-sec {
    border-radius: 5px;
    background: #2F2F2F;
    grid-gap: 0;
}
.package1 .tr-sec-iner ,
.package3 .tr-sec-iner {
   padding-right: 54px;
   padding-left: 86px;
   padding-top: 50px;
   padding-bottom: 50px;
}
.package2 .tr-sec-iner {
    padding-left: 76px;
    padding-right: 76px;
}
.package h3 {
    padding-right: 0px;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 18px;
}
.package p{
    font-size: 15px;
    line-height: 20px;
}
.package .green-btn{
    font-size: 12px;
    line-height: 15px;
    padding: 14px 32px;
    margin-top: 9px;
}
.package1{
    padding-bottom: 0px;
    padding-top: 60px;
}
.package2{
    padding: 0;
}
.package3{
    padding-top: 53px;
    padding-bottom: 115px;
}
/*End package*/
/*form section*/
.from-content {
    background: #1C1C1C;
    padding: 110px 0 129px 0;
}
.from-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.fomr-con-sec {
    padding-left: 58px;
}
.form-section {
    border-radius: 5px;
    background: #43434380;
    padding: 26px 39px;
}
.form-section input,
.form-section select,
.select2-selection.select2-selection--single{
    width: 100%;
    border-radius: 5px !important;
    background-color: #1a1a1980 !important;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    border: none !important;
    height: 75px !important;
    padding: 26px 39px;
    margin-bottom: 18px;
    outline: none;
}

/* Change text color */
input:-internal-autofill-selected {
  -webkit-text-fill-color: #FFF !important;
  transition: background-color 5000s ease-in-out 0s;
  border: none;
    -webkit-border: none; /* For older WebKit browsers */
    outline: none;
}

/* Change background color */
input:-internal-autofill-selected {
  background-color: #252525 !important;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #252525 inset !important;
    border: none;
    -webkit-border: none; /* For older WebKit browsers */
    outline: none;
}

/* Change text color */
input:-internal-autofill-selected {
  color: #fff !important;
  border: none;
    -webkit-border: none; /* For older WebKit browsers */
    outline: none;
}

/* Change background color */
input:-internal-autofill-selected {
  background-color: #252525 !important;
  border: none;
    -webkit-border: none; /* For older WebKit browsers */
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #FFF !important;
    font-size: 15px !important;
    font-style: normal!important;
    font-weight: 500 !important;
    line-height: 23px !important;
    padding: 0 !important;
}
/*.select2-container--open .select2-dropdown--below {
    background: #303030 !important;
    border-color: #fff;
    border-top: 1px solid #fff !important;
}
.select2-search--dropdown{
    background: #303030 !important;
}
.select2-results__option{
    color: #fff !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background: #000 !important;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background: #534d4d !important;
}*/
span.select2-selection__arrow{
    display: none;
}
.form-section input::placeholder,
.form-section select::placeholder,
.form-section textarea::placeholder{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
}
.form-section  select,
.select2-selection.select2-selection--single{
        appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/assets/images/select.svg);
    background-repeat: no-repeat !important;
    background-position: right 33px center;
    cursor: pointer;
    padding-right: 40px;
}
.form-section textarea{
    height: 268px;
    width: 100%;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    border-radius: 5px;
    background: #1a1a1980;
    outline: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    padding: 26px 39px;

}
.form-submit input {
    display: inline-block !important;
    border-radius: 5px !important;;
    background: #51B748 !important;
    width: auto !important;;
    color: #FFF !important;;
    font-size: 14px !important;;
    font-style: normal !important;;
    font-weight: 700 !important;;
    line-height: normal !important;;
    padding: 15px 43px !important;;
    height: auto !important;;
    margin-top: 27px !important;;
}
.form-image img{
    width: 100%;
    height: 100%;
}
.form-image {
    padding-top: 23px;
}
.from-con-inner h3 {
    margin-bottom: 15px;
}
/*end form section*/
/*franchisee*/
.franchisee .from-con-inner h3{
    margin-bottom: 25px;
}
.franchisee .form-image img{
    border-radius: 11px;
}
/*end franchisee*/
/*contact us*/
.contact-box-inner {
    display: flex;
/*    justify-content: space-between;*/
    align-items: center;
    grid-gap: 50px;
    padding: 97px 25px 97px 55px;
    border-radius: 5px;
    border: 2px solid #51B748;
    background: #2f2f2f80;
}
.fomr-con-sec.contact-us{
    padding-left: 0;
    padding-right: 62px;
}
.fomr-con-sec.contact-us button.gray-btn {
    margin-bottom: 27px;
}
.fomr-con-sec.contact-us h3{
    margin-bottom: 20px;
}
.contact-box {
    padding-top: 22px;
}
.map iframe {
    width: 100%;
}
.consultation.contact-details{
    background-color: #141311;
    background-image: url('/assets/images/contact.png');
    padding: 115px 0 100px;
}
.contact-way {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 44px;
}
.consultation.contact-details .consultation-outer {
    width: 75%;
}
.address-icon {
    width: 67px;
    height: 67px;
    border-radius: 8px;
    background: #51B748;
    display: flex;
    align-items: center;
    justify-content: center;
}
.address-icon img {
    width: 22px;
}
.our-address {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    flex-wrap: wrap;
}
.adrress-right {
/*    width: calc(100% - 100px);*/
}
.select2-container--open .select2-dropdown--above,
.select2-dropdown{
    background: #000 !important;
}
.select2-container--default .select2-results__option[aria-disabled=true]{
    color: #fff !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-results__option{
    color: #fff !important;
}
.contact-way {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
}
.add-title h4 {
    color: #FFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 5px;
}
.add-title p,
.add-title a {
    color: #B0B0B0;
    font-size: 15.7px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 24px;
}

/*end contact us*/
/*Branch details*/
.banner.branch-detail .address-icon {
    width: 37px;
    height: 37px;
}
.banner.branch-detail .address-icon img{
    width: auto;
}
.banner.branch-detail .our-address{
    grid-gap: 16px;
}
.banner.branch-detail .contact-way{
    display: flex !important;
    position: relative;
    flex-direction: row;
    grid-gap: 57px;
    align-items: center;
    padding-bottom: 65px;
}
.banner.branch-detail {
    align-items: end;
}
.banner.branch-detail h1{
    padding-right: 0;
}
.banner.branch-detail .socail-media.socail-media-contaxt {
    position: absolute;
    top: 52px;
    right: 70px;
    z-index: 999;
}
.full-width-left-image {
    background: #1C1C1C;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.right-section-full.right-padding {
    padding-left: 75px;
}
.left-image-full img {
    display: flex;
    width: 100%;
    height: 100%;
}
.specialities-branch .branches-box {
    flex-direction: row;
    grid-gap: 34px;
    border-radius: 10px;
    background: #1C1C1C;
}
.box-des.hover-show .green-btn{
    padding: 10px 20px!important;
    margin-top: 0 !important;
}
.specialities-branch .branches-inner {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 33px;
}
.specialities-branch .location-name{
    margin-top: 0;
}
.branches.specialities-branch,
.specialities.treatment-branch {
    background: #2F3032;
    mix-blend-mode: multiply;
    padding: 91px 0 100px 0;
}
.branches.specialities-branch .custom-arrow {
    background: #1C1C1C;
}
.specialities.treatment-branch{
    padding-bottom: 113px;
}
.specialities.treatment-branch .specialities-outer,
.specialities.branch-facilities .specialities-outer{
    grid-gap: 35px;
}
.specialities.treatment-branch .specialities-box-img img,
.specialities.treatment-branch .specialities-box-con,
.specialities.branch-facilities .specialities-box-img img,
.specialities.branch-facilities .specialities-box-con{
    border-radius: 11px;
}
.specialities.branch-facilities{
    padding-top: 75px;
    padding-bottom: 0;
    background: #1C1C1C;
    padding-bottom: 75px;
}
.lft-rt-con.package.package1.package-branch {
    padding-top: 88px;
}
.lft-rt-con.package.package1.package-branch h3{
    margin-bottom: 50px;
}
.lft-rt-con.package.package1.package-branch:before,
.branch-package2:before,
.branch-package3:before{
    display: none;
}
.management-brach{
padding-top: 72px;
padding-bottom: 75px;
}
/*end branch details*/
/*Gallery*/
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.gallery-item {
    position: relative;
}
.gallery-item img,
.gallery-item video{
    width: 100%;
    height: 330px;
    object-fit: cover;
}
button.fancybox-button.fancybox-button--thumbs{
    display: none;
}
button.fancybox-button.fancybox-button--play{
    display: none !important;
}
.gallery-item-video{
    position: relative;
}
.gallery-item-video:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(18, 17, 17, 0.79);
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 9;
}
.video-icon img {
    width: 50px;
    height: 50px;
}
.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: red;
    cursor: pointer;
}
.gallery-outer{
    background: #1C1C1C;
    padding: 100px 0 61px;
}
/*End Gallery*/

/*excellance*/
.specialities.treatment-branch.excellence .specialities-box a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}
.management-designation-qua
/*treatment*/
.fomr-con-sec.franchisee.treatment-inner {
    padding-left: 0;
}
.from-content.treatment-sec .from-content-inner {
    grid-gap: 75px;
}
.management-designation.management-designation-qua {
    margin-top: -25px;
}
/*end treatment*/
.specialities.treatment-branch.excellence {
    background: #1C1C1C;
    padding: 150px 0 191px;
}
.treatment-slider-image-sec .treatment-slider-image-sec-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 590px;
}
.slider-top-width .outer-img-sec{
    grid-template-columns: 48% 46.5%;
}
/*.treatment-slider-image-sec .slick-slide {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}*/
/*.treatment-slider-image-sec-slide {
    width: 100% !important;
}*/

/*.treatment-slider-image-sec {
    max-height: 300px;
    overflow: hidden;
}*/
/*end excelanece*/
/*package detail*/
.package-detail-sec{
    padding: 131px 0 61px;
}
.package-detail-sec:before{
    display: none;
}
/*end package detail*/
/*branches*/
.branches-outer-sec{
    background: #1C1C1C;
    padding: 100px 0 200px;
}
.branch-name-sec{
    background: #2F3032;
    padding: 30px 20px 24px 20px;
    color: #FFF;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.branches-inner-sec{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.branches-inner-sec img{
    width: 100%;
    height: 350px;
    display: flex;
    object-fit: cover;
}
/*end branches*/
/*news room*/
.date{
    padding: 6px 16px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 22px;
    text-align: left;
    background: #000;
    margin-left: 46px;
    display: inline-flex;
}
.news-room .specialities-box{
    position: relative;

}
.news-room .specialities-box > a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
/*end news room*/
/*new detail*/
.news-detail{
    background: #1C1C1C;
    padding: 100px 74px;
}
.news-detail .date{
    margin-left: 0;
}
.news-img img{
    width: 100%;
    height: 441px;
    object-fit: cover;
}
/*end new detail*/
/*career*/
    /* Style for the hidden file input */
    #cv,
    #cl {
        display: none;
    }

    /* Style for the custom file upload button */
    .custom-upload-cv,
    .custom-upload-cl {
        background-color: #51b74880;
        color: #fff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 5px;
    }

    /* Style for the file name display */
    .form-outer.file-upload {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 18px;
}
input#cv-display,
input#cl-display {
    width: calc(100% - 30%);
    margin: 0;
}
.career-form-sec textarea{
    height: 195px;
}
.carrer-des{
    padding: 110px 0 120px;
    background: #1C1C1C;
}
.carrer-des.opening{
    padding-top: 0 !important;
}
.carrer-des-inner{
    padding-bottom: 85px;
}
form .error {
    color: #ff3636;
    margin-bottom: 18px;
}
.three-column-image{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}
.three-column-image img{
    border-radius: 11px;
box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.30);
width: 100%;
height: 441px;
object-fit: cover;
}
.from-content.treatment-sec.career-form-sec{
    padding-top: 0;
}
.carrer-des.opening .carrer-des-inner{
    padding-bottom: 30px;
}
.open-title h6 {
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
    color: #fff;
}
.location-open {
    display: flex;
    grid-gap: 7px;
    color: #fff;
}
.loc-open{
    font-weight: 500;
}
.carrer-des.opening .green-btn{
    padding: 10px;
}
.box-opening {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 30px;
}
.opening-box-iner {
    border: 1px solid #ffffffa8;
    padding: 30px;
    padding-bottom: 35px;
}
./*form-outer.cover-letter input#cover-letter-display{
        height: 268px;
        width: 100% !important;
}
.form-outer.cover-letter input::placeholder {
  display: flex;
  align-items: start;
  justify-content: left;

}*/
/*end career*/
/*slider*/
.specialities .custom-arrow{
    bottom: -80px;
}
.branches .custom-arrow,
.specialities.treatment-branch .custom-arrow,
.specialities.branch-facilities .custom-arrow{
    bottom: -80px;
}
.outer-img-sec-outer .custom-arrow{
    background:  #1C1C1C;
}

button.fancybox-button.fancybox-button--zoom{
    display: none !important;
}
.lft-sec{
    height: 100%;
}
.rt-sec{
    padding-top: 50px;
    padding-bottom: 50px;
}
::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
-webkit-appearance: none;
  margin: 0;
}
@media  (min-width: 1251px) {
    .lft-sec > img{
    max-width: 634px;
}
.image-package img{
    max-width: 611px;
}
}
@media and (max-width: 1100px) and (min-width: 769px) {
    .year{
        font-size: 30px !important;
        text-align: left;
    }
    .year-des{
        font-size: 14px;
    }
    .dot-section-outer{
        grid-gap: 30px;
    }
}
@media (max-width: 1100px)  {
    .ft-menu ul li a{
        font-size: 14px;
    }

    .specialities,
    .our-package,
    .testmonial,
    .consultation{
            padding-bottom: 120px !important;
        }
    .branches-box-icon img {
        width: 52px;
        height: 52px;
    }
    .location-name{
        font-size: 16px;
    }
    .specialities-branch .branches-box{
        grid-gap: 18px;
    }
    .location-name{
        display: flex;
        align-items: center;
    }

}
@media (max-width: 479px){
    .specialities-branch .branches-inner{
        margin-right: 0 !important;
    }
}
@media (max-width: 1150px) and (min-width: 769px) {
    .custom-upload-cv, .custom-upload-cl {
        width: 128px;
    }
    input#cv-display, input#cl-display {
        width: calc(100% - 145px);
    }
}
@media (max-width: 1647px) and (min-width: 125px) {
    .container2{
        padding: 0 50px;
   }
}
@media (min-width: 1637px) {
    .container2{
        max-width: 1637px;
        margin: 0 auto;
    }

}
/* Responsive styles */
@media (max-width: 768px) {
    nav ul {
        text-align: center;
        padding-top: 10px;
    }
    .lft-sec {
    order: 2;
}
.terms-condition-inner ul,
.terms-condition-inner ol{
    padding-left: 20px;
}
.box-opening {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px 30px;
}
.terms-condition-section h1 {
    font-size: 29px;
    line-height: 33px;
    margin-bottom: 35px;
    text-align: left;
}
.terms-condition{
    padding: 60px 0;
}
input#cv-display, input#cl-display{
    width: 100%;
}
.slider-top-width .outer-img-sec{
    grid-template-columns: 100% !important;

}
.specialities-section .specialities-outer.unslick, .specialities-outer.unslick{
    grid-template-columns: repeat(1, 1fr);
}
.treatment-slider-image-sec .treatment-slider-image-sec-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}
.custom-arrow img{
   width: 10px !important;
}
.breadcrump, .breadcrump a{
    font-size: 13px;
}
.form-section {
    order: 2;
    margin-top: 30px;
}
.news-detail{
    padding: 50px 0;
}
.testmonial .custom-arrow, .specialities .custom-arrow {
    bottom: -65px !important;
}
    nav li {
        display: block;
        margin: 10px 0;
    }
    .footer-inner{
        flex-direction: column;
    }
    .left-ft,
    .center-sec,
    .ft-rt{
        width: 100%;
        padding-right: 0;
    }
    .center-sec{
       padding-top: 50px;
    }
    .ft-rt{
        padding-top: 30px;
    }
    .ft-menu ul{
        grid-template-columns: 1fr;
    }
    .banner h1{
        padding-right: 0;
        word-break: break-word;
        text-align: center;
    }
    .banner h1{
        font-size: 35px;
        line-height: 40px;
    }
    .outer-img-sec,
    .package-inner-sec{
        grid-template-columns: 1fr;
    }
    .tr-sec-iner h3{
        padding-right: 0;
    }
    .specialities-outer,
    .testimonial-inner,
    .branches-inner{
       grid-template-columns: 1fr;
    }
    .package-des{
        padding-left: 20px;
        padding-right: 20px !important;
    }
    .image-package img{
        width: 100%;
    }
    video#custom-video {
        width: 90vw;
        max-width: 100% !important;
    }
    .specialities-box-img img{
        width: 100%;
        height: 100%;
    }
    .consultation-left{
        width: 100%;
    }
    .consultation{
        background: #2F3032;
    }
    .image-package img{
        width: 100%;
    }
    .custom-arrow {
        width: 45.472px;
        height: 45px;
    }
    .custom-arrow.custom-prev-arrow.slick-arrow {
        right: 60px;
    }
    h3{
        font-size: 30px;
    }
    .testimonial-con {
        padding: 35.91px 30px 37px 30px;
    }
    .banner {
    height: 100%;
    padding: 100px 0;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.specialities,
.our-package,
.testmonial,
.consultation{
        padding: 50px 0 !important;
        padding-bottom: 70px !important;
    }
    .package-inner-sec{
        grid-gap: 0;
    }
    .franchises-header p{
        max-width: 100%;
    }
    h4{
        font-size: 20px;
    }
    .lft-rt-con.about-lt-con-rt-img .tr-sec-iner h3{
        padding-right: 0;
    }
    .tr-sec-iner h3,
    .about-h3{
        font-size: 30px;
        line-height: 38px;
    }
    .about-p{
        font-size: 16px;
    }
    .mission-outer,
    div#counter,
    .dot-section-outer,
    .management-outer,
    .management-outer-about{
        grid-template-columns: 1fr;
    }
    .counter-plus{
        justify-content: center;
    }
    div#counter {
    text-align: center;
    grid-gap: 50px;
}
.dot-section-outer{
    transform: none;
}
.icon-dot{
    display: none;
}
.time-period{
    border: none;
}
.container2{
    padding: 20px;
}
.counter-value{
    font-size: 60px;
}
.timeline-heading h3{
    padding-bottom: 0;
}
.specialities-section h4{
    font-size: 20px;
}
.specialities-section p{
    font-size: 13px;
}
.package .tr-sec-iner{
    padding: 30px 20px;
}
.package h3{
    font-size: 25px;
}
.package p{
    font-size: 12px;
}
.from-content-inner {
    grid-template-columns: 1fr;
}
.form-section{
    padding: 20px;
}
.fomr-con-sec {
    padding-left: 0px;
    padding-top: 20px;
}
.fomr-con-sec.contact-us{
    padding-right: 0;
    margin-bottom: 40px;
}
.address-icon {
    width: 50px;
    height: 50px;
}
.consultation.contact-details .consultation-outer{
    width: 100%;
}
.contact-des {
    text-align: center;
}
.contact-way{
    grid-template-columns: 1fr;
}
.contact-box-inner {
    padding: 20px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}
.left-image-full img {
    width: 100%;
    height: 100%;
}
.full-width-left-image {
    grid-template-columns: 1fr;
}
.right-section-full.right-padding{
    padding: 50px 20px !important;
}
.banner.branch-detail .contact-way {
    flex-direction: column;
    text-align: left;
    align-items: baseline;
}
.banner.branch-detail{
    padding: 0;
}
.banner.branch-detail h1{
    padding-top: 120px;
}
.specialities-branch .branches-inner {
    grid-template-columns: repeat(1, 1fr);
}
.specialities-branch .branches-box{
    flex-direction: column;
}
.lft-rt-con.package.package1.package-branch{
    padding-top: 30px;
}
.gallery {
    grid-template-columns: repeat(1, 1fr);
}
.branches-inner-sec{
    grid-template-columns: repeat(1, 1fr);
}
.branches-outer-sec{
    padding-bottom: 70px;
}
.three-column-image{
    grid-template-columns: repeat(1, 1fr);
}
.from-content.package-detail-form .from-content-inner .form-section {
    order: 2;
    margin-top: 30px;
}
.form-section input,
.form-section select,
.select2-selection.select2-selection--single{
         height: 55px !important;
    padding: 16px 20px !important;
}
.form-section textarea{
    padding: 16px 20px;
}
.specialities-section .specialities-outer.unslick{
    grid-template-columns: repeat(1, 1fr);
}
}
@media (min-width: 1200px){
    .news-inner-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
}
@media (max-width: 1200px) and (min-width: 992px) {
    .left-ft{
        width: 100%;
        margin-bottom: 50px;
    }
    .center-sec {
        width: 48%;
        padding-right: 0;
    }
    .ft-rt {
        width: 50%;
    }
    .package .tr-sec-iner{
    padding: 30px 20px;
}
.package h3{
    font-size: 25px;
}
.package p{
    font-size: 12px;
}
}
@media (max-width: 1280px) {
    .container{
        padding: 0 20px;
    }
}
@media (max-width: 992px) {
.outer-img-sec .rt-sec{
    padding-bottom: 0;
    padding-top: 0;
}

}
@media (max-width: 1600px) {
.ft-menu ul li a,
.ft-contact li a,
.address{
    font-size: 16px;
    line-height: 28px;
}
.franchises-header h3,
h3{
    font-size: 35px !important;
}
p{
    font-size: 16px !important;
    line-height: 24px !important;
}
}
@media (max-width: 1250px) and (min-width: 993px) {
    .package .outer-img-sec{
        grid-template-columns: 1fr 1fr !important;
    }
    .contact-box-inner {
    padding: 20px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}
.box-opening {
    grid-template-columns: repeat(2, 1fr);
}
.contact-des {
    text-align: center;
}

}
@media (max-width: 1250px){
.counter-plus{
    justify-content: center;
}
.title-counter{
    text-align: center;
}
}
@media (max-width: 1200px) and (min-width: 769px) {
.specialities-section .specialities-outer.unslick, .specialities-outer.unslick{
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 992px) and (min-width: 769px) {
    .center-sec {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
}
.box-opening {
    grid-template-columns: repeat(2, 1fr);
}
.slider-top-width .outer-img-sec{
    grid-template-columns: 100% !important;
}
.specialities-section .specialities-outer.unslick, .specialities-outer.unslick{
    grid-template-columns: repeat(2, 1fr);
}
.custom-arrow img{
   width: 10px !important;
}
.treatment-slider-image-sec .treatment-slider-image-sec-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}
.ft-rt {
    width: 100%;
}
.specialities-section .specialities-outer.unslick{
    grid-template-columns: repeat(2, 1fr);
}
.gallery {
    grid-template-columns: repeat(2, 1fr);
}
.ft-head h3{
    font-size: 30px;
}
.specialities-section h4{
    font-size: 20px;
}
.specialities-section p{
    font-size: 13px;
}
.management-outer,
.management-outer-about{
grid-template-columns: repeat(2, 1fr);
}
.package .tr-sec-iner{
    padding: 30px 20px;
}
.package h3{
    font-size: 25px;
}
.package p{
    font-size: 12px;
}
.about-h3 {
    font-size: 30px;
    line-height: 38px
}
.about-p {
    font-size: 16px;
    line-height: 25px;
}
.contact-box-inner {
    padding: 20px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}
.contact-des {
    text-align: center;
}
.left-image-full img {
    width: 100%;
    height: 100%;
}
.banner.branch-detail .contact-way{
    flex-wrap: wrap;
}
.banner.branch-detail .our-address {
    width: 40%;
}
.banner.branch-detail h1{
    padding-top: 50px;
}
.banner.branch-detail .socail-media.socail-media-contaxt{
    top: 20px;
}
.specialities-branch .branches-inner {
    grid-template-columns: repeat(1, 1fr);
}
.right-section-full.right-padding{
    padding: 30px 20px 30px 75px !important;
}
.consultation.contact-details .consultation-outer {
    width: 100%;
}
.branches-inner-sec{
    grid-template-columns: repeat(2, 1fr);
}
.three-column-image{
    grid-template-columns: repeat(2, 1fr);
}
.form-section input,
.form-section select,
.select2-selection.select2-selection--single{
         height: 55px !important;
    padding: 16px 20px !important;
}
.form-section textarea{
    padding: 16px 20px;
}
}
/* Add more styles as needed for your specific project */
@media (max-width: 1250px) and (min-width: 769px) {
    .outer-img-sec,
    .package-inner-sec,
    .testimonial-inner{
            grid-template-columns: 1fr;
    }
    .package-inner-sec{
        grid-gap: 0;
    }
    .specialities-box-img img{
        width: 100%;
    }
    h4{
        font-size: 20px;
    }
    .image-package img{
        width: 100%;
    }
    .package-des{
        padding-left: 20px;
    }
    video#custom-video {
        width: 94vw;
    }
    .consultation{
        background-size: cover;
        background-position: 69% 100%;
    }
    .branches-inner{
            grid-template-columns: repeat(2, 1fr);
    }
    .left-ft {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
}

.counter-value{
    font-size: 60px;
}
.container2{
    padding: 0 20px;
}
.full-width-left-image{
    grid-template-columns: 1fr;

}
.right-section-full.right-padding{
    padding: 30px !important;
}
}
@media (max-width: 1600px) {
.cta-button a {
    padding: 22px 58px 22px 63px;
}
.header-logo img{
        height: 50px;
    }
    .header-nav li a{
        padding: 25px 0;
        font-size: 14px;
    }
    .cta-button a{
        font-size: 15px;
    }
    .header-nav .sub-menu{
        top: 74px;
    }
}
@media (max-width: 1300px) and (min-width: 1101px) {
    .cta-button a {
        padding: 29px 20px 30px 20px;
        font-size: 16px;
    }
    .header-nav li a{
        font-size: 13px;
    }
    .header-nav ul{
        grid-gap: 20px;
    }
}
@media (max-width: 1300px) and (min-width: 1101px) {
    .ft-menu ul li a{
        font-size: 16px;
    }
}

/***************iPhone Portrait**************/
@media only screen and (max-width: 479px) and (min-width: 220px){
    input#cv-display,
    .custom-upload-cv{
        width: 100% !important;
    }
    .ft-menu ul li a{
        font-size: 14px;
    }
    .box-des.hover-show,
    .box-title{
        padding: 0 20px !important;
    }
}
/**********************iPhone Landscape*************/
@media only screen (max-width: 480px){
.specialities-outer .slick-slide, .management-outer .slick-slide{
    margin-right: 0;
}
}
@media only screen and (max-width: 1100px) and (min-width: 769px){
    .banner{
        height: 60vh !important;
    }
}
@media (max-width: 330px){
    .box-title h4 {
        word-break: break-word;
    }
    h3{
        font-size: 18px !important;
        line-height: 26px !important;
        word-break: break-word;
    }
    h1{
        font-size: 24px !important;
        line-height: 29px !important;
        word-break: break-word;
    }
    h4,
    .add-title h4{
        font-size: 16px !important;
        line-height: 24px !important;
        word-break: break-word;
    }
    p,
    a,
    .add-title p,
    .add-title a{
        font-size: 14px !important;
        line-height: 22px !important;
        word-break: break-word;
    }
    .box-des.hover-show,
    .box-title{
        padding: 0 20px !important;
    }
    .specialities-box:hover .box-des.hover-show p{
        display: none;
    }
    .address-icon img {
        width: 15px;
    }
    .address-icon {
        width: 35px;
        height: 35px;
    }
    .adrress-right {
    width: 100%;
}
.banner.branch-detail .our-address{
    width: 100%;
    flex-wrap: wrap;
}
}
