@font-face {
    font-family: "zeta";
    src: url("/application/themes/ataka/assets/font/zeta.woff2") format("woff2-variations"), 
            url('/application/themes/ataka/assets/font/zeta.ttf') format('truetype-variations');
    font-weight: 100 800;
    font-style: normal;
    font-style: oblique 0deg 20deg;
    font-display: swap;
}

:root {
    --color-main: #00a3c8;
    --color-main-hover: #12c1e9;
    --transition: all .3s ease;

    --header-height: 45px;

    --swiper-theme-color: var(--color-main);

}

.theme-color{
    color: var(--color-main);
}
.text-uppercase{
    text-transform: uppercase;
}
.ml-auto{
    margin-left: auto;
}
html{
    font-family: "Roboto", sans-serif;
    font-size: 12px;
}
body{
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.2em;
    color: #2e3838;
    font-weight: 400;
    background-color: #fff;
}

a{color: currentColor; text-decoration: none; transition: var(--transition);}
a:hover{ color: currentColor; }


.h1{font-size: 1.4rem; font-weight: 800; font-family: "zeta", sans-serif;}
.h2{font-size: 1.2rem; font-weight: 800; font-family: "zeta", sans-serif;}
.h3{font-size: 1.1rem; font-weight: 700;}
.h4{font-size: 1rem; font-weight: 700;}

section.page-content{
    padding: 0 0 4rem;
}

.btn{
    --bs-btn-border-radius: 2rem;
    --bs-btn-disabled-bg: #b6b6b6;
    --bs-btn-disabled-border-color: #b6b6b6;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-main);
    --bs-btn-border-color: var(--color-main);

    --bs-btn-hover-bg: var(--color-main-hover);
    --bs-btn-hover-border-color: var(--color-main-hover);
}

.swiper-button-next, .swiper-button-prev{
    display: none;
}

.header-top{
    padding: 0.5rem 0;
    display: none;
    color: #fff;
    background-color: var(--color-main);
    padding: 0.5rem 0;
}
.header-top-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-top-right{
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.social-media{
    display: flex;
    align-items: center;
    gap: 0.2rem
}
.social-icon{
    display: block;
    position: relative;
    color: #fff;
}
.social-icon::before{
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    margin: auto;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: currentColor;
}
.social-icon.viber::before{mask-image: url(/application/themes/ataka/assets/icon/viber.svg)}
.social-icon.whatsapp::before{mask-image: url(/application/themes/ataka/assets/icon/whatsapp.svg)}
.social-icon.vkontakte::before{mask-image: url(/application/themes/ataka/assets/icon/vk.svg)}
.social-icon.imo::before{mask-image: url(/application/themes/ataka/assets/icon/imo.svg)}
.social-icon.instagram::before{mask-image: url(/application/themes/ataka/assets/icon/instagram.svg)}
.social-icon.max::before{mask-image: url(/application/themes/ataka/assets/icon/max.svg)}


.header{
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 12;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
.header-wrapper{
    position: relative;
    height: calc(var(--header-height) + 1rem); 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header .logo{
    height: var(--header-height);
    width: auto;
}
.header .btn-appointment{
    display: none;
}
.btn-mobile-menu{
    color: var(--color-main);
    margin-left: auto;
}
.phone-a1::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background-image: url(/application/themes/ataka/assets/icon/a1.png);
    background-size: contain;
}
.phone-mts::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background-image: url(/application/themes/ataka/assets/icon/mts.png);
    background-size: contain;
}
.map-marker::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 18px;
    margin-right: 5px;
    background-image: url(/application/themes/ataka/assets/icon/map-marker.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* side-menu */
.side-menu-backdrop{
    background-color: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1069;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.side-menu-backdrop.show{
    opacity: .5;
    visibility: visible;
}
#side-menu.open {
    right: 0;
}
#side-menu {
    position: fixed;
    width: 400px;
    max-width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 1070;
    top: 0;
    right: -420px;
    box-shadow: 0 0 20px rgb(from var(--color-dark) r g b / 0.5);
    display: flex;
    flex-direction: column;

    transition: right 0.4s ease-out;
}
.side-menu-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #dff9ff;
    color: var(--color-dark);
}
.side-menu-header .btn-mobile-menu-close{
    padding: 0.5rem;
    transition: var(--trans);
}
.side-menu-header .btn-mobile-menu-close:hover{
    color: var(--color-red);
}
.side-menu-body{
    flex-grow: 1;
    overflow-y: auto;
}
.side-menu-body ul.menu-links{
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.side-menu-body ul.menu-links a{
    display: block;
    padding: 0.3rem 1rem;
    font-weight: 600;
    color: #333;
    transition: all .4s ease;
}
.side-menu-body ul.menu-links a:hover{
    color: var(--color-red);
}

.side-menu-footer{
    padding: 1rem 2rem;
    color: #fff;
    background-color: #1e2726;
}
.side-menu-footer .social-media{
    padding: 1rem 0;
}

#side-menu .btn-order{
    background-color: var(--color-red);
    padding: 0.6rem 1.2rem;
}
#side-menu .bbtn-order:hover{
    background-color: var(--color-red-hover);
}

