@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/bebasneuecyrillic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal: #008ca1;
    --teal-dark: #006d84;
    --orange: #ED8234;
    --cream: #f8f5ec;
    --white: #ffffff;
    --text-light: #f0fbff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --gol: #008da3;
    --section-gap: 120px;
    --section-pad: calc(var(--section-gap) / 2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--text-light);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
}

.page > section {
    padding-block: var(--section-pad);
}

@media (max-width: 768px) {
    :root {
        --section-gap: 64px;
    }
}

.container {
    width: min(1600px, 100%);
    margin: 0 auto;
    padding: 0 16px;
}

.hero {
    height: 900px;
    background-color: var(--teal);
    background-image: url('img/back_main.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

.page > .hero {
    padding-top: 32px;
    padding-bottom: var(--section-pad);
    margin-bottom:
}


.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero__top {
    display: flex;
    align-items: center;
    gap: clamp(16px, 4vw, 121px);
    flex-wrap: wrap;
    padding-bottom: 16px;
    z-index: 2;
}
.hero__logo img {
    height: 83px;
}
.hero__menu {
    display: flex;
    gap: 24px;
    flex: 1;
    font-weight: 300;
    font-size: 20px;
    text-transform: none;
    letter-spacing: 0.05em;
    padding: 18px 32px;
    border-radius: 100px;
    background: #33a4b5;
    justify-content: space-between;
}

.hero__menu a {
    color: var(--text-muted);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
}
@media (max-width: 1532px) {
    .hero__top {
        gap:10px;
    }
    .hero__menu {
        font-size: 16px;
    }
}
@media (max-width: 1301px) {
    .hero__menu {
        font-size: 14px;
    }
}
@media (max-width: 1237px) {
    .hero__phone {
        font-size: 14px;
        padding: 0 11px;
    }
    .hero__actions .btn {
        font-size: 14px;
        padding: 0 18px;
    }
    .hero__visual img {
        left:20%;
        right: auto;
    }
}


.hero__book-btn {
    height: 52px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 15px;
}

.hero__actions > * {
    min-height: 52px;
}

.hero__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 96px);
}

.hero__content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero__content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 7vw, 100px);
    margin: 0 0 12px;
    text-transform: uppercase;
    line-height: 1.05;
    color: #F9F8F1;
}

.hero__lead {
    margin: 0 0 32px;
    font-size: 22px;
    line-height: 100%;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 100px;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    background: var(--orange);
    color: var(--white);
    transition: transform 0.15s ease;
}
.hero__content .btn {
    padding: 13px 118px;
}
.hero__features {
    list-style: none;
    margin: 56px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__features li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #33a4b5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.feature-text {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 15px;
}

.hero__visual {

}

