html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #888 #f4f4f4;
}

body{
    margin: 0;
    padding: 0;
    font-family: "e-Ukraine-UltraLight", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #201f1f;
}

p {
    white-space: pre-line;
}

.fc{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.w-100{ width: 100%!important; }

h1{
    font-weight: 300;
    font-size: 88px;
    line-height: 88px;
    letter-spacing: -4px;
}

h2{
    font-weight: 300;
    font-size: 68px;
    line-height: 68px;
    letter-spacing: -2px;
}

h3 {
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -1px;
}

.header-text{
    color: #736d6d;
    border-bottom: 1px solid #111;
}

a{
    color: #6b6565;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}
a:hover{ color: #b88525; }

.f-title{
    font-weight: 600;
    color: #f7c336;
    text-shadow: #4d3e00c4 1px 0 10px;
}

header{
    padding: 10px 0;
    background-color: #e3e4d9;
    z-index: 1004;
    transition: all .3s linear;
    position: sticky;
    top: 0;
}

header.up{ transform: none; }

header.down { transform: translateY(-100%); }

.container, header > div, footer > div{
    margin: 0 auto;
    max-width: 1200px;
}

.logo-block{
    display: flex;
    align-items: flex-end;
}

.logo-block > img {
    margin-right: 10px;
    height: 98px;
}

.highcall{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
}

.highcall a{
    color: #0057ff;
    font-size: 14px;
    line-height: 18px;
}


.flex{ display: flex; }
.flex-column{ flex-direction: column; }
.justify-center{ justify-content:center; }
.justify-start{ justify-content:flex-start; }
.justify-end{ justify-content:flex-end; }
.justify-between{ justify-content:space-between; }
.justify-around{ justify-content:space-around; }
.justify-evenly{ justify-content:space-evenly; }
.align-center{ align-items:center; }
.align-start{ align-items:flex-start; }
.align-end{ align-items:flex-end; }
.align-stretch{ align-items:stretch; }
.align-baseline{ align-items:baseline; }

.nav-menu{
    display: flex;
    align-items: end;
}

ul{
    margin: 0;
    line-height: 28px;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

section{ padding-top: 50px; }

/*MOBILE MENU*/
/* Burger button */
.burger-block{
    position: fixed;
    top: 24px;
    right: 15px;
    cursor: pointer;
    padding: 20px 20px 10px 20px;
    background-color: #b88525;
}
.burger-block:hover{ background-color: #d89a27; }
.burger {
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #e3e4d9;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu__close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.mobile-menu__list a {
    font-size: 22px;
    text-decoration: none;
    color: #6b6565;
    font-weight: 500;
}
.mobile-menu__list a:hover{ color: #b88525; }

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}
.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
/*END MOBILE MENU*/


/* LANGUAGE */
.lang-switcher {
    position: relative;
    display: inline-block;
    font-family: system-ui, sans-serif;
}
.lang-switcher:hover { box-shadow: 0 10px 25px rgb(184 133 37); }
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}
.lang-current svg { transition: transform 0.2s ease; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 140px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}
.lang-dropdown li:hover { background: #f5f5f5; }

.scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background-color: #73777a;
    color: white;
    font-size: 40px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s, transform 0.4s;
    opacity: 0;
    visibility: hidden; 
    transform: scale(0.8);
}
.scroll-to-top:hover { background-color: #5e6164; }
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.post-header-sub {
    padding: 20px;
    background-image: url('/img/head_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.doctor-section {
    background: #e3e4d9;
    padding-bottom: 50px;
}
.doctor-section-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.doctor-card {
    width: 380px;
    position: relative;
    color: #fff;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 10px 10px 25px rgba(211, 144, 67, 0.621);
}
.doctor-card:hover .doctor-card-hover{
    opacity: 1;
    visibility: visible;
}
.doctor-card-hover{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 360px;
    height: 444px;
    border-radius: 12px;
    border: 1px solid #e4e5e6;
    background: #d9e8f6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 17px 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s linear;
    overflow: hidden;
}
.doctor-card-hover-block{
    position: relative;
    cursor: pointer;
}
.doctor-card-hover-top-img{
    position: absolute;
    top: 17px;
    left: 17px;
}
.doctor-card-hover-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.doctor-card-hover-info p{
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #26283a;
}
.doctor-card-hover-info .doctor-card-hover-fullinfo{
    font-size: 14px;
    font-weight: 500;
    color: #26283a;
    line-height: 22px;
    margin-top: 10px;
}
.doctor-card-img {
    width: 100%;
    height: 475px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    cursor: pointer;
}
.doctor-card:hover img { transform: scale(1.03); }
.doctor-card-img img { transition: transform 0.4s ease; }
.doctor-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgb(249 158 74 / 43%) 100%
    );
    z-index: 1;
}
.doctor-card-skills {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 9px;
    border-radius: 8px;
    border: 1px solid hsla(0, 0%, 100%, .14);
    background: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(3.8499999046px);
    backdrop-filter: blur(3.8499999046px);
}
.doctor-card-skills span:first-child {
    color: #fff;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.doctor-card-skills span:nth-child(2) {
    color: #fff;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
}
.doctor-card-about {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: 18px;
}
.doctor-card-about p:first-child {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}
.doctor-card-about p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
}
.doctor-section-right {
    margin-left: 60px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}
.card-title {
    align-self: flex-end;
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 24px;
}
.card-initials {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-top: 110px;
    font-size: 14px;
    line-height: 18px;
}
.card-initials span:first-child {
    font-weight: 700;
    color: rgba(90, 109, 180, .8);
}
.card-initials span:nth-child(2) {
    color: rgba(31, 31, 41, .8);
    font-weight: 400;
}

.directions-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin: 40px 0;
    padding: 20px 40px;
    font-size: 14px;
}
.directions-block button { margin-top: 30px; }

.home-main {
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-block {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 70px;
    background-color: #5153437d;
}
.home-img-block {
    max-width: 503px;
    position: absolute;
    top: -50px;
    left: 400px;
    z-index: -1;
}
.img-block { max-width: 500px; }
.home-text {
    font-size: 28px;
    line-height: 48px;
    letter-spacing: -1px;
    text-shadow: #4d3e00c4 1px 0 10px;
}
.icon-quote {
    width: 70px;
    height: auto;
}

.banner {
    width: 344px;
    padding: 8px;
    border-radius: 16px;
    background-color: #f3f4fc;
}
.banner > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner-img {
    display: block;
    height: 181px;
    position: relative;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.fit-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-title > a {
    color: #201f1f;
    font-weight: 100;
    font-size: 28px;
    line-height: 32px;
    font-family: "e-Ukraine-Regular", sans-serif;
    letter-spacing: -1px;
}
.banner-description {
    margin: -20px 10px 10px;
    color: #4e5362;
    font-weight: 300;
    line-height: 21px;
    font-family: "e-Ukraine-Light", sans-serif;
    font-size: 14px;
}

.progress {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 12px;
    border-radius: 4px;
    background-color: rgba(201, 205, 224, .4);
    color: #111;
}
.progress-top {
    position: relative;
    background-color: #c9cde0;
    border-radius: 10px;
    height: 8px;
}
.progress-percent {
    position: absolute;
    top: calc(-100% - 24px);
    padding: 2px 6px;
    border-radius: 10px;
    background-color: #4e5362;
    z-index: 2;
    font-size: 10px;
    line-height: 18px;
    color: #fff;
    font-family: "e-Ukraine-Medium", sans-serif;
}
.progress-filler {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 10px;
    background-color: #4e5362;
    z-index: 2;
}
.progress-labels {
    display: flex;
    justify-content: space-between;
    margin: 0 0 7px;
    padding: 0 12px;
}
.progress .label {
    font-size: 12px;
    line-height: 21px;
    color: #4e5362;
    font-family: "e-Ukraine-Light", sans-serif;
}
.progress-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 12px;
}
.progress-numbers .number {
    font-size: 18px;
    line-height: 24px;
    font-family: "e-Ukraine-Medium", sans-serif;
    font-weight: 200;
    color: #353841;
}
.progress-numbers .number.second {
    grid-column: 2 / 3;
    text-align: right;
}

.btn {
    display: flex;
    justify-content: center;
    color: #70716e;
    background: #c9e7f4;
    border: 1px solid #0057ff;
    padding: 12px 24px;
    font-family: "e-Ukraine-UltraLight", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    cursor: pointer;
    align-items: center;
    border-radius: 40px;
    width: auto;
    outline: none !important;
    box-shadow: none !important;
    transition: all .5s ease-out;
}
.btn:hover {
    color: #fff;
    background-color: #4394b6;
}
.btn.cancel {
    background-color: #b74531;
}
.btn.cancel:hover {
    background-color: #933929;
}
.btn-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 500;
    width: 100%;
    text-align: left;
    white-space: nowrap;
}
a.btn:hover{ color: #ffffff; }

.projects-cards {
    margin-top: 80px;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 88px 30px;
    justify-items: center;
}
.projects-cards-item {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    border-radius: 16px;
    background-color: #e8ebdb;
}

.news-card {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
}
.news-card-bottom, .report-card-bottom { margin-top: 30px; }

.report-card {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #fefefe;
    border-radius: 16px;
    background-color: #e9e7e1;
    padding: 8px;
}
.report-card:hover, .news-card:hover { border: 1px solid #71f8fd; }

.project-card-img {
    height: 242px;
    position: relative;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.project-card-marker {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f3f4fc;
    font-weight: 500;
}

.h2 {
    font-size: 40px;
    font-weight: 100;
    line-height: 110%;
    font-family: "e-UkraineHead-Regular", sans-serif;
}

/* Reports */
.reports-block {
    margin-top: 80px;
    margin-bottom: 80px;
}
.reports-block .tabs-option {
    font-size: 40px;
    line-height: 110%;
    font-weight: 400;
    letter-spacing: -1px;
    font-family: "e-Ukraine-Regular", sans-serif;
}
.tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 88px;
    border-bottom: 1px solid rgba(170, 178, 202, .4);
    padding-bottom: 26px;
}
.tabs-options {
    display: flex;
    align-items: flex-start;
}
.tabs-option {
    margin-right: 64px;
    color: #111;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    font-family: "e-Ukraine-Bold", sans-serif;
    font-weight: 500;
    z-index: 1;
    transition: all .3s linear;
}
.tabs-option.active:after { opacity: 1; }
.tabs-option:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    top: calc(100% + 22px);
    background-color: #4e51ff;
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transition: opacity .3s linear;
}
.tabs-content {
    margin-bottom: 64px;
    width: 100%;
    position: relative;
    border: 1px solid #4d4d4d;
    border-radius: 16px;
    overflow: hidden;
}
.tabs-content-wrapper {
    width: 100%;
    height: 688px;
}
.tabs-content-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-width: 0;
}
.reports-block-btn { max-width: 400px; }

/* Donation */
.donation-block {
    max-width: 800px;
    margin-top: 40px;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e8ebdb;
    background: #e8ebdb;
}
.donation-block-title, .copy-block-main { margin-bottom: 40px; }
.richtext > div { margin-bottom: 12px; }
.richtext > div h3 {
    font-weight: 100;
    display: inline;
    font-size: 16px;
    line-height: 1.5;
}
.donation-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #aab2ca;
    border-radius: 80px;
    position: relative;
    cursor: pointer;
}
.donation-field-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    position: relative;
    background-color: #f3f4fc;
    transition: background-color .3s linear;
    border-radius: 80px;
}
.donation-field-inner:hover { background-color: #cad4c7; }
.donation-field-label {
    font-family: "e-Ukraine-Medium", sans-serif;
    font-weight: 400;
    margin-bottom: -20px;
}
.donation-field-text {
    color: #4e51ff;
    word-break: break-word;
    padding-right: 10px;
    font-family: "e-Ukraine-Light", sans-serif;
}
.donation-field-action {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color .3s linear, background-color .3s linear, border-color .3s linear;
}
.donation-field-action span { font-family: "e-Ukraine-Medium", sans-serif; }
.donation-field-icon-copy { margin-left: 10px; }
.hidden { display: none; }
.about-block {
    margin-top: 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.about-content {
    max-width: 500px;
    min-width: 280px;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

/* Лента */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Слайд */
.slide {
    min-width: 100%;
    aspect-ratio: 16 / 9; /* адаптивная высота */
    overflow: hidden;
}

/* Картинка */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 8px;
}
.prev:hover, .next:hover{
    background: rgba(0,0,0,0.8);
}
.prev { 
    font-size: 30px;
    left: 70px; 
}
.next { 
    font-size: 30px;
    right: 70px;
}

/* CONTACT-FORM */
.contact-form {
    padding: 80px 16px;
    background: #f8fafc;
}
.contact-form__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    background: #e3e4d9;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.66);
}
.contact-form__divider {
    width: 1px;
    background: #e5e7eb;
}
.contact-form__fields, 
.contact-form__info { width: 100%; }
.contact-form__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-form__title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #111827;
}
.contact-form__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}
.contact-form__note {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form__input,
.contact-form__textarea {
    width: auto;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #c9e7f4;
    box-shadow: 0 0 0 4px #c9e7f4;
}
.contact-form__recaptcha { margin-top: 8px; }
.contact-form__submit { margin-top: 8px; }
/*..............*/


footer {
    margin-top: 40px;
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #434141;
    color: #fff;
}
.footer-block {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-nav ul li { margin-top: 8px; }
.footer-nav ul li a { color: #ccc; }
.footer-nav ul li a:hover { color: #fff; }
.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.copyright {
    line-height: 18px;
    font-size: 12px;
    margin-top: 48px;
}

/* Socials */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.footer-socials-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #aab2ca;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}
.footer-socials-instagram, 
.footer-socials-facebook,
.footer-socials-telegram { transition: all .3s linear; }
.footer-socials-facebook:hover {
    border-color: #1877f2;
    background-color: #1877f2;
}
.footer-socials-telegram:hover {
    border-color: #2b9bd2;
    background-color: #2b9bd2;
}
.footer-socials-instagram:hover {
    border-color: #f33fdb;
    background: radial-gradient(43.75% 43.75% at 0 89.58%, #ff6b00 0, rgba(255, 122, 0, 0) 100%), radial-gradient(108.33% 108.33% at 31.25% -8.33%, #0057ff 0, rgba(175, 0, 255, 0) 100%), radial-gradient(32.29% 32.29% at 34.38% 96.88%, #ffe24a 0, #da2f7c 100%);
}


.noerror { display: none; }
.error {
    font-size: 13px;
    color: #ef4444;
    display: block;
}
.success{
    color: green;
    display: none;
}

.header-phone{
    /* cursor: pointer; */
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* .header-phone:hover{
    background-color: #cdcec0;
} */
.header-phone-block{
    display: flex;
    flex-direction: column;
    line-height: 18px;
}
.header-phone-icon{
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header-phone-icon img, 
.header-phone-icon-mob img{
    width: 30px;
}
.header-phone-block-sing{
    cursor: pointer;
    color: #b88525;
}
.header-phone-block-sing:hover{
    color: #eba729;
}

.header-phone-icon-mob{
    cursor: pointer;
    display: none;
}
.doctor-cart-button {
    cursor: pointer;
    max-width: 235px;
    margin: 30px auto 40px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid #5a6db4;
    transition: all .2s ease;
}
.doctor-cart-button:hover{
    border-radius: 15px;
}
.doctor-card-hover-info .doctor-card-hover-exp{
    font-weight: 500;
    font-size: 16px;
}
.service-block{
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-title{
    max-width: 200px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.service-cost{
    font-weight: 600;
    color: #b88525;
}
.disabled{
    opacity: .2;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 480px) {
    body { line-height: 24px; }
    .post-header-sub { padding: 0px; }
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
    }
    .home-main {
        height: auto;
        gap: 20px;
    }
    .home-block {
        padding: 10px;
        border-radius: 25px;
    }
    h1 {
        font-size: 2.2em!important;
        letter-spacing: -1px!important;
    }
    h2 {
        font-size: 26px!important;
        line-height: 26px!important;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .home-text {
        font-size: 16px!important;
        line-height: 24px!important;
    }
    .doctor-section-right { margin-left: 10px; }
    .doctor-card{ width: 300px; }
    .doctor-card-img {
        width: 100%;
        height: 436px;
    }
    .doctor-card-img img {
        width: 300px;
        height: 436px;
        object-fit: cover;
    }
    .doctor-card-hover {
        width: 270px;
        height: 402px;
    }
    .header-phone { display: none; }
    .donation-field-inner { justify-content: center; }
    /* .slides img { height: 200px; } */
    .next { right: 20px; }
    .prev { left: 20px; }
    .tabs-options {
        line-height: 18px;
        flex-direction: column;
        gap: 10px;
    }
    .tabs-option:after { top: calc(100% + 2px); }
    h1 { font-size: 2.1em; }
    .footer-logo-block { margin: 10px 10px; }
}

/* Desktop */
@media (min-width: 768px) {
    .burger-block,
    .mobile-menu,
    .menu-overlay { display: none; }
}

@media (max-width: 768px) {
    .contact-form__container { flex-wrap: wrap; }
    .logo-block > img { height: 88px; }
    .logo-block { align-items: center; }
    .nav-menu, 
    .container:has(.highcall), 
    .nav-menu-block { display: none; }
    .projects-cards {
        grid-template-columns: 1fr!important;
        grid-gap: 88px 0;
    }
    /* .slides img { height: 300px; } */
    .tabs-option {
        font-size: 20px!important;
        margin-right: 20px;
        line-height: 18px;
    }
    h1 { font-size: 3.1em; }
    .donation-field-inner {
        flex-wrap: wrap;
        padding: 3px 10px;
        font-size: 12px;
    }
    .lang-switcher{
        position: fixed;
        top: 38px;
        right: 160px;
    }
    .header-phone-icon-mob{
        display: block;
        position: fixed;
        top: 40px;
        right: 110px;
    }
}

@media (max-width: 820px) {
    h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .home-text {
        font-size: 20px;
        line-height: 36px;
    }
    .slider { display: none; }
    .doctor-section-block { flex-wrap: wrap; }
}

@media (max-width: 900px) {
    .contact-form__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form__divider, 
    .header-btn { display: none; }
}

@media (max-width: 1024px) {
    nav ul li { margin: 0 5px; }
    /* .slides img { height: 500px; } */
    .home-img-block { display: none; }
    h1 {
        font-size: 3.9em;
        text-align: center;
    }
    .tabs-option {
        font-size: 30px!important;
        margin-right: 30px;
        line-height: 24px;
    }
    .directions-block{
        flex-wrap: wrap;
        justify-content: center
    }
}

@media (max-width: 1250px) {
    header, 
    .container { padding: 10px 10px; }
    .projects-cards { grid-template-columns: repeat(2, 1fr); }
    /* .slides img { height: 600px; } */
    .banner { display: none; }
    .copyright { margin-left: 10px; }
}