/**/
.page-header{
    padding: 3rem 0 1rem;
}
.page-title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1em;
}
.page-header ol.breadcrumb{
    display: flex;
    gap: 0.5rem;
    padding: 0;
    font-size: 0.8rem;
}
.page-header ol.breadcrumb li::after{
    content: '/';
    padding-left: 0.5rem;
}
.page-header ol.breadcrumb li:last-child::after{
    display: none;
}
.page-header ol.breadcrumb li a{
    color: #333;
    transition: all .4s ease;
}
.page-header ol.breadcrumb li.active{
    color: #777;
}
.page-header ol.breadcrumb li a:hover{
    color: var(--color-main);
}

.section-title{
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}
.title-icon img{
    height: 34px;
    width: auto;
    padding-bottom: 0.5rem;
}
/* home-slider */
.home-slider .slide-content{
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 3rem 0 1rem;
}
.home-slider .slide-text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.home-slider .slide-text .pre-title{
    font-size: 0.8rem;
    text-transform: uppercase;
    width: fit-content;
    padding: 0.3rem 1rem;
    color: var(--color-main);
    border: 1px var(--color-main) solid;
    border-radius: 2rem;
}
.home-slider .slide-text .title{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1em;
    color: #161616;
}
.home-slider .slide-text .feature{
    display: flex;
    margin-top: 0.5rem;
}
.home-slider .slide-text .feature .name{
    font-weight: 700;
}
.home-slider .slide-text .feature svg{
    color: var(--color-main);
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}
.home-slider .slide-content .slide-image{
    flex: 1 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    height: min-content;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.home-slider .slide-content .slide-image img{
    width: 100%;
    height: auto;
}

.home-slider .swiper-info{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
}
.home-slider .swiper-pagination{
    position: relative;
    width: fit-content;
}
.home-slider .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
}

/* home-boxes */
.home-boxes{
    padding: 0 0 2rem;
}
.home-boxes-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.home-box{
    position: relative;
    border-radius: 2rem;
    padding: 1.6rem 1.6rem 4rem;
    overflow: hidden;
    border-top: 4px solid var(--color-main);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.home-box .shedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.home-box .h2 {
    margin-bottom: 1rem;
}
.home-box .phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.home-box .btn{
    position: absolute;
    bottom: 1.6rem;
    left: 1.6rem;
}

/* about */
section.about{
    padding: 2rem 0 4rem;
}
.about-image{
    width: 100%;
    height: auto;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
}

/* services */
.page-template-homepage .services{
    padding: 4rem 0;
    background-color: #f5f5f5;
}
.services .service-title{
    padding: 2rem 0;
}

.ccm-page-id-200 .page-content{
    background-color: #f5f5f5;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.services-grid .service-box{
    background-color: #fff;
    border-radius: 1.6rem;
    padding: 1rem;
    overflow: hidden;
    border-top: 4px solid var(--color-main);

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.services-grid .service-box .service-top{
    flex-direction: column;
    display: flex;
    gap: 0.5rem;
}

.services-grid .service-box h5{
    font-size: 1.2rem;
    line-height: 1.2em;
}
.services-grid .service-box p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* Количество строк */
    overflow: hidden;
}
.services-grid .service-box .btn{
    width: fit-content;
    margin-top: auto;
}
.services-grid .service-box .service-icon {
    width: 30px;
    height: 30px;
}

/* doctors */
section.doctors{
    padding: 4rem 0;
    position: relative;
}
.doctor-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    padding: 2rem 0;
}
.doctor-card{
    aspect-ratio: 1/1.7;
    background-color: #fff;
    border-radius: 2rem;
    border-bottom: 4px solid var(--color-main);
    position: relative;
    overflow: hidden;
}
.doctor-card .doctor-photo img{
    width: 100%;
}
.doctor-card .doctor-info{
    position: absolute;
    padding: 0.6rem;
    background-color: #f7f8fa;

    display: flex;
    flex-direction: column;

    z-index: 1;
    bottom: -3rem;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
}
.doctor-card:hover .doctor-info{
    bottom: 0;
}