.hero__visual img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    height: 90%;
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        background-color: transparent;
        background-image: url('img/back_mobile.png');
        background-position: center top;
        background-size: 100% 660px;
    }

    .hero__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .hero__menu {
        display: none;
    }

    .hero__actions {
        width: auto;
        flex-direction: row;
        gap: 0;
    }

    .hero__phone {
        width: auto;
        text-align: center;
        border: none;
        background: var(--orange);
        height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero__book-btn {
        display: none;
    }

    .hero__layout {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero__content {
        max-width: none;
    }

    .hero__features li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero__layout {
        text-align: left;
    }

    .hero__visual {
        margin: 24px 0 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero__visual img {
        position: static;
        height: auto;
        width: min(340px, 82vw);
    }
}

@media (max-width: 768px) {
}

@media (max-width: 560px) {
    .page > .hero {
        padding-top: 12px;
    }

    .hero__top .hero__phone {
        width: auto;
    }

    .btn {
        width: 100%;
    }

    .hero__features {
        gap: 10px;
    }

    .hero__visual img {
        width: min(300px, 86vw);
    }

}

.protocol {
    background: #ffffff;
    margin-top: 60px;
}

.protocol h2 {
    margin: 0 0 32px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #2e95a7;
    max-width: 812px;
    font-weight: 500;
}

.protocol__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.protocol-card {
    min-height: 260px;
    border-radius: 16px;
    background: #f3f1eb;
    padding: 24px;
    color: #1f1f1f;
    position: relative;
    overflow: hidden;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.protocol-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 190px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 190px 190px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190' viewBox='0 0 190 190' fill='none'%3E%3Ccircle cx='190' cy='0' r='100.5' stroke='%23008DA3' stroke-opacity='0.1'/%3E%3Ccircle cx='190' cy='0' r='138.5' stroke='%23008DA3' stroke-opacity='0.08'/%3E%3Ccircle cx='190' cy='0' r='189.5' stroke='%23008DA3' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

.protocol-card:nth-child(1),
.protocol-card:nth-child(2),
.protocol-card:nth-child(3) {
    grid-column: span 4;
}

.protocol-card:nth-child(4),
.protocol-card:nth-child(5) {
    grid-column: span 6;
    min-height: 200px;
}

.protocol-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #2e95a7;
    margin-bottom: 40px;
    color: #f9f8f1;
}

.protocol-card__icon svg {
    width: 28px;
    height: 28px;
}

.protocol-card h3 {
    margin: 0 0 16px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 40px;
    line-height: 0.95;
    max-width: 95%;
    font-weight: 500;
}

.protocol-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: #262626;
    max-width: 96%;
}

.protocol-card p strong {
    font-weight: 700;
}

@media (min-width: 1025px) {
    .protocol-card--active,
    .protocol-card:hover {
        background: #2e95a7;
        color: #f7fcff;
        transform: translateY(-1px);
    }

    .protocol-card--active p,
    .protocol-card:hover p {
        color: rgba(247, 252, 255, 0.9);
    }

    .protocol-card--active .protocol-card__icon,
    .protocol-card:hover .protocol-card__icon {
        background: #f7fcff;
        color: #008da3;
    }

    .protocol-card--active::after,
    .protocol-card:hover::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='191' height='190' viewBox='0 0 191 190' fill='none'%3E%3Ccircle cx='190' cy='0' r='100.5' stroke='%23F9F8F1' stroke-opacity='0.1'/%3E%3Ccircle cx='190' cy='0' r='138.5' stroke='%23F9F8F1' stroke-opacity='0.08'/%3E%3Ccircle cx='190' cy='0' r='189.5' stroke='%23F9F8F1' stroke-opacity='0.05'/%3E%3C/svg%3E");
    }
}

@media (max-width: 1024px) {
    .protocol h2 {
        margin-bottom: 22px;
    }

    .protocol__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .protocol-card,
    .protocol-card:nth-child(1),
    .protocol-card:nth-child(2),
    .protocol-card:nth-child(3),
    .protocol-card:nth-child(4),
    .protocol-card:nth-child(5) {
        grid-column: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .protocol h2 {
        font-size: 28px;
        line-height: 0.96;
    }

    .protocol-card {
        padding: 20px;
        border-radius: 14px;
    }

    .protocol-card--diagnostic {
        display: none;
    }

    .protocol-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .protocol-card h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .protocol-card p {
        font-size: 16px;
        line-height: 1.2;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.cause {
    background: #ffffff;
}

.cause h2 {
    margin: 0 0 28px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #2e95a7;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 0.95;
    max-width: 928px;
    font-weight: 500;
}

.cause__grid {
    display: flex;
    gap: 16px;
}

.cause-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f5ec;
    display: flex;
    min-height: 320px;
    align-items: stretch;
    position: relative;
}

.cause-card::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 115, 100, 0.35) 0%, rgba(255, 115, 100, 0.2) 45%, rgba(255, 115, 100, 0) 75%);
    pointer-events: none;
    z-index: 0;
}

.cause-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(132, 216, 170, 0.35) 0%, rgba(132, 216, 170, 0.2) 45%, rgba(132, 216, 170, 0) 75%);
}

.cause-card::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 242px;
    height: 242px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 242px 242px;
    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='242' height='242' viewBox='0 0 242 242' fill='none'%3E%3Ccircle cx='26' cy='26' r='114.321' stroke='%23008DA3' stroke-opacity='0.1'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='242' height='242' viewBox='0 0 242 242' fill='none'%3E%3Ccircle cx='26' cy='26' r='157.521' stroke='%23008DA3' stroke-opacity='0.08'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='242' height='242' viewBox='0 0 242 242' fill='none'%3E%3Ccircle cx='26' cy='26' r='215.5' stroke='%23008DA3' stroke-opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.cause-card img {
    width: 48%;
    min-width: 437px;
    object-fit: cover;
    height: 100%;
    z-index: 2;
}

.cause-card__content {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #202020;
    z-index: 2;
}

.cause-card h3 {
    margin: 0 0 10px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    font-size: clamp(32px, 2.4vw, 44px);
    line-height: 0.95;
    font-weight: 500;
}

