#logo img{
    max-width: 147px;
}
header{
    padding: 10px 0;
    background-color: var(--white);
    position: relative;
    z-index: 99;
}
header .header-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .right{
    display: flex;
    align-items: center;
}
#site-nav .menu{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
#site-nav .menu .menu-item{
    padding: 0 20px;
}
#site-nav .sub-menu{
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all .25s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
    border-top: 4px solid var(--green);
    border-radius: 2px 2px 0 0;
    background-color: var(--white);
}
#site-nav .menu a{
    text-decoration: none;
    line-height: 160%;
    text-align: center;
    color: var(--text);
}
#site-nav .menu a:hover, #site-nav .menu .current-menu-item a{
    color: var(--green);
}
#site-nav .menu .menu-item-has-children{
    position: relative;
}
#site-nav .menu .menu-item-has-children > a{
    padding-right: 20px;
    position: relative;
}
#site-nav .menu .menu-item-has-children > a::before{
    content: "";
    background: url(../img/caret-down.png) top left no-repeat;
    background-size: 100%;
    width: 11px;
    height: 6px;
    position: absolute;
    right: 0;
    top: 8px;
}
#site-nav .menu .menu-item-has-children.active .sub-menu{
    max-height: 100px;
    opacity: 1;
    visibility: visible;    
}
#site-nav .sub-menu .menu-item{
    padding: 10px 20px;
}
footer{
    background: var(--blue);
}
footer .footer-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0;
}
footer .left{
    font-size: 14px;
    color: var(--white);
}
footer .right a{
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}
footer .right a:hover{
    text-decoration: underline;
}
#site-main-cta .btn-primary{
    font-weight: 600;
}
.home-banner__item{
    min-height: 703px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.home-banner__item h1{
    margin-bottom: 28px;
    text-align: center;
    padding: 0 20px;
}
.home-banner__item .subtitle{
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
}
.home-banner.swiper-horizontal>.swiper-pagination-bullets{
    bottom: 42px;
}
.home-banner .swiper-pagination-bullet{
    background-color: var(--white);
}
.mobile-menu-hamburger{
    display: none;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
}
.mobile-menu-hamburger .bar{
    background-color: var(--text);
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all .25s ease-in-out;
}
.mobile-menu-hamburger:hover .bar{
    background-color: var(--dark-blue);
}
.mobile-menu-hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 8px);
}