.doctor-card .doctor-info h4{
    height: 3rem;
    margin: 0;
}
.doctor-card .doctor-info h4 .lastname{
    font-size: 1.2em;
}
.doctor-card .doctor-info h6{
    height: 2.4rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-main);
}
.doctor-card .doctor-info .action{
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
section.doctors .swiper-pagination{
    padding: 1rem 0;
    position: relative;
}

/* accordion */
.section-prices .section-content{
    max-width: 800px;
    margin: 0 auto;
}
.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.collapse:not(.show) {
    display: block;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.accordion-collapse.show {
    max-height: 500px;
}
.section-prices .section-content{
    max-width: 800px;
    margin: 0 auto;
}


.services-accordion{
    margin: 2rem 0;
}
.services-accordion .accordion-item, .faq-accordion .accordion-item{
    border: none;
    border-radius: 1.4rem;
    overflow: hidden;
    border-top: 4px solid var(--color-main);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.services-accordion .accordion-body img{
    border-radius: 1.6rem;
    width: 60%;
    margin-bottom: 1rem;
}
.services-accordion .accordion-item .service-icon {
    width: 50px;
    height: 50px;
}

/*  */

.section-gallery{
    padding: 4rem 0;
}
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.gallery-grid .gallery-item img{
    border-radius: 1rem;
    width: 100%;
}

.section-reviews{
    position: relative;
    background-color: var(--color-main);
    padding: 3rem 0;
    margin: 3rem 0;
    color: #fff;

    --swiper-theme-color: #fff;
}
.review-item .comment {
    position: relative;
    height: 15rem;
}

.comment-overlay {
    padding: 1rem 1rem;
    border: 1px #fff solid;
    background-color: var(--color-main);
    border-radius: 1.6rem;

    cursor: pointer;

    height: 15rem;
    min-height: 15rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.comment-overlay p{
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto; 

    font-style: italic;
    margin-top: 1rem;
 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    overflow: hidden;
}
.comment-overlay.open p {
    display: block;
}
.comment-overlay svg.quote{
    width: 30px;
    height: 30px;
}


.review-item .info{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0 0;
}
.review-item svg.star{
    width: 12px;
    height: 12px;
}
.section-reviews .swiper-pagination{
    position: relative;
    margin-top: 2rem;
}

.overlay-reviews {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;                       
    opacity: 0;
    pointer-events: none;              
    transition: opacity 0.3s ease;
}
.overlay-reviews.visible {
    opacity: 1;
    pointer-events: auto;                
}

/* blog section */

.blog-section {
    padding: 4rem 0;
    position: relative;
}
.blog-section .swiper{
    padding: 2rem;
}

.blog-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.blog-card{
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.blog-card .blog-card-header img{
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: contain;
}
.blog-card .blog-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.blog-card .blog-card-title{
    font-size: 1.2rem;
    line-height: 1.2em;
}
.blog-card .public-date{
    font-size: 0.8rem;
    color: #999;
}
.blog-card .blog-card-description{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* Количество строк */
    line-clamp: 4;
    overflow: hidden;
}

/* price-list */
.price-block{
    padding: 50px 0; 
    max-width: 800px; 
    margin: 0 auto;
}
.level-1 .service-title{
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem;
    background-color: #e6e6e6;
    margin: 1rem 0;
}
.level-2 .service-title{
    font-weight: bold;
    padding: 1rem 0;
}

.price-line{
    display: flex;
    justify-content: space-between;
    padding: 0 0 0.5rem;
}
.price-line .procedure{
    flex-grow: 1;
}
.price-line .procedure a{
    font-weight: 400;
    font-style: italic;
    color: #333;
}
.price-line .price{
    font-weight: 600;
    min-width: 120px;
    text-align: right;
}
.price-line:hover .procedure a{
    color: var(--color-main);
}
.price-line:hover .price{
    color: var(--color-main);
}

/* service page */
.post-image img{
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 1.6rem;
}
.post-description{
    margin-top: 2rem;
    padding: 1.6rem 1.6rem 1.6rem 3rem;
    background-color: #f6f6f6;
    border-radius: 1.6rem;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    border-left: 4px solid var(--color-main);
}
.post-content{
    padding: 2rem 0;
}
.post-content img{
    width: 100%;
    height: auto;
}

.service-content{
    margin-top: 2rem;
    padding: 1.6rem;
    background-color: #e6e6e6;
    border-radius: 1.6rem;
}

/* ----------------------------------------- */

footer{
    padding: 4rem 0 5rem;
    background: rgb(37, 39, 46) ;
    color: #fff;
}
footer .logo{
    width: 120px;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
}
footer .footer-title{
    color: #e6e6e6;
    margin-bottom: 1.6rem;
}
footer .footer-title:after{
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--color-main);
    margin-top: 0.5rem;
}

footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li{
    margin-bottom: 0.3rem;
}
footer ul li a{
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}
footer ul li a:hover{
    color: var(--color-main);
}

.footer-bottom{
    padding-bottom: 5rem;
    background-color: #000;
    color: #ccc;
}
.footer-bottom .copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}
/* ----------------------------------------------------------------------------------- */
/* appointment-widget.css */
.appointment-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.appointment-panel-btn {
    padding: 12px 30px;
    font-size: 18px;
}

.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appointment-modal-content {
    background: white;
    border-radius: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.appointment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 1rem 2rem;
}
.appointment-modal-header h3{
    margin: 0;
}

.appointment-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.appointment-modal-body {
    padding: 1rem 2rem;
    overflow-y: auto;
}

.appointment-step-1 {
    display: flex;
    gap: 2rem;
}

.appointment-doctor-photo{
    width: 100%;
    aspect-ratio: 1;
}
.appointment-doctor-photo img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1rem;
    object-fit: cover;
    object-position: top center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}
.air-datepicker-cell.-selected- {
    color: #fff !important;
    background: var(--color-main) !important;
}
.appointment-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.appointment-time-slots {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;

    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.time-slot {
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s;
    user-select: none;
}
.time-slot.free {
    background: #cffaba;
    cursor: pointer;
}
.time-slot.taken {
    background: #faceba;
}
.time-slot.free:hover {
    background: #b1f5b4;
}
.time-slot.free.selected {
    border-color: var(--color-main);
    background: var(--color-main);
    color: white;
}

.appointment-modal-footer {
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group input {
    flex: 1;
}

.phone-group button {
    white-space: nowrap;
}

.appointment-step-2 input[type="text"],
.appointment-step-2 input[type="tel"],
.appointment-step-2 input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.appointment-step-2 input:disabled {
    background: #f5f5f5;
}
#phone-confirmation-message{
    color: rgb(185, 10, 10);
    font-weight: 700;
}

.sms-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sms-dialog-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.sms-dialog-content h3 {
    margin-top: 0;
    text-align: center;
}

.sms-dialog-content input {
    width: 100%;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin: 15px 0;
}

.sms-dialog-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.appointment-result {
    text-align: center;
    padding: 40px 20px;
}

.result-content h3 {
    margin-bottom: 20px;
}

.result-content p {
    margin-bottom: 15px;
    color: #666;
}

.no-times {
    color: #999;
    font-style: italic;
    padding: 20px 0;
    text-align: center;
}    
/* --------------- */

@media (min-width: 992px) {
    :root{
        --header-height: 60px;
    }
    html, body{
        font-size: 16px;
    }
    .h1{font-size: 3rem}
    .h2{font-size: 2rem}
    .h3{font-size: 1.6rem}
    .h4{font-size: 1.2rem}

    .swiper-button-next, .swiper-button-prev{
        display: block;
    }

    .header-top{
        display: block;
    }

    .header .logo{
        height: var(--header-height);
    }

    .home-slider .slide-content{
        flex-direction: row;
    }
    .home-slider .slide-content .slide-image img{
        width: 600px;
        height: 400px;
    }

    .home-boxes-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .about-image{
        margin-top: 0;
    }

    .services-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .services-grid .service-box{
        border-radius: 2rem;
        padding: 2rem;
        gap: 1rem;
    }
    .services-grid .service-box .service-top{
        gap: 1rem;
        flex-direction: row;
    }
    .services-grid .service-box .service-top .h4{
        font-size: 1.1rem;
    }

    .services-grid .service-box .service-icon {
        width: 50px;
        height: 50px;
    }
    .doctor-card .doctor-info{
        padding: 1rem;
        gap: 0.5rem;
        bottom: -4rem;
    }

    .doctor-card .doctor-info h4{
        height: 4rem;
    }

    .doctor-card .doctor-info h6{
        height: 3rem;
        font-size: 1rem;
    }
    .services-accordion .accordion-item img{
        width: 100%;
        margin-bottom: 0;
    }

    .gallery-grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    .gallery-grid .gallery-item img{
        border-radius: 1rem;
    }

    .comment-overlay {
        padding: 1rem 1.6rem;
        border-radius: 2rem;
    }
    .comment-overlay svg.quote{
        width: 50px;
        height: 50px;
    }
    .review-item svg.star{
        width: 20px;
        height: 20px;
    }
    .review-item .info{
        justify-content: space-between;
        flex-direction: row;
    }
    .review-item .author{
        text-align: right;
    }


}