.cause-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.promo {
    background: #ffffff;
}

.promo__inner {
    background-color: var(--gol);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='522' viewBox='0 0 1600 522' fill='none'%3E%3Ccircle cx='387' cy='684' r='474' fill='%23F9F8F1'/%3E%3Ccircle cx='387' cy='684' r='511.483' stroke='%23F9F8F1' stroke-opacity='0.2'/%3E%3Ccircle cx='387.001' cy='684' r='625.999' stroke='%23F9F8F1' stroke-opacity='0.18'/%3E%3Ccircle cx='387' cy='684' r='762.5' stroke='%23F9F8F1' stroke-opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 100%;
    border-radius: 16px;
    display: grid;
    grid-template-columns: minmax(240px, 42%) minmax(280px, 1fr);
    align-items: stretch;
    gap: clamp(16px, 2.5vw, 32px);
    padding: 27px 120px 0px;
    overflow: hidden;
}

.promo__doctor {
    align-self: end;
    justify-self: start;
    display: flex;
    align-items: flex-end;
    margin-left: 7%;
}

.promo__doctor img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    min-width:495px;
}

.promo__content {
    flex: 1;
    padding: 14px 0 18px;
    max-width: 443px;
    justify-self: end;
    align-self: center;
}

.promo__content h2 {
    margin: 0 0 12px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(24px, 48px, 48px);
    color: #F9F8F1;
    font-weight: 500;
}

.promo__content p {
    margin: 0 0 14px;
    color: #F9F8F1;
    font-size: 18px;
    line-height: 1.3;
}

.promo__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo__form input {
    width: 100%;
    border: 0;
    border-radius: 100px;
    height: 55px;
    padding: 0 14px;
    font-size: 13px;
    font-family: inherit;
    background:#F9F8F1;
}

.promo__form input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 1px;

}

.promo__btn {
    width: 100%;
    height: 58px;
    padding: 0 14px;
    font-size: 20px;
    font-weight: 400;
}

.promo__agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 2px 0 4px;
}

.promo__agree input {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    background: transparent;
    appearance: none;
    padding:0px;
}

.promo__agree input:checked {
    background: #ffffff;
}
}

.types {
    background: #ffffff;
}

.types h2 {
    margin: 0 0 22px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #2e95a7;
    font-size: clamp(40px, 3.8vw, 62px);
    line-height: 0.95;
    font-weight: 500;
}

.types__track {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.type-card {
    width: calc((100% - 32px) / 3);
    background: #F9F8F1;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding:24px;
}

.type-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 8px;
}

.type-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    color: #202020;
    justify-content: space-between;
}

.type-card h3 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 0.95;
    margin-top: 24px;
    margin-bottom: 0px;
    font-weight: 500;
}

.type-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

.type-card__btn {
    margin-top: auto;
    border: 0;
    border-radius: 999px;
    height: 58px;
    background: #ED8234;
    color: #fff;
    font-family: inherit;
    font-size: 20px;
    cursor: pointer;
    margin-top: 26px;
}

.types__controls {
    display: none;
}

.types__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #118ea1;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.types__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