.mobile-menu-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 8px);
}
.icon-widget{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.icon-widget .icon-widget__item{
    background-color: var(--blue);
    border-radius: 5px;
    padding: 20px;
}
.icon-widget .icon-widget__icon{
    max-width: 90px;
    margin: 0 auto 10px;
}
.icon-widget .icon-widget__title{
    color: var(--white);
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.icon-widget .icon-widget__description{
    color: var(--white);
    text-align: center;
}
.lightblue{
    color: var(--light-blue) !important;
}
.blue{
    color: var(--blue) !important;
}
.services-widget__title{
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}
.services-widget__items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.services-widget__items__image{
    height: 250px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.services-widget__items__image img{
    object-fit: cover;
    height: 100%;
}
.services-widget__items__title{
    border-radius: 0 0 5px 5px;
    padding: 10px;
    min-height: 70px;
    background-color: var(--green);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-widget__see-all{
    text-align: center;
    margin-top: 40px;
}
.services-widget__see-all a{
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    color: var(--white);
    transition: all .25s ease-in-out;
}
.services-widget__see-all a:hover{
    text-decoration: none;
    opacity: .8;
}
.services-widget__explore-more{
    text-align: center;
    margin-top: 30px;
}
.services-widget__items .services-widget__items__item:nth-child(n+9) {
    display: none;
}
.carousel-icon-widget__item{
    border-radius: 5px;
    background-color: var(--blue);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #fff;
}
.carousel-icon-widget .swiper-slide{
    height: auto;
}
.carousel-icon-widget__top{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.carousel-icon-widget__icon{
    max-width: 90px;
}
.carousel-icon-widget .swiper-pagination-bullets.swiper-pagination-horizontal{
    position: relative;
    bottom: unset;
    margin-top: 5px;
}
.carousel-icon-widget .swiper-pagination-bullet-active{
    background-color: var(--green);
}
.icon-carousel-swiper-button.swiper-button-prev{
    left: -42px;
}
.icon-carousel-swiper-button.swiper-button-next{
    right: -42px;
}
.icon-carousel-swiper-button.swiper-button-prev, .icon-carousel-swiper-button.swiper-button-next{
    color: var(--text);
    height: 32px;
    width: 17px;
}
.icon-carousel-swiper-button.swiper-button-prev::after, .icon-carousel-swiper-button.swiper-button-next::after{
    font-size: 32px;
}
.services-wrapper__title{
    text-align: center;
    margin-bottom: 24px;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-item, .location-item{
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-item__image, .location-item__image{
    height: 213px;
}
.service-item__image img, .location-item__image img{
    object-fit: cover;
    height: 100%;
}
.service-item__bottom, .location-item__bottom{
    padding: 20px;
    background-color: var(--white);
    height: 100%;
}
.service-item__description ul, .medical-fee-item__description ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-item__description ul li, .medical-fee-item__description ul li{
    padding-left: 28px;
    position: relative;
}
.service-item__description ul li + li, .medical-fee-item__description ul li + li{
    margin-top: 8px;
}
.service-item__description ul li::before, .medical-fee-item__description ul li::before{
    content: "";
    background: url(../img/icon-list.svg) top left no-repeat;
    background-size: 100%;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 4px;
}
.service-item__description ul ul{
    list-style: disc;
    list-style-position: outside;
    padding-left: 16px;
    margin-top: 8px;
}
.service-item__description ul ul li{
    padding-left: 0;
}
.service-item__description ul ul li::before{
    display: none;
}
.locations-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.location-item__bottom{
    display: flex;
    justify-content: space-between;
}
.location-item__bottom__left{
    max-width: 214px;
}
.location-item__bottom__right{
    width: 124px;
}
.location-item__ctas a{
    min-width: 124px;
}
.location-item__ctas a + a{
    margin-top: 10px;
}
.single-location{
    background-color: var(--grey);
}
.single-location-banner{
    min-height: 400px;
    background-image: url(../img/banner-location-single.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}
.single-location-wrapper, .news__body{
    padding: 70px 0;
}
#mainTabMenu{
    margin-bottom: 30px;
}
#mainTabMenu .nav-item{
    border-radius: 5px;
    overflow: hidden;
}
#mainTabMenu .nav-item + .nav-item{
    margin-top: 10px;
}
#mainTabMenu.nav-tabs .nav-link{
    border: 0;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--text);
}
#mainTabMenu.nav-tabs .nav-link.active{
    background-color: var(--light-blue);
    color: var(--white);
}
#tab1-main{
    border-radius: 5px;
    background-color: var(--white);
    padding: 10px 0 30px;
}
#mainTabContent .nav-tabs{
    justify-content: center;
    border: 0;
    margin-bottom: 16px;
}
#mainTabContent .nav-tabs .nav-link{
    border: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--green);
    padding: 10px 73px;
    transition: all .25s ease-in-out;
}
#mainTabContent .nav-tabs .nav-link.active, #mainTabContent .nav-tabs .nav-link:hover{
    font-weight: 600;
    position: relative;
}
#mainTabContent .nav-tabs .nav-link.active::after, #mainTabContent .nav-tabs .nav-link:hover::after{
    content: "";
    background-color: var(--green);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
}
#mainTabContent .tab-content{
    padding: 0 9px;
}
#mainTabContent .google-map{
    border-radius: 5px;
    overflow: hidden;
}
.photo-gallery{
    padding-bottom: 40px;
}
.photo-gallery .swiper-button-next, .photo-gallery .swiper-button-prev{
    top: calc(50% - 20px);
}
.location-details{
    padding: 20px 30px 10px 30px;
}
.location-details h5, .location-details h4{
    color: var(--light-blue);
    margin-bottom: 20px;
}
.opening-hours{
    display: flex;
}
.opening-hours__left{
    width: 400px;
    max-width: 100%;
}
.opening-hours__item{
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #DCD6D6;
}
.opening-hours__item + .opening-hours__item{
    margin-top: 15px;
}
.opening-hours__day{
    font-weight: 600;
    padding-right: 15px;
}
.opening-hours__mid{
    width: 1px;
    height: auto;
    background-color: #DCD6D6;
    margin: 0 50px;
}
.opening-hours__right__item{
    display: flex;
    align-items: center;
}
.opening-hours__right__item + .opening-hours__right__item{
    margin-top: 30px;
}
.opening-hours__right__item__icon{
    flex: 0 0 40px;
    max-width: 100%;
    width: 40px;
    height: 40px;
    background-color: var(--blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.opening-hours__right__cta{
    margin-top: 40px;
}
.doctor-item{
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}
.doctor-item__img{
    flex: 0 0 318px;
    max-width: 100%;
    height: auto;
}
.doctor-item__img img{
    object-fit: cover;
    height: 100%;
}
#tab4-main .doctor-item__img img{
    /* object-position: right; */
}
.doctor-item__info{
    background-color: var(--white);
    flex: 1 1 100%;
    padding: 20px;
}
.doctor-item + .doctor-item{
    margin-top: 24px;
}
.doctor-item__info__top{
    padding-bottom: 10px;
    border-bottom: 1px solid var(--middle-grey);
    margin-bottom: 10px;
}
.doctor-item__info__top h4{
    margin-bottom: 5px;
}
.doctor-item__info__top .tag{
    color: var(--blue);
}
.doctor-item__info__mid p{
    margin-bottom: 2px;
}
.doctor-item__info__mid p span{
    font-weight: 600;
}
.doctor-item__info__btm a{
    margin-top: 20px;
}
.doctor-item__info__btm a + a{
    margin-left: 10px;
}
.doctor-details-item__header{
    border-radius: 5px 5px 0 0;
    background-color: var(--dark-blue);
    padding: 30px;
    display: flex;
    align-items: center;
}
.doctor-details-item__img{
    flex: 0 0 400px;
    max-width: 100%;
    height: 250px;
    position: relative;
    padding-right: 60px;
}
.doctor-details-item__img img{
    object-fit: cover;
    height: 100%;
    border-radius: 5px;
}
.doctor-details-item__img::after{
    content: "";
    background: url(../img/dots.png) top left no-repeat;
    background-size: 100%;
    width: 16px;
    height: 93px;
    position: absolute;
    right: 20px;
    top: 0;
}
.doctor-details-item__info h2{
    color: var(--white);
}
.doctor-details-item__info .tag{
    color: var(--light-blue);
    font-size: 20px;
}
.pos-title{
    font-weight: 600;
}
.doctor-details-item__info .pos-title{
    color: var(--white);
}
.doctor-details-item__body{
    padding: 30px;
    background-color: var(--white);
    border-radius: 0 0 5px 5px;
}
.doctor-details-item__body__description{
    margin-bottom: 40px;
}
.doctor-details-item__body__spec{
    border-top: 1px solid var(--middle-grey);
    margin-bottom: 40px;
}
.doctor-details-item__body__spec__item{
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--middle-grey);
}
.doctor-details-item__body__spec__item .title{
    color: var(--blue);
    font-weight: 600;
    flex: 0 0 24%;
}
.doctor-details-item__body__add-description{
    margin-bottom: 40px;
}
.doctor-details-item__body__cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.doctor-details-item__body__cta .back-to-doctors{
    font-weight: 600;
    color: var(--green);
}
.doctor-details-item__body__cta .back-to-doctors:hover{
    color: var(--dark-blue);
}
.doctors-details, .doctor-details-item{
    display: none;
}
.medical-fee-item__details{
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 40px;
}
.price-table{
    border: 1px solid var(--blue);
    width: 100%;
}
.price-table th, .price-table td{
    padding: 10px 20px;
}
.price-table th{
    background-color: var(--blue);
    color: var(--white);
    border-right: 1px solid var(--white);
}
.price-table th:last-child{
    border-right: 0;
}
.price-table td{
    border-right: 1px solid var(--middle-grey);
    background-color: var(--white);
}
.price-table td:last-child{
    border-right: 0;
}
.doctor-item__info__contact .doctor-item__info__contact__item:first-child{
    margin-top: 20px;
}
.doctor-item__info__contact__item{
    display: flex;
    align-items: center;
}
.doctor-item__info__contact__item + .doctor-item__info__contact__item{
    margin-top: 5px;
}
.doctor-item__info__contact__item__icon{
    flex: 0 0 25px;
    max-width: 100%;
    width: 25px;
    height: 25px;
    background-color: var(--blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.opening-hours__right__item__text a, .doctor-item__info__contact__item__text a{
    text-decoration: none;
    color: var(--text);
}
#tab5-main {
    border-radius: 5px;
    background-color: var(--white);
    padding-bottom: 30px;
    padding-top: 10px;
}
#tab5-main .location-details h3{
    color: var(--blue);
    margin-bottom: 20px;
}
.team-tabs .nav-tabs{
    justify-content: center;
    border: 0;
    background-color: var(--dark-blue);
    padding: 17px 20px;
}
.team-tabs .nav-tabs .nav-link{
    border: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    padding: 7px 59px;
    transition: all .25s ease-in-out;
    background-color: transparent;
}
.team-tabs .nav-tabs .nav-link:hover{
    color: var(--green);
}
.team-tabs .nav-tabs .nav-link.active{
    font-weight: 600;
    position: relative;
    color: var(--green);
}
.team-tabs .nav-tabs .nav-link.active::after, .team-tabs .nav-tabs .nav-link:hover::after{
    content: "";
    background-color: var(--green);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
}
.team-tabs .tab-content{
    background-color: var(--grey);
    padding: 70px 0;
}
.team-tabs .doctors-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-tabs .doctor-item{
    flex-direction: column;
}
.team-tabs .doctor-item + .doctor-item{
    margin-top: 0;
}
.team-tabs  .doctor-item__img{
    flex: 0 0 250px;
}
.single-teams .doctor-details-item__body__cta a.btn-primary{
    width: 100%;
}
.single-teams .doctor-details-item__body{
    padding: 70px 0;
    max-width: 824px;
    margin: 0 auto;
}
.doctor-details-item__header .wrap{
    max-width: 856px;
    margin: 0 auto;
}
.single-teams__header{
    background-color: var(--dark-blue);
}
.single-teams__header .doctor-details-item__header{
    max-width: 958px;
    margin: 0 auto;
    padding: 67px 35px;
}
.single-teams__header .doctor-details-item__img{
    padding-left: 34px;
    height: 265px;
    flex: 1 1 400px;
}
.single-teams__header .doctor-details-item__img::before{
    content: "";
    background: url(../img/dots.png) top left no-repeat;
    background-size: 100%;
    width: 16px;
    height: 93px;
    position: absolute;
    left: 0;
    bottom: -24px;
}
.single-teams__header .doctor-details-item__img::after{
    top: -24px;
}
.single-teams__header .doctor-details-item__info{
    flex-grow: 1;
}
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 select{
    border-radius: 5px;
    padding: 15px 25px;
}
.wpcf7 input[type=submit]{
    text-align: center;
    color: var(--white);
    background-color: var(--green);
    border-radius: 2px;
    padding: 12px 25px;
    border: 1px solid transparent;
    text-decoration: none;
    border: 0;
}
.wpcf7 input[type=submit]:hover{
    background-color: var(--blue);
}
.wpcf7 .wpcf7-not-valid-tip{
    color: #fff;
}
.wpcf7 input[type=text]::placeholder, .wpcf7 input[type=email]::placeholder{
    color: var(--text);
}
.wpcf7 .wpcf7-response-output{
    color: #fff;
}
.news-details__header{
    background-color: var(--dark-blue);
    padding: 72px 0;
}
.news-details__header__tag{
    border: 1px solid var(--green);
    border-radius: 5px;
    padding: 0px 10px;
    font-size: 14px;
    color: var(--green);
    width: 54px;
    margin-bottom: 20px;
}
.news-details__header__title{
    color: #fff;
}
.news-details__header__title h2{
    margin-bottom: 20px;
}
.news-details__header__btm{
    display: flex;
    align-items: center;
}
.news-details__header__btm > div + div{
    margin-left: 40px;
}
.news-details__header__btm__date, .news-details__header__btm__author, .recent-news-item__date{
    color: #fff;
    padding-left: 30px;
    position: relative;
}
.news-details__header__btm__date::before, .recent-news-item__date::before{
    content: "";
    background: url(../img/icon-calendar.png) top left no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 0;
}
.news-details__header__btm__author::before{
    content: "";
    background: url(../img/icon-author.png) top left no-repeat;
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 0;
}
.news-details__body{
    background-color: var(--grey);
    padding: 70px 0;
}
.news-details__body__wrap{
    display: flex;
    align-items: self-start;
}
.news-details__content__content{
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--white);
}
.news-details__recent{
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--white);
    padding: 20px;
    margin-left: 24px;
    flex: 0 0 400px;
}
.news-details__recent h4{
    margin-bottom: 20px;
}
.recent-news-item{
    display: flex;
}
.recent-news-item + .recent-news-item{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--middle-grey);
}
.recent-news-item__date{
    color: var(--text);
}
.recent-news-item__content{
    margin-left: 10px;
}
.recent-news-item__image{
    flex: 0 0 109px;
}
.recent-news-item__title a{
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}
.news-details__content__pagi{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-details__content__pagi a{
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}
.news__header{
    background-color: var(--dark-blue);
    padding: 20px 0;
}
.news__filters{
    display: flex;
    justify-content: center;
    column-gap: 50px;
}
.news__filters__field span{
    color: var(--white);
    font-weight: 600;
    padding-right: 10px;
}
.news__filters__field select{
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 30px;
    min-width: 200px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/icon-caret-down.svg) 90% center no-repeat #fff;
    background-size: 16px 9px;
}
.news__body{
    background-color: var(--grey);
}
.news__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.news__item{
    display: flex;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
    column-gap: 30px;
}
.news__item__content h4{
    margin-bottom: 30px;
}
.news__item__image{
    height: 250px;
    flex: 1;
}
.news__item__image img{
    object-fit: cover;
    height: 100%;
}
.news__item__content{
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-date{
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    background: url(../img/icon-calendar.png) left center no-repeat;
    padding-left: 30px;
    background-size: 20px 20px;
}
.news-details__header__btm__share{
    position: relative;
    padding-right: 15px;
}
.news-details__header__btm__share .cta-share:hover{
    opacity: .7;
}
.share-links{
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    align-items: center;
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-width .2s ease-in;
}
.news-details__header__btm__share:hover .share-links{
    max-width: 200px;
    opacity: 1;
    visibility: visible;
}
.share-links li + li {
    margin-left: 12px;
}
.share-links a svg{
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: all .2s ease-in;
}
.share-links a:hover svg{
    fill: var(--green);
}
.home-highlight{
    position: relative;
}
.home-highlight > .e-con-inner::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/home-highlight-bg-3.jpg) no-repeat;
    background-size: 1132px 547px;
    background-position: center;
    top: 0;
    right: 12%;
}
.doctor-details-item__body__cta__back{
    text-align: center;
    margin-top: 20px;
}
@media (min-width: 1341px){
    .elementor-23 .elementor-element.home-mission{
        margin-right: -46px;
    }
    .elementor-23 .elementor-element.home-highlight-img{
        margin-right: -50px;
    }
}
@media (max-width: 1340px){
    .icon-carousel-swiper-button.swiper-button-next, .icon-carousel-swiper-button.swiper-button-prev{
        display: none;
    }
}
@media (max-width: 1248px) {
    .services-wrapper{
        padding: 0 10px;
    }
}
@media (max-width: 959px){
    .team-tabs .doctor-item__info__btm a + a{
        margin-left: 0;
    }
}
@media (max-width: 991px){
    #site-nav .sub-menu{
        position: relative;
    }
    #site-nav .menu .menu-item-has-children.active .sub-menu{
        margin-top: 10px;
    }
    #logo img{
        max-width: 98px;
    }
    #site-nav .menu{
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        padding: 10px 0;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .25s ease-in-out;
    }
    #site-nav .menu a{
        text-align: left;
    }
    #site-nav .menu .menu-item{
        padding: 10px 20px;
    }
    #site-nav .menu.active{
        display: flex;
        opacity: 1;
        max-height: 100vh;
        visibility: inherit;
    }
    .mobile-menu-hamburger{
        display: block;
    }
    .home-banner__item{
        min-height: 500px;
    }
    .home-banner.swiper-horizontal>.swiper-pagination-bullets{
        bottom: 20px;
    }
}
@media (max-width: 767px){
    .home-banner__item h1{
        font-size: 40px;
    }
    .home-banner__item .subtitle{
        font-size: 16px;
    }
    .home-banner__item{
        min-height: 400px;
    }
    .icon-widget, .services-widget__items{
        grid-template-columns: repeat(3, 1fr);
    }
    .services-widget__items .services-widget__items__item:nth-child(n+7) {
        display: none;
    }
    .single-location-banner{
        min-height: 300px;
    }
    .single-location-wrapper, .team-tabs .tab-content, .single-teams .doctor-details-item__body, .news-details__header, .news-details__body, .news__body{
        padding: 30px 0;
    }
    .opening-hours__mid{
        margin: 0 30px;
    }
    .team-tabs .doctors-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .single-teams__header .doctor-details-item__img{
        flex-basis: 350px;
    }
    .single-teams__header .doctor-details-item__header{
        padding: 47px 10px;
    }
    .locations-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .news-details__body__wrap{
        flex-direction: column;
    }
    .news-details__recent{
        margin-left: 0;
        flex-basis: 100%;
        margin-top: 30px;
    }
    .home-highlight > .e-con-inner::before{
        right: 0;
        background-size: cover;
    }
}
@media (max-width: 575px){
    .home-banner__item h1{
        font-size: 30px;
        padding: 0 20px;
    }
    .home-banner__item .subtitle{
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .home-banner__item{
        min-height: 300px;
    }
    .single-location-banner{
        min-height: 200px;
    }
    .home-banner.swiper-horizontal>.swiper-pagination-bullets{
        bottom: 10px;
    }
    .services-widget__items .services-widget__items__item:nth-child(n+5) {
        display: none;
    }
    .icon-widget, .services-widget__items{
        grid-template-columns: repeat(2, 1fr);
    }
    .single-location-wrapper, .team-tabs .tab-content, .single-teams .doctor-details-item__body, .news-details__header, .news-details__body, .news__body{
        padding: 20px 0;
    }
    .opening-hours{
        flex-direction: column;
    }
    .opening-hours__mid{
        display: none;
    }
    .opening-hours__left{
        width: 100%;
        margin-bottom: 30px;
    }
    .doctor-details-item__header, .doctor-item{
        flex-direction: column;
    }
    .doctor-details-item__img{
        flex: 1 1 100%;
        margin-bottom: 30px;
        padding-right: 30px;
    }
    .doctor-details-item__img::after{
        right: 0;
    }
    #mainTabContent .nav-tabs .nav-link{
        padding-left: 30px;
        padding-right: 30px;
    }
    .team-tabs .nav-tabs .nav-link{
        padding-left: 25px;
        padding-right: 25px;
    }
    .doctor-item__img{
        flex: 1 1 100%;
    }
    .news__list, .services-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .news__filters{
        column-gap: 20px;
    }
    .news__filters__field select{
        min-width: 100px;
    }
    .team-tabs .doctors-list{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 400px){
    .news-details__header__btm{
        flex-direction: column;
        align-items: flex-start;
    }
    .news-details__header__btm > div + div{
        margin-left: 0;
        margin-top: 20px;
    }
}