@media (max-width: 1024px) {
    .cause__grid {
        flex-direction: column;
    }

    .cause-card {
        min-height: 280px;
    }

    .promo__inner {
        grid-template-columns: 1fr 1fr;
        padding: 18px 16px 0;
        background-position: center bottom;
        background-size: 140% auto;

    }

    .promo__doctor {
        width: 100%;
        max-height: 320px;
        margin-left: 0;
    }

    .promo__form {
        max-width: 100%;
    }

    .type-card {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 768px) {
    .promo {
        margin-right: 16px;
        margin-left: 16px;
    }
    .promo__inner {
        grid-template-columns: 1fr;
    }
    .cause h2 {
        margin-bottom: 14px;
        font-size: 28px;
    }

    .cause-card {
        flex-direction: column;
        min-height: 0;
    }

    .cause-card img {
        width: 100%;
        height: 285px;
        object-fit: contain;
        object-position: center;
        background: transparent;
        order: 2;
        padding-right: 19%;
    }

    .cause-card__content {
        padding: 16px;
        order: 1;
    }

    .cause-card h3 {
        font-size: 24px;
    }

    .promo__content {
        order: 1;
    }

    .promo__doctor {
        order: 2;
    }

    .promo__inner {
        padding: 24px 16px 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='335' height='370' viewBox='0 0 335 370' fill='none'%3E%3Ccircle cx='167.501' cy='340.502' r='227.981' stroke='%23F9F8F1' stroke-opacity='0.2'/%3E%3Ccircle cx='167.501' cy='340.501' r='279.085' stroke='%23F9F8F1' stroke-opacity='0.18'/%3E%3Ccircle cx='167.501' cy='340.501' r='340.001' stroke='%23F9F8F1' stroke-opacity='0.15'/%3E%3Ccircle cx='167.501' cy='340.501' r='211.99' fill='%23F9F8F1'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        gap: 6px;
    }

    .promo__content {
        padding: 6px 0 4px;
        max-width: none;
        width:100%;
    }

    .promo__content h2 {
        font-weight: 500;
        font-size: 28px;
    }

    .promo__content p {
        font-size: 14px;
    }

    .promo__form input {
        height: 44px;
        font-size: 16px;

    }
    .promo__btn {
        height: 50px;
        font-size: 16px;
    }
    .hero__top .promo__btn {
        height: 40px;
        font-size: 14px;
    }

    .promo__agree {
        font-size: 10px;
        margin: 2px 0 6px;
    }

    .promo__doctor {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 46px;
    }

    .promo__doctor img {
        width: min(400px, 100%);
        max-width: 100%;
        min-width: 0;

    }

    .types h2 {
        font-size: 28px;
    }

    .types__viewport {
        overflow: hidden;
    }

    .types__track {
        flex-wrap: nowrap;
        gap: 0;
        transition: transform 0.25s ease;
    }

    .type-card {
        width: 100%;
        flex: 0 0 100%;
        padding:16px;
    }
    .type-card h3 {
        font-size: 24px;
        margin-top:16px;
    }
    .type-card p {
        font-size: 16px; 
    }
    .type-card__body {
        display: flex;
        flex-direction: column;
        gap: 0px;
        flex: 1;
        color: #202020;
        justify-content: space-between;
    }
    .type-card__btn {
        border: 0;
        border-radius: 999px;
        height: 50px;
        background: #ED8234;
        color: #fff;
        font-family: inherit;
        font-size: 16px;
        cursor: pointer;
        margin-top: 26px;
    }
    .types__controls {
        margin-top: 14px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }
}
@media (max-width: 530px) {
    .promo__inner {
        background-position: center bottom;
    }
}



.tech,
.management,
.consult {
    background: #ffffff;
}

.tech h2,
.management h2,
.consult h2 {
    margin: 0 0 24px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #2e95a7;
    font-size: clamp(38px, 3.7vw, 62px);
    line-height: 0.95;
    font-weight: 500;
}
.tech h2 {
    margin: 0 0 49px;
}
.tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tech__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-item {
    border-radius: 10px;
    background: #f3f1eb;
    overflow: hidden;
}

.tech-item__trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    line-height: 0.95;
    text-transform: uppercase;
    color: #1B1B1B;
    text-align: left;
    cursor: pointer;
}

.tech-item__trigger span:first-child {
    max-width: calc(100% - 38px);
}

.tech-item__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2e95a7;
    position: relative;
    flex: 0 0 auto;
}

.tech-item__icon::before,
.tech-item__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
}

.tech-item__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.tech-item__icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.tech-item.is-open .tech-item__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.tech-item.is-open .tech-item__icon::after {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tech-item__content {
    display: none;
    padding: 0 67px 24px 30px;
    color: #1B1B1B;
}

.tech-item.is-open .tech-item__content {
    display: block;
}

.tech-item__content p {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.tech-item__content ol {
    margin: 8px 0 0;
    padding-left: 22px;
    font-size: 20px;
    line-height: 1.3;
}

.tech-item__link {
    font-weight: 600;
    text-decoration: underline;
}

.management__card {
    border-radius: 16px;
    background: #f9f8f1;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 280px;
    position: relative;
}

.management__card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 240px;
    height: 290px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 240px 290px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='290' viewBox='0 0 240 290' fill='none'%3E%3Ccircle cx='225.999' cy='64.0004' r='119.637' stroke='%23008DA3' stroke-opacity='0.1'/%3E%3Ccircle cx='225.999' cy='64.0009' r='164.837' stroke='%23008DA3' stroke-opacity='0.08'/%3E%3Ccircle cx='225.999' cy='64.0004' r='225.499' stroke='%23008DA3' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

.management__list {
    margin: 0;
    padding: 24px 24px 24px 24px;
    list-style: none;
    color: #202020;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    flex: 1;
}

.management__list li {
    font-size: 20px;
    line-height: 1.25;
    padding-top: 22px;
    position: relative;
    margin-bottom: 2px;
}

.management__list li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2e95a7;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    font-weight: 700;
}

.management__image {
    flex: 0 0 42%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-right: 10%;
}

.management__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.consult__inner {
    border-radius: 16px;
    background: #008da3;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(220px, 260px) minmax(260px, 1fr);
    gap: 96px;
    align-items: stretch;
    padding: 56px 120px 0;
    position: relative;
    overflow: hidden;
}

.consult__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1278' height='485' viewBox='0 0 1278 485' fill='none'%3E%3Ccircle cx='638.999' cy='639' r='428.277' stroke='%23F9F8F1' stroke-opacity='0.2'/%3E%3Ccircle cx='639.001' cy='639' r='524.183' stroke='%23F9F8F1' stroke-opacity='0.18'/%3E%3Ccircle cx='639' cy='639' r='638.5' stroke='%23F9F8F1' stroke-opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 1278px 485px;
    pointer-events: none;
}

.consult__results,
.consult__form-wrap,
.consult__doctor {
    position: relative;
    z-index: 1;
}

.consult__results,
.consult__form-wrap {
    align-self: start;
}

.consult__results h2,
.consult__form-wrap h2 {
    color: #fff;
    font-size: clamp(28px, 48px, 48px);
    margin-bottom: 18px;
    font-weight: 500;
    color: #F9F8F1;
}

.consult__results ol {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.3;
    width: 70%;
}

.consult__results li + li {
    margin-top: 8px;
}

.consult__doctor {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
}

.consult__doctor img {
    width: 350px;
    max-width: 350px;
    object-fit: contain;
}

.consult__form-wrap p {
    margin: 0 0 16px;
    color: #F9F8F1;
    font-size: 18px;
    line-height: 1.3;
}

.consult__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

.consult__form input[type="text"],
.consult__form input[type="tel"] {
    height: 55px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 12px;
    font-family: inherit;
    background:#F9F8F1;
}

.consult__agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #F9F8F1;
}

.consult__agree input {
    margin-top: 2px;
}

.consult__btn {
    width: 100%;
    height: 55px;
    padding: 0 14px;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .tech__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .management__card {
        flex-direction: column;
    }

    .management__list {
        grid-template-columns: 1fr;
    }

    .management__image {
        flex-basis: auto;
    }

    .management__image img {
        max-height: 320px;
    }

    .consult__inner {
        grid-template-columns: 1fr;
        padding: 16px 12px 0;
    }

    .consult__form-wrap {
        order: 1;
    }

    .consult__results {
        order: 2;
    }

    .consult__doctor {
        order: 3;
    }
}

@media (max-width: 768px) {
    .tech h2,
    .management h2,
    .consult h2 {
        font-size: 28px;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .tech-item__trigger {
        font-size: 20px;
        padding: 12px;
    }

    .tech-item__content {
        padding: 0 12px 12px;
    }

    .tech-item__content p,
    .tech-item__content ol {
        font-size: 15px;
    }

    .management__card {
        border-radius: 12px;
    }

    .management__list {
        padding: 14px 12px;
        gap: 10px;
    }

    .management__list li {
        font-size: 13px;
    }

    .management__image img {
        height: 220px;
    }

    .consult__results h2,
    .consult__form-wrap h2 {
        font-size: 28px;
    }

    .consult__results ol {
        font-size: 15px;
    }

    .consult__doctor img {
        max-width: 245px;
    }
}

.aftercare {
    background: #ffffff;
}

.aftercare h2 {
    margin: 0 0 18px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #2e95a7;
    font-size: clamp(38px, 3.6vw, 60px);
    line-height: 0.95;
    font-weight: 500;
}

.aftercare__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.aftercare__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.aftercare-card {
    background: #f3f1eb;
    border-radius: 14px;
    padding: 18px;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}
.aftercare__cards .aftercare-card:last-child {
    grid-column: 1 / -1;
    min-height: 128px;
}

.aftercare-card::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -10px;
    width: 190px;
    height: 190px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 190px 190px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190' viewBox='0 0 190 190' fill='none'%3E%3Ccircle cx='190' cy='0' r='100.5' stroke='%23008DA3' stroke-opacity='0.1'/%3E%3Ccircle cx='190' cy='0' r='138.5' stroke='%23008DA3' stroke-opacity='0.08'/%3E%3Ccircle cx='190' cy='0' r='189.5' stroke='%23008DA3' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

.aftercare-card--wide {
    grid-column: 1 / -1;
    min-height: 128px;
}

.aftercare-card__num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #008da3;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 700;
    margin-bottom: 22px;
}

.aftercare-card__num svg {
    width: auto;
    height: 26px;
}

.aftercare-card p {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    color: #1B1B1B;
    max-width: 92%;
}

.aftercare__image {
    border-radius: 14px;
    overflow: hidden;
}

.aftercare__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .aftercare__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aftercare h2 {
        margin-bottom: 12px;
        font-size: 28px;
    }

    .aftercare__cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aftercare-card,
    .aftercare-card--wide {
        grid-column: auto;
        min-height: auto;
    }

    .aftercare-card {
        padding: 14px;
    }

    .aftercare-card__num {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
        font-size: 30px;
    }

    .aftercare-card p {
        max-width: 100%;
        font-size: 16px;
    }

    .aftercare__image img {
        height: 221px;
    }
}

.video-block {
    background: #ffffff;
}

.video-block__inner {
    height: 738px;
    border-radius: 10px;
    overflow: hidden;
    background: #a4a4a4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-block__play {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: #f3f1eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-block__play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #31be96;
    margin-left: 2px;
}

@media (max-width: 768px) {
    .video-block__inner {
        min-height: 150px;
        border-radius: 8px;
    }

    .video-block__play {
        width: 42px;
        height: 42px;
    }

    .video-block__play-icon {
        border-top-width: 6px;
        border-bottom-width: 6px;
        border-left-width: 9px;
    }
}

.doctors {
    background: #ffffff;
}

.doctors__inner {
    position: relative;
}

.doctors h2 {
    margin: 0 0 32px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    color: #2e95a7;
    font-size: clamp(36px, 3.5vw, 58px);
    line-height: 0.95;
    font-weight: 500;
}

.doctors-swiper {
    border-radius: 10px;
}

.doctor-card {
    background: #f3f1eb;
    border-radius: 10px;
    padding: 24px;
    height: auto;
}

.doctor-card__photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.doctor-card__photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    height: 415px;
    object-position: top;
}

.doctor-card__exp {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding:12px;
    border-radius: 999px;
    background: #ED8234;
    color: #F9F8F1;
    font-size: 20px;
}

.doctor-card h3 {
    margin: 24px 0 16px;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    line-height: 0.95;
    font-size: 35px;
    color: #1B1B1B;
    font-weight: 500;
}

.doctor-card p {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.2;
    color: #1B1B1B;
}

.doctor-card__btn {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: #ED8234;
    color: #F9F8F1;
    font-family: inherit;
    font-size: 20px;
    cursor: pointer;
}

.doctors__nav {
    display: flex;
    gap: 8px;
    position: absolute;
    top: 0;
    right: 20px;
}

.doctors__arrow {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: #2e95a7;
    color: #fff;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doctors__arrow::before {
    content: "‹";
    position: absolute;
    top: 47%;
    left: 48%;
    font-size: 41px;
    line-height: 1;
    transform: translate(-50%, -50%);
}

.doctors-next::before {
    content: "›";
    top: 45%;
    left: 55%;
    font-size: 41px;
}

.doctors__arrow.swiper-button-disabled {
    opacity: 0.45;
    cursor: default;
}

@media (max-width: 768px) {
    .doctors h2 {
        margin-bottom: 10px;
        font-size: 28px;
    }

    .doctor-card {
        padding: 16px;
        border-radius: 10px;
    }
    .doctor-card__photo img {
        /* height: 261px; */
    } 
    .doctor-card__exp {
        left: 16px;
        bottom: 16px;
        font-size: 14px;
    }

    .doctor-card h3 {
        font-size: 24px;
        margin: 16px 0 8px;
        width:100%
    }

    .doctor-card p {
        font-size: 16px;
    }
    .doctor-card__btn {
        height:50px;
        font-size: 16px;;
    }

    .doctors__nav {
        position: static;
        justify-content: center;
        margin-top: 10px;
    }

    .doctors__arrow {
        width: 36px;
        height: 36px;
    }
}

.social-cta {
    background: #ffffff;
}

.social-cta__inner {
    border-radius: 10px;
    background: #2e95a7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 36px;
}

.social-cta__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-cta__phone {
    color:#F9F8F1;
    font-size: 18px;
    line-height: 1;
}

.social-cta__btn {
    padding:14px 24px;
    border: 0;
    border-radius: 999px;
    background: #ED8234;
    color: #F9F8F1;
    font-family: inherit;
    font-size: 18px;
    cursor: pointer;
}

.social-cta__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-cta__label {
    color: #F9F8F1;
    font-size: 18px;
}

.social-cta__icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-cta__icons a {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background:#F9F8F1;
    color: #2e95a7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .social-cta {
        background: #2e95a7;
        padding: 16px 0 !important
    }

    .social-cta__inner {
        width: 100%;
        border-radius: 0;
        min-height: 0;
        padding: 8px 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: transparent;
    }

    .social-cta__left {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .social-cta__phone {
        font-size: 18px;
        font-weight: 500;
    }

    .social-cta__btn {
        width: 100%;
        min-height: 50px;
        text-align:center;
        
    }

    .social-cta__right {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 32px;
    }

    .social-cta__icons {
        gap: 8px;
    }

    .social-cta__icons a {
        width: 40px;
        height: 40px;
    }
}

.contacts-map {
    background: #f9f8f1;
    padding-top: 40px !important;
}

.contacts-map__top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 2px;
    margin-bottom: 44px;
}

.contacts-map__logo img {
    width: 142px;
    height: auto;
}

.contacts-map__meta {
    color: #1f1f1f;
    font-size: 15px;
    line-height: 1.25;
}

.contacts-map__meta p {
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 600;
    color:#0F0F0F;
}

.contacts-map__meta a,
.contacts-map__meta span {
    display: block;
    font-size: 24px;
    font-weight: 400;
}

.contacts-map__frame {
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 32px;
}

.contacts-map__frame iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.contacts-map__stations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 59px 21%;
}

.contacts-map__station {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contacts-map__station h3 {
    margin: 0 0 2px;
    font-size: 24px;
    line-height: 1;
    color: #0F0F0F;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contacts-map__station p {
    margin: 0;
    color: #0f0f0f;
    font-size: 19px;
    line-height: 1.2;
}

.contacts-map__metro {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.contacts-map__metro::after {
    content: "m";
    position: absolute;
    inset: 0;
    color: #fff;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    top: 4px;
}

.line-blue .contacts-map__metro { background: #2a88d8; }
.line-purple .contacts-map__metro { background: #a22ea4; }
.line-brown .contacts-map__metro { background: #7a5637; }
.line-gray .contacts-map__metro { background: #a6a6a6; }
.line-light .contacts-map__metro { background: #c8c8c8; }
.line-red .contacts-map__metro { background: #ef3e2d; }
.line-pink .contacts-map__metro { background: #cc2d87; }

.contacts-map__station button, .contacts-map__station a{
    min-width: 321px;
    border: 0;
    border-radius: 100px;
    background: #ED8234;
    color: #F9F8F1;
    font-family: inherit;
    font-size: 20px;
    cursor: pointer;
    padding:17px 60px;
}

.contacts-map__bottom {
    margin-top: 14px;
    border-top: 1px solid #c9c9c9;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    color: #0F0F0F;
    margin-top:51px;
}

@media (max-width: 900px) {
    .contacts-map__top {
        grid-template-columns: 1fr 1fr;
        gap: 10px 18px;
    }

    .contacts-map__logo {
        grid-column: 1 / -1;
    }

    .contacts-map__stations {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.management h2 {
    width: 68%;
}


@media (max-width: 768px) {
    .contacts-map__top {
        text-align: left;
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
        margin-bottom: 10px;
    }

    .contacts-map__logo {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .contacts-map__logo img {
        width: 198px;
        margin-bottom: 26px;
    }

    .contacts-map__meta {
        font-size: 16px;
    }

    .contacts-map__meta:last-child {
        grid-column: 1 / -1;
        margin-top: 26px;
        margin-bottom: 26px;
    }

    .contacts-map__frame {
        margin-bottom: 12px;
    }

    .contacts-map__frame iframe {
        height: 262px;
    }

    .contacts-map__station {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        text-align: center;
    }

    .contacts-map__station h3 {
        font-size: 16px;
        align-items: center;
        justify-content: center;
    }

    .contacts-map__station p {
        font-size: 14px;
    }

    .contacts-map__station button {
        width: 100%;
    }

    .contacts-map__bottom {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        text-align: center;
    }
    .hero__logo img {
        height: 40px;
    }
    .hero__phone {
        font-size: 14px;
        padding:12px 16px;
        height: auto;
    }
    .hero__top {
        border-bottom: 1px solid white;
    }
    .hero__content h1 {
        font-weight: 500;
        font-size: 54px;
        margin-bottom: 0px;
    }
    .hero__inner {
        gap: 32px;
    }
    .hero__lead {
        margin: 0 0 24px;
        font-size: 16px;
        font-weight: 400;
        line-height: 136%;
    }
    page > .hero {
        padding-top: 12px;
    }
    .hero {
        background-position: center top;
        background-size: 100% 581px;
    }
    .hero__content .btn {
        padding: 15px 12px;
        font-size: 16px;
        margin-top: -30px;
        position: relative;
        display: block;
        z-index: 3;
        text-align: center;
    }
    .feature-title {
        font-size: 14px;
        color:#1B1B1B;
    }
    .feature-text {
        font-size: 14px;
        color:#1B1B1B;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    .hero__features {
        gap: 10px;
        margin: 16px 0 0;
    }
    .protocol {
        margin-top:0px;
    }
    .promo__agree input {
        width:16px;
        height: 16px;
        padding:0px;
    }
    .type-card img {
        width: 100%;
        height: 172px;
        object-fit: cover;
        border-radius: 8px;
    }
    .management__image {
        margin-right: auto;
    }
    section.consult {
        margin: 0px 16px;
    }
    .consult__form-wrap p {
        font-size: 14px;
    }
    .consult__form input[type="text"],
    .consult__form input[type="tel"] {
        height:44px;
    }
    .consult__inner {
        gap: 28px;
    }
    .contacts-map__meta p {
        font-size: 14px;
    }
    .contacts-map__meta a, 
    .contacts-map__meta span {
        font-size: 14px;
    }
    .contacts-map__metro {
        width: 24px;
        height: 24px;
    }
    .contacts-map__metro::after {
        font-size: 13px;
        font-weight: 700;
        top: 6px;
    }
    .contacts-map__stations {
        gap: 25px;    
    }
    .contacts-map__station button {
        font-size: 16px;
        padding:15px;
    }
    .management h2 {
        width: 100%;
    }
}
/******  *******/
.error-message, .input-error{
    color: #e3b0b0;
    font-size: 80%;
}
.mfp-content{
    max-width: max-content !important;
}
.popup .promo__inner{
    background-image: none;
    grid-template-columns: 1fr;
    padding: 27px 60px;
}

.popup .promo__inner.poromo-modal-content {
    overflow-y: scroll;
    max-height: 100vh;
}

@media (max-width:550px){
    .popup .promo__inner.poromo-modal-content{
        padding: 10px;
    }
}

/******  *******/
#sw-app-f44cdeb39e9c3ab76e45d81d0bab3af8 .sw-app-body {
    width: 100% !important;
}
/******  *******/

.nev_video_row .title{
    color: #000;
}
.nev_video_row .img {
  max-height: 200px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1200px) {
  .nev_video_row .img {
    max-height: 230px;
  }
}
.nev_video_row .img_video {
  max-height: 200px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.nev_video_row .img_video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/play.svg) no-repeat center;
  width: 60px;
  height: 56px;
  margin: auto;
}
.nev_articles_row img, .nev_video_row img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.nev_video_row .item {
  background: #F4FAFF;
  border-radius: 24px;
  padding: 16px 16px 26px 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 12px 1fr 12px auto;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  /* min-height: 330px; */
}
@media screen and (max-width: 1400px) {
  .nev_video_row .item {
    min-height: 340px;
  }
}
@media screen and (max-width: 1200px) {
  .nev_video_row .item {
    min-height: 380px;
  }
}
@media screen and (max-width: 992px) {
  .nev_video_row .item {
    min-height: 350px;
  }
  .sw-app-head {
      display:none!important;
  }
}
/******  *******/
.doc-more{
    color: #2e95a7;
    font-size: 90%;
    display: block;
    text-decoration: underline;
    margin-top: 10px;
}
/******  *******/


.polite p, .polite h1, .polite h2, .polite h3 {
    color:black;
}
.polite a {
    color:blue;
}