@charset "UTF-8";
/**
* Подключение шрифтов локально из папки "./src/fonts"
*/
@font-face {
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("../fonts/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: LeksaSansPro;
    font-display: swap;
    src: local("Leksa Sans Pro Regular"), local("Leksa-Sans-Pro-Regular"), url("../fonts/LeksaSansPro.woff2") format("woff2"), url("../fonts/LeksaSansPro.woff") format("woff"), url("../fonts/LeksaSansPro.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
/** Подключение переменных */
/**
* Подключение sass function и mixins и extends стилей
*/
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Обнуление */
* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active,
a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html {
    scroll-behavior: smooth;
}
html.lock {
    overflow: hidden;
    touch-action: none;
}

html,
body {
    padding: 0 !important;
    background-color: #F1EAE0;
    width: 100%;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 130%;
    color: #231F20;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html.menu-active {
    overflow: hidden;
}

body {
    overflow-x: hidden;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button,
a {
    user-select: none;
}

button {
    cursor: pointer;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button, input[type=button], input[type=submit], input[type=reset] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

sup {
    color: inherit;
}

strong {
    font-weight: 500;
}

/**
* Библиотеки
* раскомментировать для использования
*/
/**
* Подключение custom scrollbar для всего сайта
*/
* {
    scrollbar-width: 0.3125rem;
    scrollbar-color: #c0a35f #d6d6d6;
}
*::-webkit-scrollbar {
    width: 0.3125rem;
    background-color: #fff;
}
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
    border-radius: 0.125rem;
    background: #eee;
}
*::-webkit-scrollbar-thumb {
    border-radius: 0.125rem;
    border: 0 none #fff;
    background-color: #ceb884;
    transition: all 280ms ease-in-out;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #c0a35f;
}

/**
* Общие параметры, шаблоны(заготовки) и вспомогательные классы
*/
/** Базовые анимации: */
@keyframes show-header {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}
@keyframes fade-up-big {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes rotation {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}
@keyframes hideImage {
    0% {
        width: 100%;
        flex: 0 0 100%;
    }
    100% {
        width: 0;
        flex: 0 0 0;
    }
}
/** Стили для полноэкранного блока: */
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
/**
* БЕМ блоки используемые во всё проекте
*/
.container {
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.container--overflow {
    margin-left: -60px;
    margin-right: -60px;
    overflow: hidden;
}
@media (max-width: 756.98px) {
    .container--overflow {
        margin-left: 0;
        margin-right: 0;
    }
}

.container-fluid {
    width: 100%;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1190px;
    }
}
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}
@media (max-width: 767.98px) {
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}
@media (max-width: 767.98px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
    .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
    .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
    .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
    .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
    .col-xl-auto {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gilroy", sans-serif;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #231F20;
}

h1, .h1 {
    font-size: 48px;
    letter-spacing: 0.96px;
    line-height: 120%;
    font-weight: 300;
    font-family: "Gilroy", sans-serif;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    h1, .h1 {
        font-size: 24px;
    }
}

h2, .h2, .department-group .department__title {
    font-size: 32px;
    font-family: "Gilroy", sans-serif;
    text-transform: uppercase;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    h2, .h2, .department-group .department__title {
        font-size: 24px;
    }
}

.h3, h3 {
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 150%;
}

a {
    color: #00305F;
}

.show-mobile {
    display: none !important;
}
@media (max-width: 767.98px) {
    .show-mobile {
        display: block !important;
    }
}

@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 300ms ease;
}
input::-moz-placeholder {
    opacity: 1;
    transition: opacity 300ms ease;
}
input:-moz-placeholder {
    opacity: 1;
    transition: opacity 300ms ease;
}
input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 300ms ease;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 300ms ease;
}
input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 300ms ease;
}
input:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 300ms ease;
}
input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 300ms ease;
}

.main__section.p-t-0 {
    padding-top: 0;
}

input::placeholder {
    color: #231F20;
}

/* button */
.btn, .button {
    display: inline-block;
    padding: 5px 40px 5px;
    margin: 0px;
    background: #00305F;
    border: 1px solid #00305F;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition-duration: 0.2s;
    vertical-align: top;
    border-radius: 3px;
    user-select: none;
}
.btn:hover, .button:hover {
    text-decoration: none;
    color: #fff;
    background: #00305F;
    border-color: #00305F;
}
.btn:active, .button:active {
    background: #00305F;
    border-color: #00305F;
}
.btn.btn-style-2, .button.btn-style-2 {
    background: none;
    border: none;
    text-decoration: underline;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    color: #c0a35f;
}
.btn.btn-style-2:hover, .button.btn-style-2:hover {
    text-decoration: none;
}
.btn.btn-style-2:active, .button.btn-style-2:active {
    color: #00305F;
}
.btn.btn-sm, .button.btn-sm {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding: 4px 19px 6px;
}
.btn.btn-bordered, .button.btn-bordered {
    background: none;
    color: #00305F;
    border-color: #00305F;
}
.btn.btn-bordered:hover, .button.btn-bordered:hover {
    color: #00305F;
    border-color: #00305F;
}
.btn.btn-bordered:active, .button.btn-bordered:active {
    color: #00305F;
    border-color: #00305F;
}

.btn-invert {
    background-color: #9876CE;
}
.btn-invert:hover {
    background: #7D5DB0;
}

@media (max-width: 767.98px) {
    .btn-center {
        display: block;
        text-align: center;
    }
}

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

/* sliders */
.slider .slider__nav {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
}

.slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: auto;
    bottom: auto;
        margin: 0 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding-top: 2px;
}

.slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #D0BD97;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 1;
}
@media (max-width: 1200.98px) {
    .slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin-left: 6px;
        margin-right: 6px;
    }
}
.slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #00305F;
}



.slider .slider__btn svg {
      width: 14px;
    height: 14px;
    fill: #00305F;
}

.slider .slider__btn:hover svg {

    fill: white;
}
.slider .slider__btn:hover  {
background-color: #00305F;
}

.slider .slider__btn {
  width: 24px;
  background-color: white;
  flex: 0 0 24px;
  height: 24px;
  position: relative;
      display: flex;
    align-items: center;
    justify-content: center;
        border-radius: 100px;
}
@media (max-width: 992.98px) {
    .slider .slider__nav {
        z-index: 5;
    width: max-content;
    margin: 0 auto;}
    .slider .slider__btn {
        width: 30px;
        flex: 0 0 30px;
        height: 30px;
    }
}


/* end slider */
.read-more {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
    color: #231F20;
}

/* select */
.jcf-select, .searchandfilter select.sf-input-select, .sf-input-select {
    border: none;
    position: relative;
    margin: 0;
    transition-duration: 0.2s;
    display: flex;
    align-items: center;
    font-weight: 300;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 48, 95, 0.4);
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding: 0 45px 12px 0;
    cursor: pointer;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.jcf-select.error {
    border-color: #F32B1E;
}

.jcf-select.jcf-drop-active {
    border-color: #494B52;
}

.jcf-select select {
    z-index: 1;
    left: 0;
    top: 0;
}

.jcf-select .jcf-select-text {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

.jcf-select .jcf-select-opener {
    position: absolute;
    text-align: center;
    width: 16px;
    height: 16px;
    right: 4px;
    top: 3px;
    background: url(../images/icons/icons.svg#arrow) no-repeat;
}

.jcf-select.jcf-drop-active .jcf-select-opener {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.jcf-select .jcf-select-drop {
    position: absolute;
    margin-top: 0;
    overflow: hidden;
    z-index: 9999;
    top: 100%;
    left: -1px;
    right: -1px;
}

body > .jcf-select-drop {
    position: absolute;
    margin: 0px 0 0;
    z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
    margin: 1px 0 0;
}

.jcf-list {
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: #fff;
    width: 100%;
    margin: 0px;
    padding: 10px 0;
    text-align: left;
    border-top: none;
    -webkit-box-shadow: 0px 0px 10px rgba(125, 136, 164, 0.5);
    box-shadow: 0px 0px 10px rgba(125, 136, 164, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.jcf-list .jcf-list-content {
    vertical-align: top;
    display: inline-block;
    overflow: auto;
    width: 100%;
}

.jcf-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jcf-list ul li {
    overflow: hidden;
    display: block;
}

.jcf-list .jcf-overflow {
    overflow: auto;
}

.jcf-list .jcf-option {
    overflow: hidden;
    cursor: pointer;
    display: block;
    padding: 10px 20px 11px;
    font-size: 15px;
    color: #231F20;
}

.jcf-list .jcf-option:hover {
    background: #00305F;
    color: white;
}

.jcf-list .jcf-selected {
    font-weight: 500;
}

form .sf-field-search .sf-input-text {
    padding-top: 0;
    padding-bottom: 12px;
}
form .sf-field-search .sf-input-text::placeholder {
    color: #231F20;
}

/**/
/*filter*/
.page__filter .sf-field-submit {
    margin-right: 0;
    margin-left: auto;
}
@media (max-width: 767.98px) {
    .page__filter .sf-field-submit {
        margin: 0;
    }
}

@media (max-width: 991.98px) {
    .page__filter .sf-field-submit, .page__filter .sf-field-reset {
        margin: 0;
        width: 50%;
    }
    .page__filter .sf-field-submit input, .page__filter .sf-field-reset input {
        width: 100%;
        display: block;
    }
    .page__filter .sf-field-submit a, .page__filter .sf-field-reset a {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .page__filter .sf-field-submit {
        width: 50%;
        padding-right: 12px;
    }
}

@media (max-width: 991.98px) {
    .page__filter .sf-field-reset {
        width: 50%;
        padding-left: 12px;
    }
}

@media (max-width: 767.98px) {
    .page__filter .field-reset {
        width: 50%;
        padding-left: 12px;
    }
}

.page__filter .sf-field-submit input, .page__filter .sf-field-submit #search-button, .page__filter .sf-field-reset a, .page__filter .field-reset a, .page__filter .sf-field-review, .page__filter .sf-field-download a {
    align-items: center;
    padding: 5px 35px 5px;
    background: #00305F;
    border: 1px solid #00305F;
    font-size: 16px;
    line-height: 120%;
    display: block;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    transition-duration: 0.2s;
    vertical-align: top;
    border-radius: 3px;
    user-select: none;
    height: 30px;
}
.page__filter .sf-field-submit input input, .page__filter .sf-field-submit #search-button input, .page__filter .sf-field-reset a input, .page__filter .field-reset a input, .page__filter .sf-field-review input, .page__filter .sf-field-download a input {
    color: white;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}
.page__filter .sf-field-submit input a, .page__filter .sf-field-submit #search-button a, .page__filter .sf-field-reset a a, .page__filter .field-reset a a, .page__filter .sf-field-review a, .page__filter .sf-field-download a a {
    color: inherit;
}
@media (max-width: 992.98px) {
    .page__filter .sf-field-submit input, .page__filter .sf-field-submit #search-button, .page__filter .sf-field-reset a, .page__filter .field-reset a, .page__filter .sf-field-review, .page__filter .sf-field-download a {
        margin-right: auto;
        margin-left: 0;
    }
}
@media (max-width: 767.98px) {
    .page__filter .sf-field-submit input, .page__filter .sf-field-submit #search-button, .page__filter .sf-field-reset a, .page__filter .field-reset a, .page__filter .sf-field-review, .page__filter .sf-field-download a {
        padding: 5px 20px;
    }
}
.page__filter .sf-field-submit input:hover, .page__filter .sf-field-submit #search-button:hover, .page__filter .sf-field-reset a:hover, .page__filter .field-reset a:hover, .page__filter .sf-field-review:hover, .page__filter .sf-field-download a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(0, 48, 95, 0.6);
    border-color: rgba(0, 48, 95, 0.6);
}
.page__filter .sf-field-submit input:active, .page__filter .sf-field-submit #search-button:active, .page__filter .sf-field-reset a:active, .page__filter .field-reset a:active, .page__filter .sf-field-review:active, .page__filter .sf-field-download a:active {
    background: #00305F;
    border-color: #00305F;
}
.page__filter .sf-field-submit input input, .page__filter .sf-field-submit #search-button input, .page__filter .sf-field-reset a input, .page__filter .field-reset a input, .page__filter .sf-field-review input, .page__filter .sf-field-download a input {
    background: none;
}

@media (max-width: 767.98px) {
    .sf-field-submit #search-button {
        width: 100%;
    }
}

.page__filter .field-reset a,
.page__filter .sf-field-reset a {
    color: #231F20;
    background: transparent;
    border-color: rgba(0, 48, 95, 0.6);
    margin-left: 30px;
    padding: 5px 22px 5px;
    font-weight: 400;
}
@media (max-width: 992.98px) {
    .page__filter .field-reset a,
    .page__filter .sf-field-reset a {
        margin-left: auto;
        margin-right: 0;
    }
}
@media (max-width: 767.98px) {
    .page__filter .field-reset a,
    .page__filter .sf-field-reset a {
        padding: 5px 20px;
    }
}
.page__filter .field-reset a:hover,
.page__filter .sf-field-reset a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(0, 48, 95, 0.6);
    border-color: rgba(0, 48, 95, 0.6);
}
.page__filter .field-reset a:hover a,
.page__filter .sf-field-reset a:hover a {
    color: inherit;
}

@media (max-width: 767.98px) {
    .page__filter .sf-field-review, .page__filter .sf-field-download {
        order: 4;
        margin-top: 30px;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

.page__filter .sf-field-download {
    flex: 0 0 184px;
}
@media (max-width: 767.98px) {
    .page__filter .sf-field-download {
        flex: 0 0 100%;
    }
}

/* Стилизация контейнера радио-кнопки */
.jcf-radio {
    display: inline-block;
    position: relative;
    padding-left: 25px; /* Регулируйте отступ слева в зависимости от дизайна */
    cursor: pointer;
}

/* Стилизация псевдоэлемента для отображения самой кнопки */
.jcf-radio::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px; /* Размер кнопки */
    height: 20px; /* Размер кнопки */
    border-radius: 50%; /* Для создания круглой формы */
    background-color: #fff; /* Цвет кнопки */
    border: 2px solid #E5EAEF; /* Граница кнопки */
}

/* Стилизация псевдоэлемента для отображения выбранной кнопки */
.jcf-radio.jcf-checked::before {
    background-color: white; /* Цвет выбранной кнопки */
    border-color: #00305F; /* Цвет границы выбранной кнопки */
}

/* Стилизация псевдоэлемента для отображения точки внутри выбранной кнопки */
.jcf-radio.jcf-checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px; /* Регулируйте положение точки в зависимости от дизайна */
    transform: translateY(-50%);
    width: 10px; /* Размер точки */
    height: 10px; /* Размер точки */
    border-radius: 50%; /* Для создания круглой формы */
    background-color: #00305F; /* Цвет точки */
}

.radio label {
    font-weight: 300;
}

.white-bg {
    background-color: white;
}

.page__breadcrumbs {
    padding: 18px 0 25px;
}
@media (max-width: 767.98px) {
    .page__breadcrumbs {
        padding-top: 27px;
        padding-bottom: 10px;
    }
}
.page__breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 767.98px) {
    .page__breadcrumbs ul {
        margin: 0;
    }
}
.page__breadcrumbs ul li {
    border-right: 1px solid rgba(0, 48, 95, 0.6);
    padding: 0 15px 0 0;
    margin-right: 15px;
}
.page__breadcrumbs ul li a {
    font-size: 14px;
    color: #00305F;
    line-height: 120%;
    display: inline-block;
}
@media (max-width: 767.98px) {
    .page__breadcrumbs ul li a {
        line-height: 150%;
    }
}
.page__breadcrumbs ul li a:hover {
    opacity: 0.4;
}

.checkup .page__breadcrumbs ul li:last-child span {
    color: #BEBEBE;
}

.page__filter form ul {
    justify-content: space-between;
}

.page__filter form .search {
    padding: 0 0 12px;
}
.page__filter form .search::placeholder {
    color: #231F20;
}

.page__header {
    padding: 10px 0 35px;
    display: flex;
    align-items: baseline;
}
.page__header .btn.btn-style-2 {
    padding-left: 50px;
}

.scroll {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.scroll::-webkit-scrollbar {
    display: none;
}

.no-indent li:last-child, .no-indent p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.gform_submission_error {
    text-transform: none;
    font-size: 14px;
    color: red;
}

.validation_message {
    text-transform: none;
    font-size: 12px;
    color: red;
}

.home .main__section:nth-child(5) .horizontal-form .title {
    font-size: 32px;
}
@media (max-width: 767.98px) {
    .home .main__section:nth-child(5) .horizontal-form .title {
        font-size: 24px;
    }
}

.swiper-button-lock + .swiper-pagination {
    display: none;
}

.award-popup {
    background-color: #F1EAE0;
    border-radius: 3px 25px;
    font-size: 14px;
    font-weight: 300;
    line-height: 130%;
    width: 245px;
    padding: 20px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}
@media (max-width: 767.98px) {
    .award-popup {
        top: 40px;
        left: 0;
    }
}
.award-popup .wrap {
    display: flex;
    justify-content: space-between;
}
.award-popup p {
    margin-bottom: 0;
}
.award-popup .award-title {
    padding-bottom: 10px;
}
.award-popup .award-name {
    font-weight: 500;
    color: #c0a35f;
    padding-bottom: 5px;
}

.archive .doctors__archive .box {
    overflow: visible;
}

.archive-articles h1 {
    font-weight: 300;
}

form input[type=text].sf-datepicker {
    padding-top: 0;
    padding-bottom: 12px;
}

.warning {
    position: relative;
    background: url(../images/exclamation-mark.svg) 15px 22px no-repeat #00305F;
    background-size: 20px auto;
    color: #fff;
    padding: 20px 10px 20px 50px !important;
    text-shadow: 0 1px 1px #666;
    font-size: 120%;
    border-radius: 3px;
    box-shadow: 0 1px 1px #aaa;
}

.archive-feedback .reviews__section.added-items .box {
    padding-bottom: 50px;
}
@media (max-width: 1200.98px) {
    .archive-feedback .page__filter form ul li.sf-field-post-meta-department_reviews, .archive-feedback .page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) {
        flex: 0 0 30%;
        margin-right: 15px;
        padding-bottom: 30px;
    }
}
@media (max-width: 767.98px) {
    .archive-feedback .page__filter form ul li.sf-field-post-meta-department_reviews, .archive-feedback .page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) {
        flex: 0 0 100%;
        margin-right: 0;
        padding-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .archive-feedback .page__filter .sf-field-submit, .archive-feedback .sf-field-reset {
        margin: 0;
    }
    .archive-feedback .page__filter .sf-field-submit input, .archive-feedback .sf-field-reset input {
        width: 100%;
        display: block;
    }
    .archive-feedback .page__filter .sf-field-submit a, .archive-feedback .sf-field-reset a {
        display: block;
    }
}
.archive-feedback .load-more {
    display: block;
}

@media (max-width: 991.98px) {
    .page__filter form .sf-field-post_date {
        padding-bottom: 0 !important;
    }
}

.feedback-modal {
    padding: 6px 58px 6px;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .feedback-modal {
        margin-top: 20px;
        display: block;
    }
}

.modal .form-group-100 {
    flex: 0 0 100%!important;
    width: 100%!important;
}

body.fixed-header header {
    position: fixed;
    -webkit-animation: slideDownHeader 0.35s ease-out;
    animation: slideDownHeader 0.35s ease-out;
    z-index: 100;
    padding: 5px 0;
}
body.fixed-header header .show-mobile-header.phone {
    /*display: none;*/
}
body.fixed-header header .menu.active {
    top: 52px;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.list-item.hidden {
    display: none;
}

.not-found {
    padding: 150px 0;
    text-align: center;
    font-family: "Gilroy", sans-serif;
    background: white;
    height: 100vh;
}
@media (max-width: 767.98px) {
    .not-found {
        padding: 80px 0;
    }
}
.not-found img {
    height: 392px;
    margin: 0 auto;
}
@media (max-width: 767.98px) {
    .not-found img {
        height: 200px;
    }
}
.not-found .title {
    color: #374250;
    font-size: 40px;
    font-weight: 500;
    padding-top: 76px;
    padding-bottom: 13px;
    line-height: 1.2;
}
@media (max-width: 991.98px) {
    .not-found .title {
        font-size: 30px;
        padding-top: 10px;
    }
}
@media (max-width: 767.98px) {
    .not-found .title {
        font-size: 20px;
    }
}
.not-found .subtitle {
    color: rgba(55, 66, 80, 0.6);
    font-size: 30px;
    font-weight: 400;
    padding-bottom: 66px;
}
@media (max-width: 991.98px) {
    .not-found .subtitle {
        font-size: 20px;
        padding-bottom: 30px;
    }
}
@media (max-width: 767.98px) {
    .not-found .subtitle {
        font-size: 18px;
    }
}
.not-found .btn {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    padding: 28px 24px;
    text-transform: uppercase;
}
@media (max-width: 991.98px) {
    .not-found .btn {
        font-size: 18px;
        padding: 16px 24px;
    }
}
@media (max-width: 767.98px) {
    .not-found .btn {
        font-size: 14px;
    }
}

.search-page-wrap form input[type=text] {
    padding: 16px;
}
.search-page-wrap.promo-archive .box.no-hover:hover .box__content.without-img {
    width: 100%;
    padding-left: 0;
}
.search-page-wrap.promo-archive .box__content.without-img {
    padding-top: 0;
    padding-left: 0;
    width: 100%;
    position: relative;
}
.search-page-wrap.promo-archive .box__content.without-img .box__price {
    padding-top: 10px;
}
.search-page-wrap.promo-archive .box__content.without-img .btn {
    margin-bottom: 50px;
    margin-top: 30px;
}
.search-page-wrap.promo-archive .box__content {
    width: calc(100% - 240px);
}
@media (max-width: 991.98px) {
    .search-page-wrap.promo-archive .box__content {
        width: 100%;
    }
}
.search-page-wrap.promo-archive .box.no-hover:hover {
    background: white !important;
}
.search-page-wrap.promo-archive .box.no-hover:hover .box__content {
    width: calc(100% - 240px);
    padding-left: 20px;
    background-color: white;
}
@media (max-width: 991.98px) {
    .search-page-wrap.promo-archive .box.no-hover:hover .box__content {
        width: 100%;
    }
}
.search-page-wrap.promo-archive .box:hover .box__bottom {
    padding-bottom: 0;
}
.search-page-wrap .search-form-single {
    position: relative;
}
.search-page-wrap .search-form-single .btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 0;
    padding-right: 18px;
}
.search-page-wrap .search-form-single .btn:before {
    background-image: url("../images/icons/search.svg");
    content: "";
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}
.search-page-wrap #search-field {
    border-radius: 3px;
    background: #FFF;
    width: 100%;
    padding: 18px;
}
.search-page-wrap .header-search {
    padding: 100px 0 40px;
}
.search-page-wrap .title {
    padding-bottom: 12px;
    color: #231F20;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}
.search-page-wrap .box__price p {
    color: #C0A35F;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}
.search-page-wrap .box__bottom {
    text-align: right;
}
.search-page-wrap .box__bottom a {
    color: #C0A35F;
    font-size: 18px;
    line-height: 1.2;
    text-decoration-line: underline;
}
.search-page-wrap.promo-archive .box .btn {
    font-size: 16px;
}
@media (min-width: 61.99875em) {
    .search-page-wrap .box-item:hover .box__bottom {
        opacity: 0;
    }
    .search-page-wrap.promo-archive .box-item:hover .wrapper-hover {
        display: flex;
    }
}
.search-page-wrap.promo-archive .box-item .wrapper-hover {
    display: none;
}

input[type=search]:focus::-webkit-search-cancel-button {
    display: none !important;
}

.archive-content .wrapper-hover .kksr-legend {
    display: none;
}

.archive-content .box__bottom .kksr-legend {
    margin-left: 0;
    margin-top: 5px;
}

.archive-content .box__bottom .kk-star-ratings {
    flex-direction: column;
    align-items: flex-start;
}

.loader {
    display: none;
}
.loader svg path,
.loader svg rect {
    fill: #c0a35f;
}

#to_top, #call_us, .nuuunew, #write {
    background-color: #00305F;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767.98px) {
    #to_top, #call_us, #write {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 60px;
    }
}

#write {
    bottom: 95px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767.98px) {
    #write {
        display: none;
    }
}
#write::after {
    content: "";
    background: url("../images/icons/icons.svg#write") no-repeat center;
    display: block;
    width: 45px;
    height: 45px;
}
@media (max-width: 767.98px) {
    #write::after {
        width: 35px;
        height: 35px;
    }
}

#call_us, .nuuunew {
    background-color: #33AC46;
    bottom: 190px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767.98px) {
    #call_us, .nuuunew {
        bottom: 130px;
        display: none;
    }
}
#call_us::after, .nuuunew::after {
    content: "";
    background: url("../images/icons/icons.svg#phone_btn") no-repeat center;
    display: block;
    width: 32px;
    height: 32px;
}
@media (max-width: 767.98px) {
    #call_us::after, .nuuunew::after {
        width: 10px;
        height: 10px;
    }
}

#to_top::after {
    content: "";
    background: url("../images/icons/icons.svg#to_top") no-repeat center;
    display: block;
    width: 28px;
    height: 28px;
}
@media (max-width: 767.98px) {
    #to_top::after {
        width: 20px;
        height: 20px;
    }
}

#to_top.show {
    opacity: 1;
    visibility: visible;
}

.contact-bar {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    bottom: 10px;
    z-index: 10;
    padding: 0 15px;
}
@media (max-width: 767.98px) {
    .contact-bar {
        display: flex;
    }
}
.contact-bar .btn {
    flex: 0 0 50%;
    padding: 7px;
    text-align: center;
    font-size: 19px;
	background: #3FC63B;
  border: 1px solid #3FC63B;
}
.contact-bar .style-2 {
    background-color: #ff0202;
    color: white;
    border: 1px solid #ff0202;
}

.float-left-image {
    margin-right: 20px !important;
}
@media (max-width: 767.98px) {
    .float-left-image {
        width: 100% !important;
    }
}

.main__section .title_under_2:not(:first-child) {
    margin-top: 40px;
}

.main__section.departments__archive {
    padding-top: 20px;
}
.main__section.departments__archive .departments__row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 100px;
}
@media (max-width: 767.98px) {
    .main__section.departments__archive .departments__row {
        padding-bottom: 30px;
    }
}
.main__section.departments__archive .departments__row h2 {
    margin-bottom: 20px;
}
.main__section.departments__archive .departments__row .first-column, .main__section.departments__archive .departments__row .middle-column, .main__section.departments__archive .departments__row .last-column, .main__section.departments__archive .departments__row .column {
    padding-bottom: 45px;
}
.main__section.departments__archive .departments__row .first-column a, .main__section.departments__archive .departments__row .middle-column a, .main__section.departments__archive .departments__row .last-column a, .main__section.departments__archive .departments__row .column a {
    color: #231F20;
    padding-bottom: 10px;
    display: block;
}
.main__section.departments__archive .departments__row .first-column {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 50px;
}
@media (max-width: 1200.98px) {
    .main__section.departments__archive .departments__row .first-column {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 0;
    }
}
@media (max-width: 991.98px) {
    .main__section.departments__archive .departments__row .first-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.main__section.departments__archive .departments__row .first-column ul {
    column-count: 3;
    column-gap: 10px;
}
@media (max-width: 1200.98px) {
    .main__section.departments__archive .departments__row .first-column ul {
        column-count: 2;
    }
}
@media (max-width: 767.98px) {
    .main__section.departments__archive .departments__row .first-column ul {
        column-count: 1;
    }
}
.main__section.departments__archive .departments__row .last-column {
    flex: 0 0 100%;
    max-width: 100%;
}
.main__section.departments__archive .departments__row .column {
    flex: 0 0 25%;
    max-width: 25%;
}
@media (max-width: 1200.98px) {
    .main__section.departments__archive .departments__row .column {
        flex: 0 0 30%;
        max-width: 30%;
    }
}
@media (max-width: 991.98px) {
    .main__section.departments__archive .departments__row .column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.main__section.departments__archive .departments__row .middle-column {
    flex: 0 0 15%;
    max-width: 15%;
}
@media (max-width: 1200.98px) {
    .main__section.departments__archive .departments__row .middle-column {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (max-width: 991.98px) {
    .main__section.departments__archive .departments__row .middle-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.main__section.departments__archive .specialization_row h2 {
    padding-bottom: 40px;
}
.main__section.departments__archive .specialization_row .item-wrapper {
    padding-bottom: 40px;
}

/* pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-numbers {
    background-color: white;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s;
}
.pagination .page-numbers.current {
    background-color: #F6F8FC;
}
.pagination .page-numbers:hover {
    background-color: #F6F8FC;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
    width: 30px;
    flex: 0 0 30px;
    background-color: transparent;
    height: 32px;
    position: relative;
}
.pagination .page-numbers.prev:before, .pagination .page-numbers.prev:after, .pagination .page-numbers.next:before, .pagination .page-numbers.next:after {
    content: "";
    height: 5px;
    width: 15px;
    background: #00305F;
    border-radius: 0 3px 3px 0;
    position: absolute;
}
.pagination .page-numbers.prev:before, .pagination .page-numbers.next:before {
    transform: rotate(-45deg) translateY(-50%);
    bottom: 50%;
}
.pagination .page-numbers.prev:after, .pagination .page-numbers.next:after {
    transform: rotate(45deg) translateY(50%);
    top: 50%;
}
.pagination .page-numbers.next {
    transform: rotate(180deg);
}

.page-single .single-post__text-list {
    width: 100%;
}

/* date */
.gform-theme-datepicker {
    background-color: white;
    border-radius: 3px;
}

.gform-theme-datepicker {
    width: 280px;
    padding: 5px;
    background: #00305F;
    border-radius: 4px;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.searchandfilter-date-picker .ui-datepicker {
    width: 260px;
}

.gform-theme-datepicker.active {
    opacity: 1;
}

.gform-theme-datepicker .ui-datepicker-header {
    height: 40px;
    padding: 3px;
    margin-bottom: 10px;
}

.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    line-height: 34px;
}

.gform-theme-datepicker .ui-datepicker-month,
.gform-theme-datepicker .ui-datepicker-year {
    -webkit-appearance: none;
    border: 0;
    background: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0 1px;
}

.gform-theme-datepicker .ui-datepicker-prev, .gform-theme-datepicker .ui-datepicker-next {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    text-indent: 9999px;
    overflow: hidden;
    border-radius: 3px;
}

.gform-theme-datepicker .ui-datepicker-prev:hover, .gform-theme-datepicker .ui-datepicker-next:hover {
    background: #444B56;
}

.gform-theme-datepicker .ui-datepicker-prev {
    float: left;
}

.gform-theme-datepicker .ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin-left: 15px;
}

.gform-theme-datepicker .ui-datepicker-next {
    float: right;
}

.gform-theme-datepicker .ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin-left: 13px;
}

.gform-theme-datepicker .ui-datepicker-prev:after,
.gform-theme-datepicker .ui-datepicker-next:after {
    content: "";
    position: absolute;
    display: block;
    margin-top: -10px;
    width: 6px;
    height: 6px;
    border-left: 2px solid #C2C7D1;
    border-bottom: 2px solid #C2C7D1;
    pointer-events: none;
}

.gform-theme-datepicker .ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

.gform-theme-datepicker .ui-datepicker-calendar thead tr th {
    width: 40px;
    padding-bottom: 6px;
}

.gform-theme-datepicker .ui-datepicker-calendar thead tr th span {
    display: block;
    width: 100%;
    padding: 0;
    color: #8D9298;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.gform-theme-datepicker .ui-datepicker-calendar tbody tr td {
    padding-right: 3px;
    padding-bottom: 3px;
}

.gform-theme-datepicker .ui-datepicker-calendar tbody tr td:first-child {
    padding-left: 3px;
}

.gform-theme-datepicker .ui-state-default {
    display: block;
    text-decoration: none;
    color: white;
    height: 34px;
    line-height: 34px;
    border-radius: 3px;
    font-size: 12px;
}

.gform-theme-datepicker .ui-state-default:hover {
    background: #00142d;
    text-decoration: none;
    color: white;
}

.gform-theme-datepicker .ui-state-highlight {
    color: #c0a35f;
}

.gform-theme-datepicker .ui-state-active:not(.ui-state-highlight) {
    color: white;
    background: #5D9CF5;
}

.gform-theme-datepicker .ui-datepicker-unselectable .ui-state-default {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

#gform_17, #gform_20, #gform_21 {
    background-color: white;
    padding: 40px;
    border-radius: 3px;
    width: 77%;
    margin: 40px auto 0;
}
#gform_21{
    width: 100%;
}
@media (max-width: 767.98px) {
    #gform_17, #gform_20, #gform_21 {
        margin: 0;
        padding: 20px 10px;
    }
}
@media (max-width: 1200.98px) {
    #gform_17, #gform_20, #gform_21 {
        width: 100%;
    }
}
#gform_17 .gform_fields, #gform_20 .gform_fields, #gform_21 .gform_fields {
    justify-content: space-between;
}
#gform_17 .gform_fields .gfield--type-WrapperBegin, #gform_20 .gform_fields .gfield--type-WrapperBegin, #gform_21 .gform_fields .gfield--type-WrapperBegin {
    flex: 0 0 300px;
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}
#gform_21 .gform_fields .gfield--type-WrapperBegin{
    flex: 0 0 47%;
    width: 47%;
}
@media (max-width: 992.98px) {
    #gform_17 .gform_fields .gfield--type-WrapperBegin, #gform_20 .gform_fields .gfield--type-WrapperBegin, #gform_21 .gform_fields .gfield--type-WrapperBegin {
        flex: 0 0 100%;
        width: 100%;
    }
}
#gform_17 .gform_fields .gfield--type-WrapperBegin:last-child, #gform_20 .gform_fields .gfield--type-WrapperBegin:last-child, #gform_21 .gform_fields .gfield--type-WrapperBegin:last-child {
    flex: 0 0 350px;
    width: 350px;
}
@media (max-width: 992.98px) {
    #gform_17 .gform_fields .gfield--type-WrapperBegin:last-child, #gform_20 .gform_fields .gfield--type-WrapperBegin:last-child, #gform_21 .gform_fields .gfield--type-WrapperBegin:last-child {
        flex: 0 0 100%;
        width: 100%;
    }
}
#gform_17 .gform_fields .gfield:not(.gfield--type-WrapperBegin), #gform_20 .gform_fields .gfield:not(.gfield--type-WrapperBegin), #gform_21 .gform_fields .gfield:not(.gfield--type-WrapperBegin) {
    width: 100%;
    flex: 0 0 100%;
}
#gform_17 .gform_fields .gfield.half-column, #gform_20 .gform_fields .gfield.half-column, #gform_21 .gform_fields .gfield.half-column {
    flex: 0 0 50%;
    width: 50%;
}
#gform_17 .gform_fields .gfield.half-column.before, #gform_20 .gform_fields .gfield.half-column.before, #gform_21 .gform_fields .gfield.half-column.before {
    padding-right: 25px;
}
#gform_17 .gform_fields .gfield.half-column.after, #gform_20 .gform_fields .gfield.half-column.after, #gform_21 .gform_fields .gfield.half-column.after {
    padding-left: 25px;
}
#gform_17 .gform_fields .jcf-select, #gform_20 .gform_fields .jcf-select, #gform_21 .gform_fields .jcf-select {
    padding: 0 45px 15px 0;
}
#gform_17 input[type=text]::placeholder, #gform_17 input[type=tel]::placeholder, #gform_17 input[type=number]::placeholder, #gform_17 input[type=email]::placeholder, #gform_20 input[type=text]::placeholder, #gform_20 input[type=tel]::placeholder, #gform_20 input[type=number]::placeholder, #gform_20 input[type=email]::placeholder, #gform_21 input[type=text]::placeholder, #gform_21 input[type=tel]::placeholder, #gform_21 input[type=number]::placeholder, #gform_21 input[type=email]::placeholder {
    color: #231F20;
}
#gform_17 input[type=email],
#gform_17 input[type=number], #gform_20 input[type=email],
#gform_20 input[type=number], #gform_21 input[type=email],
#gform_21 input[type=number] {
    border-bottom: 1px solid #99ACBF;
    font-size: 16px;
    color: #231F20;
    font-weight: 300;
    padding: 15px 0;
    width: 100%;
}
#gform_17 select, #gform_20 select, #gform_21 select {
    border-bottom: 1px solid #99ACBF;
    font-size: 16px;
    color: #231F20;
    font-weight: 300;
    padding: 0 0 15px;
    width: 100%;
}
#gform_17 .gfield--type-select:not(:first-child), #gform_20 .gfield--type-select:not(:first-child), #gform_21 .gfield--type-select:not(:first-child) {
    padding-top: 15px;
}
#gform_17 .gfield--type-html, #gform_20 .gfield--type-html, #gform_21 .gfield--type-html {
    padding-top: 15px;
}
#gform_17 .start_column, #gform_20 .start_column, #gform_21 .start_column {
    padding-top: 0;
    padding-bottom: 20px;
}
@media (max-width: 767.98px) {
    #gform_17 .start_column, #gform_20 .start_column, #gform_21 .start_column {
        padding-top: 20px;
        padding-bottom: 0;
    }
}
#gform_17 .gfield--type-date .gfield_label, #gform_20 .gfield--type-date .gfield_label, #gform_21 .gfield--type-date .gfield_label {
    padding-top: 15px;
    display: block;
}
#gform_17 .gfield--type-date .gfield_label .gfield_required, #gform_20 .gfield--type-date .gfield_label .gfield_required, #gform_21 .gfield--type-date .gfield_label .gfield_required {
    display: none;
}
#gform_17 .gfield--type-date input[type=text], #gform_20 .gfield--type-date input[type=text], #gform_21 .gfield--type-date input[type=text] {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
}
#gform_17 .gfield--type-date input[type=text]::placeholder, #gform_20 .gfield--type-date input[type=text]::placeholder, #gform_21 .gfield--type-date input[type=text]::placeholder {
    color: rgba(35, 31, 32, 0.2);
}
#gform_17 .gform_fileupload_rules, #gform_17 .gform_drop_instructions, #gform_20 .gform_fileupload_rules, #gform_20 .gform_drop_instructions, #gform_21 .gform_fileupload_rules, #gform_21 .gform_drop_instructions {
    display: none;
}
#gform_17 .gfield--type-fileupload, #gform_20 .gfield--type-fileupload, #gform_21 .gfield--type-fileupload {
    display: flex;
    flex-wrap: wrap;
}
#gform_17 .gfield--type-fileupload .gform_button_select_files, #gform_20 .gfield--type-fileupload .gform_button_select_files, #gform_21 .gfield--type-fileupload .gform_button_select_files {
    border-radius: 100%;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    max-width: 32px;
    font-size: 0;
    padding: 0;
    text-indent: -99999;
    background-color: #BA9F67;
    border: none;
    position: relative;
    font-weight: 300;
    margin: 0 auto;
    display: block;
}
#gform_17 .gfield--type-fileupload .gform_button_select_files:before, #gform_20 .gfield--type-fileupload .gform_button_select_files:before, #gform_21 .gfield--type-fileupload .gform_button_select_files:before {
    content: "+";
    font-size: 32px;
    color: white;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
#gform_17 .gfield_description, #gform_20 .gfield_description, #gform_21 .gfield_description {
    order: 1;
}
#gform_17 .ginput_container_fileupload, #gform_20 .ginput_container_fileupload, #gform_21 .ginput_container_fileupload {
    order: 0;
    padding-top: 20px;
}
@media (max-width: 992.98px) {
    #gform_17 .ginput_container_fileupload, #gform_20 .ginput_container_fileupload, #gform_21 .ginput_container_fileupload {
        width: 100%;
    }
}
#gform_17 .ginput_preview_list, #gform_20 .ginput_preview_list, #gform_21 .ginput_preview_list {
    order: 3;
}
#gform_17 .gchoice, #gform_20 .gchoice, #gform_21 .gchoice {
    display: flex;
    flex-direction: column-reverse;
}
#gform_17 .gchoice input[type=checkbox], #gform_20 .gchoice input[type=checkbox], #gform_21 .gchoice input[type=checkbox], .sf-input-checkbox {
    appearance: none;
    color: currentColor;
    width: 16px;
    height: 16px;
    border: 0.5px solid #99ACBF;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    position: relative;
}
#gform_21 .gchoice input[type=checkbox]{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}
#gform_21 .gchoice .ginput_container{
    display: flex;
    align-items: center;
    padding-top: 20px;
}
#gform_21 .gchoice .gfield_required{
    display: none!important;
}
#gform_21 .gchoice .ginput_container .gform-field-label{
    margin-left: 20px;
    font-size: 13px;
    opacity: .8;
    padding-bottom: 0;

}
#gform_21 .gfield--type-date .gfield_label{
    padding-top: 5px;
}
#gform_17 .gchoice input[type=checkbox]::before, #gform_20 .gchoice input[type=checkbox]::before, #gform_21 .gchoice input[type=checkbox]::before, .sf-input-checkbox:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #99ACBF;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0) translateX(-50%) translateY(-50%);
    display: block;
    transition: 120ms transform ease-in-out;
}

#gform_17 .gchoice input[type=checkbox]:checked::before, #gform_20 .gchoice input[type=checkbox]:checked::before, #gform_21 .gchoice input[type=checkbox]:checked::before, .sf-input-checkbox:checked::before {
    transform: scale(1) translateX(-50%) translateY(-50%);
}
#gform_17 .gchoice .gform-field-label, #gform_20 .gchoice .gform-field-label, #gform_21 .gchoice .gform-field-label {
    padding-bottom: 10px;
}
#gform_17 .gform_footer, #gform_20 .gform_footer, #gform_21 .gform_footer {
    padding-top: 40px;
    text-align: right;
}
#gform_21 .gform_footer{
    text-align: left;
    padding-top: 20px;
}
#gform_21 .gform_footer .button{
    padding: 10px 55px;
}
#gform_17 .field_upload, #gform_20 .field_upload, #gform_21 .field_upload {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 48, 95, 0.4);
}
#gform_17 .field_upload:after, #gform_20 .field_upload:after, #gform_21 .field_upload:after {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    bottom: 3px;
    right: 0;
    background: url("../images/icons/ic_baseline-link.svg") no-repeat center;
}

#gform_21 .gchoice input[type=checkbox]::before{
    background-color: white;
}
#gform_21 .gchoice input[type=checkbox]:checked{
    background-color: #00305F;
}

@media (max-width: 767.98px) {
    #gform_21 .gchoice .ginput_container{
        align-items: flex-start;
    }
    .text__section img, .single-post__first-section .bottom-content img {
        height: auto !important;
        width: 100% !important;
        margin: 0 !important;
        padding-bottom: 15px;
    }
}

.page-single .single-post__text-list .ul_4 > li {
    background-color: white;
    padding-bottom: 0;
}

.ul_4 a:last-child {
    border-bottom: none;
}

.page-single .single-post__text-list .ul_4 a, .page-single .single-post__text-list .ul_4 .h4 {
    text-decoration: none;
}

.page-single .single-post__text-list .ul_4 a, .page-single .single-post__text-list .ul_4 > li:last-child a {
    padding: 40px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .page-single .single-post__text-list .ul_4 a, .page-single .single-post__text-list .ul_4 > li:last-child a {
        padding: 10px;
    }
}

.list-main li {
    line-height: 150%;
    margin-bottom: 15px;
    list-style: none !important;
    position: relative;
    padding-left: 20px;
}
.list-main li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url(../images/icons/icons.svg#icon-list) no-repeat;
    display: inline-block;
    margin-right: 7px;
}

.fancybox-content {
    border-radius: 3px;
    overflow: hidden;
}

.fancybox-caption {
    background: white;
    border-radius: 3px;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    text-align: left;
    color: #231F20;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    .fancybox-caption {
        font-size: 14px;
    }
}

.checkup-table {
    border-top: 1px solid #b29354;
}
@media (max-width: 767.98px) {
    .checkup-table {
        border-top: none;
    }
}
.checkup-table .table-row {
    display: flex;
}
@media (max-width: 767.98px) {
    .checkup-table .table-row {
        flex-wrap: wrap;
    }
}
.checkup-table .table-row .left {
    flex: 0 0 50%;
    flex-grow: 1;
}
@media (max-width: 767.98px) {
    .checkup-table .table-row .left {
        flex: 0 0 100%;
    }
}
.checkup-table .table-row div {
    flex: 0 0 10%;
    padding: 10px;
    border-bottom: 1px solid #b29354;
    border-right: 1px solid #b29354;
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
    .checkup-table .table-row div {
        flex: 0 0 50%;
    }
}
@media (max-width: 767.98px) {
    .checkup-table .table-row div:nth-child(5) {
        border-right: none;
    }
}
@media (max-width: 767.98px) {
    .checkup-table .table-row div:nth-child(n+2):nth-child(-n+5) {
        text-align: center;
    }
    .checkup-table .table-row div:nth-child(n+2):nth-child(-n+5):before {
        content: attr(data-label);
        display: block;
        font-size: 10px;
        line-height: 1;
        padding-bottom: 10px;
    }
}
.checkup-table .table-row div:nth-child(1) {
    border-left: 1px solid #b29354;
}
@media (max-width: 767.98px) {
    .checkup-table .table-row div:nth-child(1) {
        border-left: none;
        border-right: none;
        padding: 10px 30px 10px 10px;
    }
}
@media (max-width: 767.98px) {
    .checkup-table .table-row div:nth-child(3) {
        border-right: 0;
    }
}
.checkup-table .table-row .table-title {
    flex: 0 0 100%;
    position: relative;
}
@media (max-width: 767.98px) {
    .checkup-table .table-row .table-title {
        border: none;
        display: flex;
        padding: 20px 10px;
        background: white;
        margin-bottom: 10px;
    }
}
.checkup-table .table-title {
    flex: 0 0 100%;
    position: relative;
    display: flex;
}
.checkup-table .table-title .accordion__arrow {
    display: none;
}
@media (max-width: 767.98px) {
    .checkup-table .table-title .accordion__arrow {
        display: block;
    }
}
@media (max-width: 767.98px) {
    .checkup-table .table-title {
        padding: 20px 10px;
        background: white;
    }
}
@media (max-width: 767.98px) {
    .checkup-table .cost-row {
        background: white;
    }
}

.show-mobile-flex {
    display: none;
}
@media (max-width: 767.98px) {
    .show-mobile-flex {
        display: flex;
    }
}

.checkup-table .table-row .table-title-empty {
    flex: 0 0 40%;
}

.accordion-header {
    position: relative;
}

@media (max-width: 767.98px) {
    .accordion-item .accordion-content {
        background: white;
        margin-bottom: 10px;
    }
}
@media (max-width: 767.98px) {
    .accordion-item .accordion-content {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .accordion-item.accordion-item--active .accordion-content {
        display: block;
    }
}

.btn_more {
    margin-top: 5px;
    padding: 7px 60px 7px;
    margin-bottom: 20px;
}
@media (max-width: 992.98px) {
    .btn_more {
        margin: 5px auto 20px;
        display: block;
        width: max-content;
        padding: 7px 90px 7px;
    }
}

/**
* Подключение стилей отдельных блоков и секций
*/
header {
    position: relative;
}
header .menu li a {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
}
header .menu__list {
    display: flex;
    justify-content: center;
}
header .menu li.menu__item > a {
    border-bottom: 2px solid white;
    padding: 13px 10px 6px;
    letter-spacing: 0.24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
@media (max-width: 1200.98px) {
    header .menu li.menu__item > a {
        font-size: 13px;
    }
}
@media (max-width: 991.98px) {
    header .menu li.menu__item > a {
        border-bottom: none;
    }
}
header .menu li.menu__item > a:hover {
    border-bottom: 2px solid #00305F;
}
@media (max-width: 991.98px) {
    header .menu li.menu__item > a:hover {
        border-bottom: none;
    }
}
header .menu li.menu__item.active > a {
    border-bottom: 2px solid #00305F;
}
@media (max-width: 991.98px) {
    header .menu li.menu__item.active > a {
        border-bottom: none;
    }
}
header .menu .menu__list > .menu-item-has-children > a:after {
    content: "";
    background-image: url("../images/icons/icons.svg#arrow-menu");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 7px;
    height: 6px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
header .menu .menu__list > .menu-item-has-children:hover a:after, header .menu .menu__list > .menu-item-has-children.active a:after {
    transform: rotate(180deg);
}
header .menu .full-menu .menu__wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1310px;
    padding: 0 60px;
    transform: translate(-50%, 0);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    transition-delay: 0.2s;
    z-index: 5;
}
header .menu .full-menu .menu__wrapper.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 1350px) {
    header .menu .full-menu .menu__wrapper {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    header .menu .full-menu .menu__wrapper.active {
        display: block;
    }

}
@media (max-width: 991.98px) {
    header .menu .full-menu .menu__wrapper {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        padding: 0;
        display: none;
    }
}
header .menu .full-menu .nav-sub-menu {
    margin: 0 auto;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding: 40px 20px;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .nav-sub-menu {
        padding: 0 10px 0px;
    }
}
header .menu .full-menu .nav-sub-menu:before {
    content: "";
    position: absolute;
    left: -60px;
    right: -60px;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #fff;
}
header .menu .full-menu .menu__column .title {
    color: #c0a35f;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-family: "Gilroy", sans-serif;
}
header .menu .full-menu .menu__column li:not(.menu__half):first-child ul:after {
    content: "";
    display: inline-block;
    width: 60%;
    height: 1px;
    background-color: #c0a35f;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .menu__column li:not(.menu__half):first-child ul:after {
        width: 100%;
    }
}
header .menu .full-menu .menu__column ul {
    padding-bottom: 15px;
    margin-bottom: 19px;
    position: relative;
}
header .menu .full-menu .menu__column ul li {
    padding-bottom: 6px;
}
header .menu .full-menu .menu__column ul li a {
    letter-spacing: 0.28px;
}
header .menu .full-menu .menu__column ul li a:hover {
    color: #c0a35f;
}
header .menu .full-menu .sub-menu-wrap:first-child {
    flex-basis: 366px;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .sub-menu-wrap:first-child {
        flex-basis: 100%;
    }
}
header .menu .full-menu .sub-menu-wrap:last-child {
    flex-basis: 210px;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .sub-menu-wrap:last-child {
        flex-basis: 100%;
    }
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) {
    flex: 1;
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) ul {
    display: flex;
    flex-wrap: wrap;
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .menu__half {
    width: 100%;
    flex: 0 0 100%;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .menu__half {
        padding-right: 0;
    }
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .menu__half .title {
    flex: 0 0 100%;
    width: 100%;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .menu__half .sub-column:nth-child(2) {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .menu__half .sub-column li {
    flex: 0 0 100%;
    width: 100%;
}
header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .sub-column {
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 991.98px) {
    header .menu .full-menu .sub-menu-wrap:nth-child(2) ul .sub-column {
        flex: 0 0 100%;
        width: 100%;
    }
}
header .menu .full-menu .hide {
    display: none;
}
header .menu .full-menu .separator > .title {
    display: none;
}
@media (max-width: 991.98px) {
    header .menu {
        display: none;
    }
}
@media (max-width: 991.98px) {
    header .menu .menu__wrapper.active .nav-sub-menu {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 0 10px 0px;
        transition-delay: unset;
        transition: unset;
    }
}
header .menu-item-has-children:not(.full-menu) {
    position: relative;
}
header .menu-item-has-children:not(.full-menu) .nav-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 30px 20px 40px;
    width: max-content;
    max-width: 300px;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    transition-delay: 0.2s;
}
@media (max-width: 991.98px) {
    header .menu-item-has-children:not(.full-menu) .nav-sub-menu {
        transition: unset;
        transition-delay: unset;
    }
}
header .menu-item-has-children:not(.full-menu) .nav-sub-menu.active {
    opacity: 1;
    visibility: visible;
}
header .menu-item-has-children:not(.full-menu) .nav-sub-menu li {
    padding-bottom: 6px;
}
header .menu-item-has-children:not(.full-menu) .nav-sub-menu li:hover a {
    color: #c0a35f;
}
header .mobile-navigation {
    display: none;
}
@media (max-width: 991.98px) {
    header .menu.active {
        display: block;
        position: fixed;
        height: 100%;
        overflow-y: auto;
        top: 111px;
        background-color: white;
        width: 100%;
        left: 0;
        padding-top: 27px;
        padding-bottom: 50px;
        box-shadow: inset 0 10px 20px -6px rgba(135, 149, 166, 0.2);
    }

    .no-BlockInstall header .menu.active {
        top: 49px;
    }
}
header .menu.active li.menu__item > a {
    padding: 13px 10px 16px;
}
@media (max-width: 991.98px) {
    header .menu.active .menu__item.active > a {
        border-bottom: 1px solid #D6DEE5;
        margin-bottom: 20px;
    }
}
header .menu.active .menu__list > .menu-item-has-children > a:after {
    background-image: url(../images/icons/icons.svg#arrow-menu-mobile);
    width: 13px;
    height: 15px;
    position: absolute; /* Устанавливаем абсолютное позиционирование */
    top: 50%; /* Помещаем верхний край псевдоэлемента на середину элемента <a> */
    right: 5px; /* Подстраиваем правый отступ, чтобы выровнять по желанию */
    transform: translateY(-50%) rotate(0);
}
header .menu.active .menu__list > .menu-item-has-children.active > a:after {
    transform: translateY(-50%) rotate(180deg);
}
header .menu.active .menu__list {
    flex-wrap: wrap;
}
header .menu.active .menu__item {
    width: 100%;
    flex: 0 0 100%;
    border-bottom: 1px solid rgba(0, 48, 95, 0.4);
    margin-bottom: 23px;
}
header .menu.active .menu__item > a {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    position: relative;
}
header .menu.active .menu__list > .menu-item-has-children > a:after {
    position: absolute;
    right: 10px;
    top: 50%;
}

#nav-trigger {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    background: transparent;
}
@media (max-width: 991.98px) {
    #nav-trigger {
        display: block;
        margin-left: 10px;
        margin-top: 5px;
    }
}
#nav-trigger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #00305F;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}
#nav-trigger span:nth-child(1) {
    top: 8px;
}
#nav-trigger span:nth-child(2), #nav-trigger span:nth-child(3) {
    top: 18px;
}
#nav-trigger span:nth-child(4) {
    top: 28px;
}
#nav-trigger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#nav-trigger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#nav-trigger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-trigger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.show-mobile-header {
    display: none;
}
@media (max-width: 991.98px) {
    .show-mobile-header {
        display: block;
    }
}

main {
    padding-top: 75px;
}

header {
    padding: 10px 0 5px;
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
@media (max-width: 991.98px) {
    main {
        padding-top: 49px;
    }
    header {
        padding-top: 0;
        box-shadow: 0px 4px 20px 0px rgba(135, 149, 166, 0.2);
        z-index: 100;
        padding-bottom: 0;
    }
}
header .btn {
    text-transform: uppercase;
    padding: 8px 13px;
    border-radius: 3px;
    margin-left: 15px;
}
header .header__logo {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    height: 63px;
}
@media (max-width: 1200.98px) {
    header .header__logo {
        flex: 0 0 15%;
        max-width: 15%;
        padding: 0 5px;
        height: 44px;
    }
}
@media (max-width: 991.98px) {
    header .header__logo {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (max-width: 575.98px) {
    header .header__logo {
        flex: 0 0 96px;
        max-width: 96px;
    }

}
header .header__logo img {
    width: 191px;
    margin-left: 3px;
}
@media (max-width: 991.98px) {
    .header .row{
        justify-content: space-between;
    }
    header .header__logo img {
        width: 98px;
    }
}

header .header__bar, header .header__contact {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header .header__bar .top-part, header .header__contact .top-part {
    width: 100%;
    display: flex;
    justify-content: center;
}
header .header__bar .top-part .header__address, header .header__contact .top-part .header__address {
    color: #66839F;
    text-align: center;
    font-size: 14px;
}
header .header__bar {
    flex: 0 0 60%;
    max-width: 60%;
}
@media (max-width: 1200.98px) {
    header .header__bar {
        flex: 0 0 65%;
        max-width: 65%;
    }
}
@media (max-width: 991.98px) {
    header .header__bar {
        max-width: 30%;
        flex: 0 0 30%;
        padding-right: 10px;
    }
}
@media (max-width: 575.98px) {
    header .header__bar {
        flex: 0 0 30%;
        max-width: 30%;
    }
}
@media (max-width: 380.98px) {
    header .header__bar {
        flex: 0 0 40%;
        max-width: 40%;
    }
}
header .header__bar .top-part {
    padding-right: 10px;
    line-height: 1;
    padding-bottom: 7px;
}
@media (max-width: 991.98px) {
    header .header__bar .top-part {
        display: none;
    }
}
@media (max-width: 991.98px) {
    header .header__bar .bottom-part {
        display: flex;
        justify-content: flex-end;
    }
}
header .header__bar .bottom-part .info__accessibility {
    width: 48px;
    display: none;
}
@media (max-width: 991.98px) {
    header .header__bar .bottom-part .info__accessibility {
        display: flex;
        align-items: center;
        width: 45px;
        justify-content: center;
    }
}
header .header__bar .bottom-part .info__accessibility img {
    width: 24px;
    height: 24px;
}
@media (max-width: 991.98px) {
    header .header__bar .bottom-part .info__phone a {
        background-color: #00305F;
        height: 100%;
        display: block;
        padding: 15px;
        border-radius: 3px;
        width: 44px;
        height: 44px;
    }
}
header .header__bar .bottom-part .info__phone a img {
    width: 16px;
    height: 16px;
}
header .header__contact {
    align-items: flex-end;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (max-width: 991.98px) {
    header .header__contact {
        display: none;
    }
}
header .header__contact .top-part {
    justify-content: flex-end;
}
header .header__contact .bottom-part {
    padding-top: 5px;
}
header .info {
    display: flex;
    align-items: center;
}
header .info__search, header .info__accessibility, header .info__telegram, header .info__account {
    padding: 0 15px;
    display: flex;
    align-items: center;
}
@media (max-width: 1200.98px) {
    header .info__search, header .info__accessibility, header .info__telegram, header .info__account {
        padding: 0 5px;
    }
}
header .info__phone a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28px;
    margin-left: 8px;
}
@media (max-width: 1200.98px) {
    header .info__phone a {
        margin-left: 5px;
    }
}
header .info .svg-telegram, header .info .svg-user, header .info .svg-search {
    width: 20px;
    height: 16px;
}
header .info .svg-accessibility {
    width: 24px;
    height: 24px;
}
header .info__search {
    position: relative;
    cursor: pointer;
}
header .show-mobile-header.phone {
    width: fit-content;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
}
header .show-mobile-header.phone a {
    margin-left: 0;
    font-size: 14px;
}
header .search__form {
    position: absolute;
    right: 7px;
    top: -9px;
    opacity: 0;
    width: 0;
    overflow: hidden; /* чтобы контент внутри не выплывал за пределы блока */
    transition: width 0.3s ease, opacity 0.3s ease;
}
header .search__form .search__input {
    position: relative;
}
header .search__form input {
    border-radius: 3px;
    background: #E7EBEF;
    width: 100%;
    height: 32px;
    padding: 7px 14px 7px 42px;
}
header .search__form input::placeholder {
    color: #B9C5D1;
}
header .search__form .svg-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}
header .search__form .info__search-close img {
    position: absolute;
    right: 14px;
    transform: translateY(-50%);
    top: 50%;
    cursor: pointer;
    width: 12px;
    height: 12px;
}
header .info__search.active .search__form {
    opacity: 1;
    width: 610px;
}

.menu.active .mobile-navigation {
    display: block;
}

.mobile-navigation {
    padding: 10px;
}
.mobile-navigation .search-mobile {
    padding-bottom: 20px;
}
.mobile-navigation .search-mobile .input-wrap {
    position: relative;
}
.mobile-navigation .search-mobile input {
    border-radius: 3px;
    background: #F6F8FC;
    width: 100%;
    height: 44px;
    padding: 12px 20px;
}
.mobile-navigation .search-mobile .input-group-append {
    position: absolute;
    right: 0;
    top: 0;
}
.mobile-navigation .search-mobile .btn {
    height: 44px;
}
.mobile-navigation .login-account .btn {
    font-weight: 500;
    width: 100%;
    padding: 16px;
    margin-left: 0;
    margin-bottom: 20px;
}
.mobile-navigation .messengers {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
.mobile-navigation .messengers img {
    width: 32px;
    height: 32px;
}
.mobile-navigation .opened-buttons {
    padding-bottom: 20px;
}
.mobile-navigation .opened-buttons .btn {
    padding: 16px;
    font-weight: 500;
    width: 100%;
    margin: 0;
}
.mobile-navigation .working-time {
    text-align: center;
    font-size: 16px;
    padding-top: 20px;
}
.mobile-navigation .working-time span {
    font-weight: 500;
}

body.menu-active {
    overflow: hidden;
}

.first-section {
    padding: 30px 0 50px;
}
@media (max-width: 991px) {
    .first-section {
        padding: 30px 0 35px;
    }
}
@media (max-width: 767px) {
    header .show-mobile-header.phone a {
        font-size: 12px;
    }
    .first-section {
        padding: 30px 0 35px;
    }
}
@media (max-width: 380px) {
    header .show-mobile-header.phone a {
        font-size: 10px;
    }

}
.first-section h1, .first-section .h1 {
    font-family: "Gilroy", sans-serif;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 22px;
    line-height: 130%;
    letter-spacing: 0.48px;
}
@media (max-width: 1200.98px) {
    .first-section h1, .first-section .h1 {
        font-size: 24px;
        padding-bottom: 20px;
    }
}
@media (max-width: 992.98px) {
    header .show-mobile-header.phone {
        display: flex;
    }
    .first-section h1, .first-section .h1 {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .first-section h1, .first-section .h1 {
        font-size: 24px;
    }
}

.home .first-section h1{
    margin-bottom: 0;
    padding-bottom: 0;
}

.home__slider-init:not(.slick-initialized) {
    display: flex;
}

.home__slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}
.home__slider .slider__item {
    display: flex;
    align-items: stretch;
    height: auto;
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
    .home__slider .slider__item {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
.home__slider .block {
    position: relative;
    padding-bottom: 45px;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 1200.98px) {
    .home__slider .block {
        padding-bottom: 50px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block {
        padding-bottom: 50px;
    }
}
.home__slider .block__content {
    background-color: white;
    margin-top: 40px;
    width: 60%;
    flex: 0 0 60%;
    padding: 40px;
    position: relative;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 992.98px) {
    .home__slider .block__content {
        padding: 40px 20px;
    }
}
@media (max-width: 767px) {
    .home__slider .block__content {
        padding: 40px 10px;
        width: 100%;
        flex: 0 0 100%;
    }
}
.home__slider .block__date {
    text-transform: uppercase;
    font-size: 24px;
    padding: 10px 40px;
    background-color: #00305F;
    color: white;
    border-radius: 3px;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    width: 40%;
}
@media (max-width: 992.98px) {
    .home__slider .block__date {
        padding: 10px 15px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .home__slider .block__date {
        padding: 10px 32px;
        width: 100%;
    }
}
.home__slider .block__author {
    padding-top: 30px;
    padding-left: 40px;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 1200.98px) {
    .home__slider .block__author {
        display: flex;
        justify-content: space-between;
        padding: 30px 20px 20px 40px;
        align-items: baseline;
        flex-wrap: wrap;
    }
}
@media (max-width: 992.98px) {
    .home__slider .block__author {
        padding: 10px 15px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block__author {
        padding: 60px 10px 10px;
    }
}
.home__slider .block__author-name {
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 22px;
    letter-spacing: 0.48px;
}
@media (max-width: 992.98px) {
    .home__slider .block__author-name {
        font-size: 16px;
        padding-bottom: 10px;
    }
}
.home__slider .block__author-post {
    text-transform: uppercase;
    padding-bottom: 67px;
    display: block;
    font-size: 14px;
    letter-spacing: 0.32px;
}
@media (max-width: 1200.98px) {
    .home__slider .block__author-post {
        padding-bottom: 20px;
    }
}
@media (max-width: 992.98px) {
    .home__slider .block__author-post {
        font-size: 14px;
        padding-bottom: 0;
    }
}
.home__slider .block__title {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 22px;
    line-height: 130%;
    letter-spacing: 0.48px;
}
@media (max-width: 1200.98px) {
    .home__slider .block__title {
        font-size: 24px;
        padding-bottom: 20px;
    }
}
@media (max-width: 992.98px) {
    .home__slider .block__title {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block__title {
        font-size: 24px;
    }
}
.home__slider .block .btn-bordered {
    background-color: transparent;
    color: #231F20;
    border-color: #BA9F67;
}
.home__slider .block__text {
    padding-bottom: 33px;
    line-height: 150%;
}
@media (max-width: 992.98px) {
    .home__slider .block__text {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block__text {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block__link {
        text-align: center;
    }
}
.home__slider .block__link .btn {
    font-size: 16px;
    padding: 6px 30px;
}
.home__slider .block__image {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 3px 0 0 3px;
    overflow: hidden;
    position: relative;
    min-height: 440px;
}
@media (max-width: 767px) {
    .home__slider .block__image {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 345px;
    }
}
.home__slider .block__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 1120.98px) {
    .home__slider .block__image img {
        object-fit: contain;
    }
}
@media (max-width: 767.98px) {
    .home__slider .block__image img {
        object-fit: contain;
    }
}
.home__slider .swiper-slide {
    width: 100%;
    max-width: 1190px;
}
@media (max-width: 1200.98px) {
    .home__slider .swiper-slide {
        max-width: 960px;
    }
}
@media (max-width: 992.98px) {
    .home__slider .swiper-slide {
        max-width: 720px;
    }
}
@media (max-width: 767.98px) {
    .home__slider .swiper-slide {
        max-width: 540px;
    }
}
@media (max-width: 576.98px) {
    .home__slider .swiper-slide {
        max-width: 100%;
    }
}
.home__slider .slider__nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translateX(-50%);
}


.home__slider .swiper-pagination {
    padding: 0 10px;
}
.home__slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: auto;
    bottom: auto;
}
.home__slider .slick-dots li.slick-active button {
    background: #00305F;
}
.home__slider .slick-dots li button {
    background: #D0BD97;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 1;
    text-indent: -9999px;
    overflow: hidden;
}

.home__slider.swiper-initialized {
    display: block;
}
.grecaptcha-badge {
  visibility: hidden;
}
.main__section {
    padding: 30px 0;
}
@media (max-width: 991.98px) {
    .main__section {
        padding: 30px 0;
    }
}
.main__section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}
@media (max-width: 767.98px) {
    .main__section-header {
        padding-right: 0;
    }
}
.main__section-header__title {
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.64px;
    line-height: 130%;
    font-size: 32px;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 767.98px) {
    .main__section-header__title {
        font-size: 24px;
    }
}
.main__section-header .rating {
    margin-left: 148px;
    padding: 42px 20px 37px;
    text-align: center;
    margin-bottom: -20px;
}
@media (max-width: 767.98px) {
    .main__section-header .rating {
        margin-left: 0;
        width: 100%;
        padding: 24px 10px 0;
    }
}
.main__section-header .rating__num {
    padding-top: 7px;
    font-size: 14px;
}
@media (max-width: 767.98px) {
    .main__section-footer {
        padding-top: 20px;
    }
}
.main__section-footer .btn {
    padding-top: 30px;
    display: block;
    text-align: center;
}

.clinic-departments {
    padding-bottom: 20px;
}
@media (max-width: 767.98px) {
    .clinic-departments {
        padding-bottom: 30px;
    }
}
.clinic-departments .main__section-header {
    padding-bottom: 20px;
}
@media (max-width: 767.98px) {
    .clinic-departments .main__section-box {
        padding-bottom: 20px;
    }
}
.clinic-departments .row {
    margin-left: -20px;
    margin-right: -20px;
}
.clinic-departments .row .col-md-3 {
    padding-left: 20px;
    padding-right: 20px;
}
.clinic-departments .item-wrapper {
    height: 100%;
}
.clinic-departments__item {
    background-color: #FFFFFF;
    padding: 30px 20px 26px;
    height: 100%;
    display: block;
}
@media (max-width: 767.98px) {
    .clinic-departments__item {
        padding: 30px 20px 30px;
    }
}
.clinic-departments__icon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
}
.clinic-departments__icon img {
    width: 45px;
    height: 50px;
}
.clinic-departments__icon:after {
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("../images/icons/icons.svg#icon-departments") no-repeat;
}
.clinic-departments__title {
    text-transform: uppercase;
    font-size: 20px;
    color: #00305F;
    letter-spacing: 0.4px;
    font-weight: 400;
}
/*.clinic-departments .slider__btn:not(.init_btn) {*/
/*  display: none;*/
/*}*/

.department__slider {
    width: 100%;
    height: 364px;
    overflow: hidden;
}
.department__slider .box {
    height: calc((100% - 30px) / 2) !important;
    width: 25%;
}
@media (max-width: 1200.98px) {
    .department__slider .box {
        width: 33.33%;
    }
}
@media (max-width: 992.98px) {
    .department__slider .box {
        width: 50%;
    }
}
@media (max-width: 767.98px) {
    .department__slider .box {
        width: 100%;
    }
}
.department__slider .swiper-wrapper {
    flex-wrap: wrap;
}

.department__slider:not(.swiper-initialized) .box {
    padding: 0 10px 10px 10px;
}
.department__slider:not(.swiper-initialized) .swiper-wrapper {
    margin: 0 -10px;
}

.text-section .main__section-header {
    padding-bottom: 32px;
}
@media (max-width: 767.98px) {
    .text-section .main__section-header {
        padding-bottom: 25px;
    }
}
.text-section .btn {
    margin-top: 17px;
    margin-bottom: 5px;
}
@media (max-width: 767.98px) {
    .text-section .btn {
        display: block;
        margin-top: 25px;
    }
}

.label__box {
    height: 720px;
    position: relative;
    display: block;
    background-size: cover;
}
@media (max-width: 767.98px) {
    .label__box {
        height: 245px;
        background-size: cover;
        border-radius: 3px;
        overflow: hidden;
    }
}
.label__box-label {
    padding: 30px 15px 30px 40px;
    background: white;
    display: flex;
    max-width: 560px;
    align-items: center;
    border-radius: 3px;
    position: absolute;
    bottom: 60px;
    left: 60px;
}
@media (max-width: 767.98px) {
    .label__box-label {
        max-width: 100%;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 10px;
        border-radius: 0;
    }
}
.label__box-label img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}
@media (max-width: 767.98px) {
    .label__box-label img {
        width: 55px;
        height: 55px;
    }
}
.label__box-label .label {
    color: #c0a35f;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 767.98px) {
    .label__box-label .label {
        font-size: 14px;
    }
}

.wrapper-form {
    position: relative;
}

.horizontal-form {
    padding: 30px;
    background: white;
    display: flex;
    position: relative;
    border-radius: 3px;
}
@media (max-width: 992.98px) {
    .horizontal-form {
        flex-wrap: wrap;
        margin-top: 0;
    }
}
@media (max-width: 767.98px) {
    .horizontal-form {
        padding: 20px;
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    }
}
.horizontal-form__header {
    flex: 0 0 25%;
}
@media (max-width: 992.98px) {
    .horizontal-form__header {
        flex: 0 0 100%;
    }
}
.horizontal-form .h2, .horizontal-form .title {
    text-transform: uppercase;
    line-height: 120%;
    letter-spacing: 0.64px;
    padding-bottom: 30px;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
}
@media (max-width: 992.98px) {
    .horizontal-form .h2, .horizontal-form .title {
        padding-bottom: 20px;
    }
    .horizontal-form .h2 br, .horizontal-form .title br {
        display: none;
    }
}
.horizontal-form__text {
    margin-bottom: 0;
}
.horizontal-form form input[type=text],
.horizontal-form form input[type=tel] {
    font-size: 18px;
    padding: 15px 0 25px;
}
@media (max-width: 767.98px) {
    .horizontal-form form input[type=text],
    .horizontal-form form input[type=tel] {
        font-size: 16px;
        padding: 20px 0 15px;
    }
}
.horizontal-form__form {
    padding: 0 0 0 85px;
}
@media (max-width: 992.98px) {
    .horizontal-form__form {
        padding: 0;
    }
}
.horizontal-form__form .form-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.horizontal-form__form .form-row .form-group:first-child {
    padding-right: 70px;
}
.horizontal-form__form .form-row .form-group {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 35px;
}
@media (max-width: 992.98px) {
    .horizontal-form__form .form-row .form-group:first-child{
        padding-right: 0;
    }
    .horizontal-form__form .form-row .form-group {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }
}
.horizontal-form__form .form-row .form-group.agree {
    width: 100%;
    flex: 0 0 100%;
    padding-top: 20px;
    font-size: 17px;
    font-weight: 300;
    line-height: 130%;
    color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 992.98px) {
    .horizontal-form__form .form-row .form-group.agree {
        font-size: 14px;
    }
}
.horizontal-form__form .form-row .form-group.agree a {
    text-decoration: underline;
    color: rgba(35, 31, 32, 0.6);
}
.horizontal-form__form .form-row .form-group-btn {
    padding-top: 17px;
}

.horizontal-form__form .form-row .form-group-btn .btn {
    padding: 8px 60px 7px;
}
@media (max-width: 1200.98px) {
    .horizontal-form__form .form-row .form-group-btn .btn {
        padding: 8px 10px 7px;
        width: 100%;
    }
}
.horizontal-form #gform_fields_1, .horizontal-form .gform_footer, .horizontal-form #gform_fields_2, .horizontal-form #gform_fields_6, .horizontal-form #gform_fields_12 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.horizontal-form #gform_fields_1 .gfield--type-text, .horizontal-form .gform_footer .gfield--type-text, .horizontal-form #gform_fields_2 .gfield--type-text, .horizontal-form #gform_fields_6 .gfield--type-text, .horizontal-form #gform_fields_5 .gfield--type-text, .horizontal-form #gform_fields_12 .gfield--type-text {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 35px;
}
.horizontal-form #gform_fields_5 .form-group-100{
    padding-left: 0;
}
@media (max-width: 992.98px) {
    .horizontal-form #gform_fields_1 .gfield--type-text,.horizontal-form .gform_footer .gfield--type-text, .horizontal-form #gform_fields_2 .gfield--type-text, .horizontal-form #gform_fields_5 .gfield--type-text, .horizontal-form .gform_footer .gfield--type-text, .horizontal-form #gform_fields_2 .gfield--type-text, .horizontal-form #gform_fields_6 .gfield--type-text, .horizontal-form #gform_fields_12 .gfield--type-text {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        padding-left: 25px;
    }
}
.horizontal-form #gform_fields_1 .form-group.agree, .horizontal-form .gform_footer .form-group.agree, .horizontal-form #gform_fields_2 .form-group.agree, .horizontal-form #gform_fields_6 .form-group.agree, .horizontal-form #gform_fields_12 .form-group.agree {
    width: 100%;
    flex: 0 0 100%;
    padding-top: 25px;
    font-size: 17px;
    font-weight: 300;
    line-height: 130%;
    color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767.98px) {

    .horizontal-form #gform_fields_5 .gfield--type-text, .horizontal-form #gform_fields_1 .gfield--type-text, .horizontal-form .gform_footer .gfield--type-text, .horizontal-form #gform_fields_2 .gfield--type-text, .horizontal-form #gform_fields_6 .gfield--type-text, .horizontal-form #gform_fields_12 .gfield--type-text{
        padding-left: 0;
    }
    .horizontal-form #gform_fields_1 .form-group.agree, .horizontal-form .gform_footer .form-group.agree, .horizontal-form #gform_fields_2 .form-group.agree, .horizontal-form #gform_fields_6 .form-group.agree, .horizontal-form #gform_fields_12 .form-group.agree {
        font-size: 14px;
    }
}
.horizontal-form #gform_fields_1 .form-group.agree a, .horizontal-form .gform_footer .form-group.agree a, .horizontal-form #gform_fields_2 .form-group.agree a, .horizontal-form #gform_fields_6 .form-group.agree a, .horizontal-form #gform_fields_12 .form-group.agree a {
    text-decoration: underline;
    color: rgba(35, 31, 32, 0.6);
}
.horizontal-form #field_1_7, .horizontal-form #field_2_4 {
    padding-right: 0;
    padding-left: 35px;
}
@media (max-width: 992.98px) {
    .horizontal-form #field_1_7, .horizontal-form #field_2_4 {
        padding-left: 0;
    }
}
.horizontal-form .gform_footer {
    padding-top: 17px;
}
@media (max-width: 767.98px) {
    .horizontal-form .gform_footer {
        padding-top: 25px;
    }
}
.horizontal-form .gform_footer .btn, .horizontal-form .gform_footer .button {
    width: fit-content;
    padding: 8px 60px 7px;
}
@media (max-width: 1200.98px) {
    .horizontal-form .gform_footer .btn, .horizontal-form .gform_footer .button {
        padding: 8px 10px 7px;
    }
}
@media (max-width: 767.98px) {
    .horizontal-form .gform_footer .btn, .horizontal-form .gform_footer .button {
        width: 100%;
    }
}
.horizontal-form .gfield_label {
    display: none;
}

.main__section.form-review .overflow form input[type=text] {
    padding: 12px 0 11px;
    margin-bottom: 10px;
}
@media (max-width: 767.98px) {
    .main__section.form-review .overflow form input[type=text] {
        padding: 5px 0 14px;
        margin-bottom: 0;
    }
}
.main__section.form-review input::placeholder {
    color: #231F20;
}
.main__section.form-review .overflow.wrapper-form:before {
    bottom: 35px;
}
.main__section.form-review .horizontal-form {
    padding: 30px 20px 40px;
}
.main__section.form-review .horizontal-form .gform_footer {
    padding-top: 0;
}
.main__section.form-review .horizontal-form form .form-group-100.agree {
    padding-top: 8px;
    padding-bottom: 22px;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

form input[type=text], form input[type=tel] {
    border-bottom: 1px solid #99ACBF;
    font-size: 16px;
    color: #231F20;
    font-weight: 300;
    padding: 15px 0;
    width: 100%;
    border-radius: 0!important;
}
input {outline:none!important;}
form input::placeholder {
    color: #231F20;
}

.department-group {
    margin: 0;
}
.department-group p {
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .department-group {
        margin-bottom: 60px;
    }
    .department-group:last-child {
        margin-bottom: 0;
    }
}
.department-group:nth-child(even) {
    flex-direction: row-reverse;
}
.department-group:nth-child(even) .department-group__text {
    padding: 60px 60px 60px 40px;
}
@media (max-width: 992.98px) {
    .department-group:nth-child(even) .department-group__text {
        padding: 30px;
    }
}
@media (max-width: 767.98px) {
    .department-group:nth-child(even) .department-group__text {
        padding: 20px 20px 25px;
    }
}
.department-group__column {
    width: 50%;
    flex: 0 0 50%;
}
@media (max-width: 767.98px) {
    .department-group__column {
        width: 100%;
        flex: 0 0 100%;
    }
}
.department-group__text {
    background: white;
    padding: 60px 40px 60px 60px;
}
@media (max-width: 992.98px) {
    .department-group__text {
        padding: 30px;
    }
}
@media (max-width: 767.98px) {
    .department-group__text {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        padding: 20px 20px 25px;
    }
}
.department-group .department {
    height: 100%;
}
@media (max-width: 767.98px) {
    .department-group .department {
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        overflow: hidden;
    }
}
.department-group .department img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.department-group .department__title {
    padding-bottom: 23px;
    line-height: 100%;
    letter-spacing: -0.16px;
}
@media (max-width: 767.98px) {
    .department-group .department__title {
        margin-bottom: 12px;
        line-height: 120%;
        padding-bottom: 9px;
    }
}
.department-group .department__description {
    line-height: 130%;
    padding-bottom: 25px;
}
@media (max-width: 767.98px) {
    .department-group .department__description {
        line-height: 150%;
        padding-bottom: 10px;
    }
}
@media (max-width: 767.98px) {
    .department-group .department .btn {
        display: block;
    }
}

.slide .img-border-wrapp {
    border-radius: 3px;
    overflow: hidden;
}
.slide .img-border-wrapp img {
    width: 100%;
    height: 100%;
}

.competence__slider {
    position: relative;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .competence__slider.slider {
        display: flex;
        flex-wrap: wrap;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .slide {
        display: flex;
        flex-wrap: wrap;
    }
}
.competence__slider .slide__content {
    background: url("../images/competence_bg.svg") no-repeat bottom;
    width: 385px;
    padding: 26px 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 992.98px) {
    .competence__slider .slide__content {
        width: 270px;
        background-size: contain;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .slide__content {
        order: 2;
        width: 100%;
        position: relative;
        background-size: cover;
        padding: 25px 35px;
    }
}
.competence__slider .slide__content ul li {
    position: relative;
    padding-bottom: 0;
    display: block;
    line-height: 150%;
    padding-left: 20px;
}
.competence__slider .slide__content ul li:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url("../images/icons/icons.svg#icon-list") no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.competence__slider .slide__title {
    padding-bottom: 15px;
}
.competence__slider .slide__title p {
    margin-bottom: 0;
}
@media (max-width: 1200.98px) {
    .competence__slider .slide__title {
        padding-bottom: 0;
    }
    .competence__slider .slide__title .h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.competence__slider .slide__text {
    padding-bottom: 23px;
}
@media (max-width: 1200.98px) {
    .competence__slider .slide__text {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .slide__text {
        padding-bottom: 7px;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .slide__link {
        padding-bottom: 30px;
    }
}
@media (max-width: 400.98px) {
    .competence__slider .slide__link {
        padding-bottom: 0px;
    }
}
.competence__slider .slide__link .btn {
    width: 100%;
}
.competence__slider .slide__number {
    font-size: 52px;
    color: #00305F;
    text-align: center;
    font-family: "Gilroy", sans-serif;
    padding: 58px 0 15px;
}
@media (max-width: 1200.98px) {
    .competence__slider .slide__number {
        padding: 20px 0 15px;
        font-size: 27px;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .slide__number {
        font-size: 45px;
    }
}
@media (max-width: 400.98px) {
    .competence__slider .slide__number {
        font-size: 32px;
    }
}
.competence__slider .slide__image {
    padding-top: 117px;
    padding-bottom: 5px;
}
@media (max-width: 767.98px) {
    .competence__slider .slide__image {
        order: 1;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .competence__slider .swiper-wrapper {
        order: 1;
    }
}
.competence__slider .slider__nav {
    position: absolute;
    right: 0;
    top: 35px;
}
@media (max-width: 767.98px) {
    .competence__slider .slider__nav {
        order: 2;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 25px;
    }
}

.slider .main__section-header {
    padding-bottom: 30px;
}
@media (max-width: 992.98px) {
    .slider .main__section-header {
        flex-wrap: wrap;
    }
}
@media (max-width: 767.98px) {
    .slider .main__section-header {
        padding-bottom: 20px;
    }
}
.slider .main__section-header .btn {
    margin-left: auto;
    margin-right: 111px;
}
@media (max-width: 992.98px) {
    .slider .main__section-header .btn {
        margin-left: 0;
        margin-right: 20px;
    }
}

.swiper-initialized {
    position: relative;
    overflow: hidden;
}

.doctors__slider, .doctors__archive {
    position: relative;
    overflow: hidden;
}
.doctors__slider .box, .doctors__archive .box {
    border-radius: 3px;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}
.doctors__slider .box__image, .doctors__archive .box__image {
    height: 230px;
    overflow: hidden;
    background: #cdcdcd;
}
@media (max-width: 991.98px) {
    .doctors__slider .box__image, .doctors__archive .box__image {
        height: 260px;
    }
}
.doctors__slider .box__image img, .doctors__archive .box__image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
@media (max-width: 991.98px) {
    .doctors__slider .box__image img, .doctors__archive .box__image img {
        height: 100%;
        object-fit: contain;
    }
}
.doctors__slider .box__content, .doctors__archive .box__content {
    background-color: white;
    padding: 30px 25px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .doctors__slider .box__content, .doctors__archive .box__content {
        padding: 20px 20px 30px;
    }
}
.doctors__slider .box__content .awards, .doctors__archive .box__content .awards {
    padding-bottom: 10px;
    max-height: 43px;
    position: relative;
}
.doctors__slider .box__content .awards span, .doctors__archive .box__content .awards span {
    background: url("../images/icon-awards.svg") no-repeat;
    width: 23px;
    height: 30px;
    display: inline-block;
    margin-right: 7px;
    cursor: pointer;
    position: relative;
}
@media (max-width: 767.98px) {
    .doctors__slider .box__content .awards span, .doctors__archive .box__content .awards span {
        position: unset;
    }
}
.doctors__slider .box__title, .doctors__archive .box__title {
    color: #00305F;
    font-weight: 500;
    padding-bottom: 10px;
    line-height: 130%;
    display: block;
}
.doctors__slider .box__position, .doctors__archive .box__position {
    min-height: 83px;
    line-height: 130%;
}
@media (max-width: 991.98px) {
    .doctors__slider .box__position, .doctors__archive .box__position {
        min-height: 43px;
    }
}
.doctors__slider .box .bottom-content__border, .doctors__archive .box .bottom-content__border {
/*    margin-top: 20px;*/
    border-top: 1px solid #66839F;
    padding-top: 10px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.doctors__slider .box__additional, .doctors__archive .box__additional {
    color: #66839F;
    font-size: 14px;
    margin-bottom: 0;
}
.doctors__slider .box__price, .doctors__archive .box__price {
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 1rem;
    padding-top: 8px;
}
.doctors__slider .box__price span, .doctors__archive .box__price span {
    color: #c0a35f;
    font-weight: 400;
}
.doctors__slider .box__price:empty, .doctors__archive .box__price:empty {
    padding-bottom: 41px;
}
.doctors__slider .box .btn, .doctors__archive .box .btn {
    padding: 5px 20px 5px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.doctors__archive .box .btn {
    width: 100%;
}

.videoreviews__slider .box__video, .videodoctor__slider .box__video {
    position: relative;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    overflow: hidden;
}
.videoreviews__slider .box__video a, .videodoctor__slider .box__video a {
    display: block;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}
.videoreviews__slider .box__video a:after, .videodoctor__slider .box__video a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(186, 159, 103, 0.4);
    transition-duration: 0.2s;
}
.videoreviews__slider .box__video img, .videodoctor__slider .box__video img {
    width: 100%;
}
.videoreviews__slider .box__video .play, .videodoctor__slider .box__video .play {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.videoreviews__slider .box__video:hover a:after, .videodoctor__slider .box__video:hover a:after {
    background: rgba(186, 159, 103, 0.2);
}
.videoreviews__slider .box__info, .videodoctor__slider .box__info {
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media (max-width: 767.98px) {
    .videoreviews__slider .box__info, .videodoctor__slider .box__info {
        padding: 5px 8px;
    }
}
.videoreviews__slider .box__info .name, .videodoctor__slider .box__info .name {
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .videoreviews__slider .box__info .name, .videodoctor__slider .box__info .name {
        font-size: 13px;
    }
}
.videoreviews__slider .box__info .link-open img, .videodoctor__slider .box__info .link-open img {
    vertical-align: middle;
}
@media (max-width: 767.98px) {
    .videoreviews__slider .box__info .link-open img, .videodoctor__slider .box__info .link-open img {
        width: 12px;
    }
}

@media (max-width: 767.98px) {
    .rating__section {
        padding-top: 10px;
    }
}
.rating__section .rating {
    padding: 30px 20px 34px;
}
@media (max-width: 767.98px) {
    .rating__section .rating {
        padding: 20px 20px 44px;
    }
}

.rating {
    padding: 30px 20px 40px;
    background: white;
    border-radius: 3px;
}
@media (max-width: 767.98px) {
    .rating {
        padding: 20px 20px 40px;
    }
}
@media (max-width: 767.98px) {
    .rating .main__section-header {
        padding-bottom: 12px;
    }
}
.rating__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rating__item {
    flex: 0 0 20%;
    width: 20%;
    text-align: center;
}
@media (max-width: 992.98px) {
    .rating__item {
        flex: 0 0 50%;
        width: 50%;
    }
}
@media (max-width: 767.98px) {
    .rating__item {
        flex: 0 0 100%;
        width: 100%;
        padding-bottom: 20px;
    }
}
.rating__logo {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.rating__logo img {
    width: auto;
}
.rating__stars {
    display: flex;
    justify-content: center;
}
.rating .star {
    background: url("../images/icons/icons.svg#star") no-repeat center;
    width: 36px;
    height: 36px;
    display: inline-block;
}

.reviews__slider, .reviews__static {
    padding-top: 7px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .reviews__slider, .reviews__static {
        padding-top: 0;
    }
}
.reviews__slider .box__doctor, .reviews__static .box__doctor {
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 7px;
    line-height: 130%;
}
.reviews__slider .box__doctor span, .reviews__static .box__doctor span {
    font-weight: 300;
    display: block;
}
.reviews__slider .box__doctor a, .reviews__static .box__doctor a, .reviews__slider .box__doctor .doctor_name {
    color: #231F20;
    font-weight: 500;
    display: inline-block;
}
.reviews__slider .box__date, .reviews__static .box__date {
    padding-bottom: 15px;
    font-size: 14px;
}
@media (max-width: 767.98px) {
    .reviews__slider .box__date, .reviews__static .box__date {
        padding-bottom: 20px;
    }
}
.reviews__slider .box__content, .reviews__static .box__content {
    padding-bottom: 13px;
}
@media (max-width: 767.98px) {
    .reviews__slider .box__content, .reviews__static .box__content {
        margin-bottom: 5px;
    }
}
.reviews__slider .box__content .read-more, .reviews__static .box__content .read-more {
    color: #C0A35F;
}
.reviews__slider .box__image, .reviews__static .box__image {
    text-align: center;
    padding-bottom: 25px;
}
.reviews__slider .box__image img, .reviews__static .box__image img {
    margin: 0 auto;
    background-color: #c0a35f;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
@media (max-width: 767.98px) {
    .reviews__slider .box__image img, .reviews__static .box__image img {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 767.98px) {
    .reviews__slider .box__image, .reviews__static .box__image {
        padding-bottom: 15px;
    }
}
.reviews__slider .box__name, .reviews__static .box__name {
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 15px;
    line-height: 130%;
    text-transform: none;
    text-align: left;
}
.reviews__slider .box__name span, .reviews__static .box__name span {
    display: block;
    color: #BA9F67;
    font-weight: 300;
}

.reviews__slider:not(.swiper-initialized) .swiper-wrapper {
    margin: 0 -20px;
}
.reviews__slider:not(.swiper-initialized) .box {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 20px;
}

@media (max-width: 992.98px) {
    .reviews__static .box {
        padding-bottom: 50px;
    }
}

.reviews__bg-white {
    background-color: white;
    padding: 20px 60px 70px;
    margin: 0 -60px;
}
@media (max-width: 767.98px) {
    .reviews__bg-white {
        margin: 0 -10px;
        padding: 16px 10px 25px;
    }
}
.reviews__bg-white ~ .btn-style-2 {
    padding-top: 30px;
}
.reviews__bg-white .main__section-header {
    padding-bottom: 35px;
}

.news__section {
    padding-top: 46px;
}
@media (max-width: 767.98px) {
    .news__section {
        padding-top: 30px;
    }
}

.news__slider .box, .programs__slider .box, .related__slider .box {
    background-color: white;
    border-radius: 3px;
    height: auto;
    display: flex;
    flex-direction: column;
}
.news__slider .box__info, .programs__slider .box__info, .related__slider .box__info {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px 6px;
}
.news__slider .box__date, .programs__slider .box__date, .related__slider .box__date {
    font-size: 14px;
}
.news__slider .box__category, .programs__slider .box__category, .related__slider .box__category {
    text-transform: uppercase;
    font-size: 14px;
}
.news__slider .box picture, .programs__slider .box picture, .related__slider .box picture {
    width: 100%;
}
.news__slider .box__image, .programs__slider .box__image, .related__slider .box__image {
    height: 196px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.news__slider .box__image img, .programs__slider .box__image img, .related__slider .box__image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.news__slider .box__content, .programs__slider .box__content, .related__slider .box__content {
    padding: 20px 20px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news__slider .box__title, .programs__slider .box__title, .related__slider .box__title {
    font-weight: 500;
    line-height: 130%;
    padding-bottom: 20px;
}
.news__slider .box__title a, .programs__slider .box__title a, .related__slider .box__title a {
    color: #231F20;
}
.news__slider .box__description, .programs__slider .box__description, .related__slider .box__description {
    padding-bottom: 15px;
}
.news__slider .box__rating, .news__slider .box .kk-star-ratings, .programs__slider .box__rating, .programs__slider .box .kk-star-ratings, .related__slider .box__rating, .related__slider .box .kk-star-ratings {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    width: 100%;
}
.news__slider .box__rating .star, .news__slider .box__rating .kksr-icon, .news__slider .box .kk-star-ratings .star, .news__slider .box .kk-star-ratings .kksr-icon, .programs__slider .box__rating .star, .programs__slider .box__rating .kksr-icon, .programs__slider .box .kk-star-ratings .star, .programs__slider .box .kk-star-ratings .kksr-icon, .related__slider .box__rating .star, .related__slider .box__rating .kksr-icon, .related__slider .box .kk-star-ratings .star, .related__slider .box .kk-star-ratings .kksr-icon {
    width: 16px !important;
    height: 16px !important;
    margin-left: 3px;
    background-size: contain;
}
.news__slider .box__rating .star-empty, .news__slider .box .kk-star-ratings .star-empty, .programs__slider .box__rating .star-empty, .programs__slider .box .kk-star-ratings .star-empty, .related__slider .box__rating .star-empty, .related__slider .box .kk-star-ratings .star-empty {
    opacity: 0.4;
}
.news__slider .box__rating .rating__num, .news__slider .box__rating .kksr-legend, .news__slider .box .kk-star-ratings .rating__num, .news__slider .box .kk-star-ratings .kksr-legend, .programs__slider .box__rating .rating__num, .programs__slider .box__rating .kksr-legend, .programs__slider .box .kk-star-ratings .rating__num, .programs__slider .box .kk-star-ratings .kksr-legend, .related__slider .box__rating .rating__num, .related__slider .box__rating .kksr-legend, .related__slider .box .kk-star-ratings .rating__num, .related__slider .box .kk-star-ratings .kksr-legend {
    font-size: 14px !important;
    color: rgba(35, 31, 32, 0.6);
}
.news__slider .box .btn, .programs__slider .box .btn, .related__slider .box .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    opacity: 0.6;
}
.news__slider .box .btn:hover, .programs__slider .box .btn:hover, .related__slider .box .btn:hover {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .news__slider .box__description {
        padding-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .news__slider .box__content {
        padding: 20px 20px 20px;
    }
}
@media (max-width: 767.98px) {
    .news__slider .box__rating {
        padding-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .news__slider .box__image {
        height: 160px;
    }
}

.programs__slider .box__rating, .related__slider .box__rating {
    padding-bottom: 0;
}

.promo {
    padding-top: 60px;
}
@media (max-width: 767.98px) {
    .promo {
        display: none;
    }
}
.promo .main__section-header {
    padding-bottom: 29px;
}
.promo .box {
    position: relative;
    border-radius: 3px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.promo .box__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.promo .box__image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.promo .box__image.small {
    width: 60%;
    left: auto;
    right: 0;
}
.promo .box__content {
    background-color: white;
    border-radius: 3px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 20px 20px 24px;
    width: 64%;
    z-index: 1;
    position: relative;
}
.promo .box__date {
    font-size: 14px;
    padding-bottom: 9px;
}
.promo .box__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    padding-bottom: 58px;
}

.promo .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.static__promo {
    width: 44%;
    flex: 0 0 44%;
}
@media (max-width: 1200.98px) {
    .static__promo {
        width: 100%;
        flex: 0 0 100%;
        order: 2;
    }
}

.promo__slider {
    width: calc(56% - 25px);
    flex: 0 0 calc(56% - 25px);
    height: 364px;
}
@media (max-width: 1200.98px) {
    .promo__slider {
        width: 100%;
        flex: 0 0 100%;
        order: 1;
        padding-bottom: 30px;
        height: 400px;
    }
}
.promo__slider .swiper-wrapper {
    justify-content: space-between;
}
.promo__slider .box {
    height: calc((100% - 30px) / 2) !important;
}
.promo__slider .box__content {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 17px 13px;
    height: 100%;
}
.promo__slider .box__title {
    letter-spacing: -0.48px;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 0;
}
.promo__slider .box .btn {
    margin: 0 auto;
    display: block;
}

.gform_ajax_spinner {
    max-width: 20px;
    width: 20px;
    display: block;
    margin: -30px auto 0;
}

.form-card .card {
    display: flex;
}
@media (max-width: 992.98px) {
    .form-card .card {
        flex-wrap: wrap;
    }
}
.form-card .card__image {
    width: 395px;
    flex: 0 0 395px;
}
@media (max-width: 992.98px) {
    .form-card .card__image {
        order: 2;
        width: 100%;
        flex: 0 0 100%;
    }
}
.form-card .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-card .card__content {
    background-color: white;
    padding: 36px 41px 20px 70px;
    border-radius: 0 3px 3px 0;
}
@media (max-width: 992.98px) {
    .form-card .card__content {
        padding: 40px;
        order: 1;
    }
}
@media (max-width: 767.98px) {
    .form-card .card__content {
        padding: 20px;
    }
}
@media (max-width: 767.98px) {
    .form-card .card__content {
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .form-card .card__content p {
        margin-bottom: 0;
    }
    .form-card .card__content p br {
        display: none;
    }
}
.form-card .card__content .title {
    padding-bottom: 40px;
    letter-spacing: 0.64px;
}
@media (max-width: 767.98px) {
    .form-card .card__content .title {
        padding-bottom: 27px;
    }
}
.form-card .card__content form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
    padding-bottom: 10px;
}

.form-row__center{
    justify-content: center;
}
.form-row.form-request{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.form-row.form-request .form-group.form-group__full{
    flex: 0 0 100%;
    width: 100%;
}
.form-row.form-request .form-group{
        padding: 0 10px;
    flex: 0 0 50%;
    width: 50%;
}
.form-row.form-request .agree {
    padding: 10px 0;
}
.form-row.form-request .wpcf7-spinner{
    position: absolute;
}
.form-row.form-request .wpcf7-submit{
            padding: 8px 97px;
}

@media (max-width: 767.98px) {
    .form-card .card__content form .form-row {
        margin: 0;
    }
}
.form-card .card__content form .form-row input {
    padding: 15px 0 11px;
}
.form-card .card__content form .form-row .agree {
    font-size: 14px;
    font-weight: 300;
    padding-top: 31px;
    line-height: 130%;
    padding-bottom: 27px;
    color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767.98px) {
    .form-card .card__content form .form-row .agree {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.form-card .card__content form .form-row .agree a {
    color: rgba(35, 31, 32, 0.6);
    text-decoration: underline;
}
.form-card .card__content form .form-row .btn, .form-card .card__content form .form-row .button {
    padding: 8px 97px;
}
@media (max-width: 767.98px) {
    .form-card .card__content form .form-row .btn, .form-card .card__content form .form-row .button {
        width: 100%;
        padding: 8px 30px;
    }
}
.form-card .card__content form .form-group {
    flex: 0 0 50%;
    padding: 0 25px;
}
@media (max-width: 767.98px) {
    .form-card .card__content form .form-group {
        flex: 0 0 100%;
        padding: 0;
    }
}
.form-card .card__content form .form-group-100 {
    flex: 0 0 100%;
}
@media (max-width: 767.98px) {
    .form-card .card__content form .form-group-100 {
        padding: 0;
    }
}
.form-card .card__content form textarea {
    width: 100%;
}

.gform_heading {
    display: none;
}

.form-card .card__content .gform_fields {
    margin: 0 -25px;
}
@media (max-width: 767.98px) {
    .form-card .card__content .gform_fields {
        margin: 0;
    }
}

form .gform_fields, .form-card .card__content form .gform_fields {
    display: flex;
    flex-wrap: wrap;
}
form .gfield_label, .form-card .card__content form .gfield_label {
    display: none;
}
form .form-group-50, form .form-group-100, .form-card .card__content form .form-group-50, .form-card .card__content form .form-group-100 {
    padding-bottom: 10px;
}
form .form-group-50, .form-card .card__content form .form-group-50 {
    flex: 0 0 50%;
    padding: 0 25px;
}
@media (max-width: 767.98px) {
    form .form-group-50, .form-card .card__content form .form-group-50 {
        padding: 0 0 20px;
        flex: 0 0 100%;
    }
}
form .form-group-100, .form-card .card__content form .form-group-100 {
    flex: 0 0 100%;
    padding: 0 25px;
}
@media (max-width: 767.98px) {
    form .form-group-100, .form-card .card__content form .form-group-100 {
        padding: 0;
        flex: 0 0 100%;
    }
}
form .form-group-100.agree, .form-card .card__content form .form-group-100.agree {
    font-size: 14px;
    font-weight: 300;
    padding-top: 31px;
    line-height: 130%;
    padding-bottom: 27px;
    color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767.98px) {
    form .form-group-100.agree, .form-card .card__content form .form-group-100.agree {
        padding: 20px 0 20px;
    }
}
form .form-group-100.agree a, .form-card .card__content form .form-group-100.agree a {
    color: rgba(35, 31, 32, 0.6);
    text-decoration: underline;
}
form .button, .form-card .card__content form .button {
    padding: 8px 97px;
}
@media (max-width: 767.98px) {
    form .button, .form-card .card__content form .button {
        width: 100%;
        padding: 8px 20px;
    }
}

.advantages {
    padding-bottom: 45px;
}
@media (max-width: 767.98px) {
    .advantages {
        padding-bottom: 18px;
    }
}

.advantages__slider {
    padding-bottom: 25px;
}

.advantages__slider .box, .advantages__static .box {
    position: relative;
    border-radius: 0 0 70% 70%;
    background-size: contain;
    padding: 40px 15px 45px;
    background: white;
    width: 100%;
    height: auto;
}
.advantages__slider .box:after, .advantages__static .box:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -25px;
    left: 0;
    background: url(../images/bg-shield.svg) no-repeat bottom;
    background-size: 100%;
    z-index: -1;
}
@media (max-width: 767.98px) {
    .advantages__slider .box, .advantages__static .box {
        max-width: 260px;
        padding: 40px 15px;
    }
}
.advantages__slider .box__image, .advantages__static .box__image {
    padding-bottom: 20px;
    text-align: center;
}
.advantages__slider .box__image img, .advantages__static .box__image img {
    width: 50px;
    height: 50px;
}
.advantages__slider .box__title, .advantages__static .box__title {
    text-align: center;
    font-family: "Gilroy", sans-serif;
    color: #00305F;
}
@media (max-width: 1200.98px) {
    .advantages__slider .box__title, .advantages__static .box__title {
        width: 75%;
        margin: 0 auto;
    }
}
.advantages__slider .box-wrapper, .advantages__static .box-wrapper {
    width: 25%;
    height: auto;
    display: flex;
    justify-content: center;
}
@media (max-width: 1200.98px) {
    .advantages__slider .box-wrapper, .advantages__static .box-wrapper {
        width: inherit;
        flex: 0 0 auto;
        padding: 0;
    }
}

.clinic__slider .box, .equipment__slider .box {
    width: fit-content;
}
.clinic__slider .box img, .equipment__slider .box img {
    height: 340px;
    object-fit: cover;
}
@media (max-width: 767.98px) {
    .clinic__slider .box img, .equipment__slider .box img {
        width: 100%;
        height: 200px;
    }
}

.licence__slider .box__image img {
    width: 100%;
}

.licences {
    padding-top: 38px;
}
.licences .licence__info {
    padding-top: 26px;
    opacity: 0.6;
}
@media (max-width: 767.98px) {
    .licences .licence__info {
        display: flex;
        flex-direction: column-reverse;
        text-align: left;
        align-items: flex-start;
    }
}
@media (max-width: 767.98px) {
    .licences .licence__info .btn {
        padding-bottom: 10px;
    }
}
.licences .licence__info .btn:first-child {
    padding-right: 120px;
}
@media (max-width: 767.98px) {
    .licences .licence__info .btn:first-child {
        padding-right: 0;
    }
}
.licences .box__image {
    height: 340px;
}
@media (max-width: 767.98px) {
    .licences .box__image {
        height: 200px;
    }
}
.licences .box__image img {
    object-fit: contain;
    object-position: left;
    height: 100%;
}

.map {
    padding-top: 60px;
    padding-bottom: 0;
}
@media (max-width: 767.98px) {
    .map {
        padding-top: 30px;
    }
}
.map .btn {
    padding-bottom: 40px;
}
@media (max-width: 767.98px) {
    .map .btn {
        display: block;
        padding-bottom: 25px;
    }
}
.map .container--overflow {
    margin-left: -10px;
    margin-right: -10px;
}

#map {
    height: 560px;
}
@media (max-width: 767.98px) {
    #map {
        height: 326px;
    }
}

select {
    -webkit-appearance: none;
}

.sitemap-row li {
    margin: 10px 0;
}
.sitemap-row > li a {
    font-weight: bold;
}
.sitemap-row > li > ul li a {
    font-weight: normal;
}
.sitemap-row > li > ul {
    padding-left: 30px;
}

.slider.banner__slider .slider__nav {
    width: max-content;
    margin: 25px auto 0;
}

.gform_confirmation_wrapper_17, .gform_confirmation_wrapper_20, .gform_confirmation_wrapper_21 {
    background: white;
    padding: 50px;
}

.page__header {
    padding: 5px 0 35px;
}
@media (max-width: 767.98px) {
    .page__header {
        padding: 5px 0 15px;
    }
}
.page__filter {
    background-color: white;
    padding: 32px 40px;
    border-radius: 3px;
    margin-bottom: 50px;
    position: relative;
}
@media (max-width: 767.98px) {
    .page__filter {
        margin-bottom: 30px;
        padding: 25px 20px 30px;
    }
}
.page__filter form ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) {
    flex: 0 0 298px;
    margin-right: 40px;
    padding: 0;
}
.page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) label {
    width: 100%;
}
@media (max-width: 1200.98px) {
    .page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) {
        flex: 0 0 250px;
    }
}
@media (max-width: 992.98px) {
    .page__filter form ul li:not(.sf-field-submit, .sf-field-reset, .field-reset) {
        flex: 0 0 100%;
        margin-right: 0;
        padding-bottom: 30px;
    }
}
.page__filter form ul .sf-field-post-meta-service_review {
    margin-right: 0;
}
.page__filter form ul li.sf-field-post-meta-department_reviews, .page__filter form ul li.sf-field-post-meta-doctor_reviews, .page__filter form ul li.sf-field-post-meta-detachment_doctor, .page__filter form ul li.sf-field-post-meta-gender, .page__filter form ul li.sf-field-search {
    flex: 0 0 333px;
    margin-right: 40px;
    padding: 0;
}
.page__filter form ul li.sf-field-post-meta-department_reviews label, .page__filter form ul li.sf-field-post-meta-doctor_reviews label, .page__filter form ul li.sf-field-post-meta-detachment_doctor label, .page__filter form ul li.sf-field-post-meta-gender label, .page__filter form ul li.sf-field-search label {
    width: 100%;
}
@media (max-width: 1200.98px) {
    .page__filter form ul li.sf-field-post-meta-department_reviews, .page__filter form ul li.sf-field-post-meta-doctor_reviews, .page__filter form ul li.sf-field-post-meta-detachment_doctor, .page__filter form ul li.sf-field-post-meta-gender, .page__filter form ul li.sf-field-search {
        padding-bottom: 30px;
    }
}
@media (max-width: 992.98px) {
    .page__filter form ul li.sf-field-post-meta-department_reviews, .page__filter form ul li.sf-field-post-meta-doctor_reviews, .page__filter form ul li.sf-field-post-meta-detachment_doctor, .page__filter form ul li.sf-field-post-meta-gender, .page__filter form ul li.sf-field-search {
        flex: 0 0 100%;
        margin-right: 0;
        padding-bottom: 30px;
    }
}
.page__filter form ul li.sf-field-search {
    margin-right: 0;
}
.page__filter form ul li.sf-field-post-meta-service_review {
    flex: 0 0 333px;
}
@media (max-width: 992.98px) {
    .page__filter form ul li.sf-field-post-meta-service_review {
        flex: 0 0 100%;
    }
}
.page .auto-width form ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page .auto-width form ul li.sf-field-post-meta-type_support {
    width: 33.33%;
    flex: 0 0 33.33%;
    margin-right: 0;
    padding-right: 40px;
    padding-bottom: 30px;
}
@media (max-width: 992.98px) {
    .page .auto-width form ul li.sf-field-post-meta-type_support {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }
}
.page .auto-width form ul li.sf-field-post-meta-type_support:nth-child(3) {
    padding-right: 0;
}
.page .auto-width form ul li.sf-field-post-meta-service_review {
    margin-right: 0;
}

.page__filter .sf-field-download {
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    .page__filter .sf-field-download {
        padding-bottom: 0 !important;
    }
}

.promo-archive .box {
    padding: 15px 20px 20px 40px;
    background-color: white;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
@media (max-width: 992.98px) {
    .promo-archive .box {
        padding: 0;
    }
}
.promo-archive .box__info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex: 0 0 100%;
    padding-bottom: 5px;
    color: #231F20;
    position: relative;
}
.promo-archive .box__info:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #BEBEBE;
}
@media (max-width: 991.98px) {
    .promo-archive .box__info:after {
        width: calc(100% - 40px);
    }
}
@media (max-width: 992.98px) {
    .promo-archive .box__info {
        flex-direction: column;
        padding: 20px 20px 5px;
    }
}
@media (max-width: 992.98px) {
    .promo-archive .box__date {
        padding-bottom: 5px;
    }
}
.promo-archive .box__category {
    text-transform: uppercase;
    letter-spacing: 0.28px;
}
.promo-archive .box .wrapper {
    position: relative;
    padding-top: 20px;
    width: 100%;
}
.promo-archive .box__image {
    max-width: 50%;
    flex: 0 0 50%;
    height: 160px;
    width: 240px;
    position: relative;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    border-radius: 3px;
    overflow: hidden;
}
@media (max-width: 992.98px) {
    .promo-archive .box__image {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        border-radius: 0;
    }
}
.promo-archive .box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-archive .box__content {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 20px;
    padding-top: 20px;
    background-color: white;
    transition: width 0.3s ease, flex 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
@media (max-width: 992.98px) {
    .promo-archive .box__content {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
        height: auto;
        padding: 20px;
    }
}
.promo-archive .box__title {
    font-weight: 500;
    line-height: 130%;
    color: #231F20;
}
@media (max-width: 992.98px) {
    .promo-archive .box__title {
        padding-bottom: 20px;
    }
}
.promo-archive .box__description {
    display: none;
    opacity: 0;
    color: #231F20;
    transition: opacity 0.3s;
}
@media (max-width: 992.98px) {
    .promo-archive .box__description {
        display: block;
        opacity: 1;
        padding-bottom: 20px;
    }
}
.promo-archive .box__rating {
    padding: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 992.98px) {
    .promo-archive .box__rating {
        padding-bottom: 20px;
    }
}
.promo-archive .box__rating .rating__stars {
    justify-content: flex-start;
    padding-bottom: 10px;
}
.promo-archive .box__rating .star {
    width: 24px;
    height: 24px;
}
.promo-archive .box__rating .star-empty {
    opacity: 0.4;
}
.promo-archive .box__rating .rating__num {
    font-size: 16px;
    color: #231F20;
}
.promo-archive .box .btn {
    text-align: left;
    font-size: 18px;
}
.promo-archive .box .wrapper-hover {
    display: flex;
    justify-content: space-between;
}
.promo-archive .box .wrapper-hover .rating {
    display: none;
    background: transparent;
}
.promo-archive .box .wrapper-hover .rating__stars {
    padding-bottom: 0;
}
@media (min-width: 47.99875em) {
    .promo-archive .box:hover {
        background-color: #F6F8FC;
    }
    .promo-archive .box:hover .box__bottom {
        padding-bottom: 10px;
    }
}
@media (min-width: 47.99875em) and (max-width: 992.98px) {
    .promo-archive .box:hover .box__bottom {
        padding-bottom: 0;
    }
}
@media (min-width: 47.99875em) {
    .promo-archive .box:hover__image {
        transform: scaleX(0);
    }
    .promo-archive .box:hover .box__content {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        transition: width 0.3s ease, flex 0.3s ease;
        background-color: #F6F8FC;
    }
}
@media (min-width: 47.99875em) and (max-width: 992.98px) {
    .promo-archive .box:hover .box__content {
        padding-left: 20px;
    }
}
@media (min-width: 47.99875em) {
    .promo-archive .box:hover .box__rating {
        display: none;
    }
}
@media (min-width: 47.99875em) and (max-width: 992.98px) {
    .promo-archive .box:hover .box__rating {
        display: block;
        background: transparent;
    }
}
@media (min-width: 47.99875em) {
    .promo-archive .box:hover .box__description {
        display: block;
        opacity: 1;
        transition: opacity 0.3s;
    }
    .promo-archive .box:hover .wrapper-hover .btn {
        font-weight: 300;
        line-height: 120%;
        text-decoration-line: underline;
        color: #231F20;
    }
    .promo-archive .box:hover .wrapper-hover .rating {
        display: block;
    }
}
@media (min-width: 47.99875em) and (max-width: 991.98px) {
    .promo-archive .box:hover .wrapper-hover .rating {
        display: none;
    }
}
.promo-archive .btn-style-2 {
    font-size: 16px;
}

#gform_fields_6, #gform_fields_12 {
    margin-left: -25px;
}
#gform_fields_6 .gform_footer, #gform_fields_12 .gform_footer {
    padding-top: 0;
}
@media (max-width: 767.98px) {
    #gform_fields_6, #gform_fields_12 {
        margin-left: 0;
    }
}

.overflow.wrapper-form:before {
    background-image: url(../images/media/form-promo-archive.png);
}
.overflow form input[type=text], .overflow form input[type=tel] {
    padding: 5px 0 14px;
}
@media (max-width: 992.98px) {
    .overflow .horizontal-form__text {
        width: 60%;
    }
}
@media (max-width: 767.98px) {
    .overflow .horizontal-form__text {
        width: 100%;
    }
}
.overflow .horizontal-form__form .form-row .form-group-btn {
    padding-top: 45px;
}

.page.archive form .form-group-50 {
    padding-bottom: 20px;
}

.programs-archive .sf-field-submit, .programs-archive .sf-field-reset {
    padding-top: 30px;
}
@media (max-width: 767.98px) {
    .programs-archive .sf-field-submit, .programs-archive .sf-field-reset {
        padding-top: 10px;
    }
}

.accordion__title {
    padding-bottom: 48px;
    margin: 0;
}
@media (max-width: 767.98px) {
    .accordion__title {
        padding: 10px 20px;
        line-height: 130%;
    }
}
.accordion__item {
    background-color: white;
    border-radius: 3px;
    margin-bottom: 28px;
}
@media (max-width: 767.98px) {
    .accordion__item {
        border-radius: 0;
        margin-bottom: 0;
    }
}
.accordion__header {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
    padding: 30px 30px 25px;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .accordion__header {
        font-size: 16px;
        padding: 20px 30px 20px 10px;
        text-transform: uppercase;
    }
    .accordion__header:after {
        content: "";
        display: block;
        height: 1px;
        width: calc(100% - 20px);
        position: absolute;
        background-color: #F4F0E7;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }
}
.accordion__arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(../images/icons/icons.svg#arrow-menu) no-repeat;
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
    .accordion__arrow {
        right: 15px;
    }
}
.accordion__arrow.active {
    transform: translateY(-50%) rotate(180deg);
}
.accordion__content {
    display: none;
    transition: height 0.3s ease;
    overflow: hidden;
}
.accordion__content--active {
    display: block;
}
.accordion__info, .accordion .list__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.accordion__info span, .accordion .list__row span {
    display: flex;
}
.accordion__info span:first-child, .accordion .list__row span:first-child {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}
.accordion .list__row span.code{
    justify-content: flex-start!important;
    color: #231F20CC;
    font-weight: 200;
    font-size: 16px;
    padding-top: 10px;

}
.accordion__info span:nth-child(2):not(.code), .accordion .list__row span:nth-child(2):not(.code) {
    flex: 0 0 20%;
    justify-content: center;
}
.accordion__info span:last-child, .accordion .list__row span:last-child {
    flex-grow: 1;
    justify-content: flex-end;
}
.accordion__info {
    background-color: #E5EAEF;
    padding: 15px 30px 10px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}
@media (max-width: 767.98px) {
    .accordion__info {
        display: none;
    }
}
.accordion .list__row {
    padding-bottom: 30px;
}
@media (max-width: 767.98px) {
    .accordion .list__row {
        border-bottom: 1px solid #F4F0E7;
        padding-top: 30px;
    }
}
.accordion .list__row span:first-child {
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .accordion .list__row span:first-child {
        flex: 0 0 100%;
    }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
    .accordion .list__row span:first-child {
        order: 1;
        padding-bottom: 20px;
    }
}
.accordion .list__row span:nth-child(2):not(.code) {
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .accordion .list__row span:nth-child(2):not(.code) {
        order: 2;
        justify-content: flex-start;
    }
}
@media (max-width: 767.98px) {
    .accordion .list__row span:last-child {
        order: 3;
        justify-content: flex-end;
    }
}
.accordion__list {
    padding: 20px 30px 18px;
}
.accordion__list .btn {
    padding: 6px 27px 6px;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .accordion__list {
        padding: 0 10px;
    }
}

@media (max-width: 756.98px) {
    .price__section .wrapper {
        background-color: white;
        padding: 10px 0 30px;
    }
    .price__section .wrapper .more {
        padding: 20px 0 0;
    }
}

@media (max-width: 767.98px) {
    .btn.archive-price {
        padding-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .page-price .accordion__title {
        padding: 20px 10px;
        background-color: white;
        margin: 0 -10px;
    }
}
@media (max-width: 767.98px) {
    .page-price .accordion {
        margin: 0 -10px;
    }
}
@media (max-width: 767.98px) {
    .page-price .accordion__item--active .accordion__header {
        font-weight: 500;
    }
    .page-price .accordion__header:after {
        display: none;
    }
    .page-price .accordion__item {
        margin-bottom: 20px;
    }
    .page-price .accordion .list__row {
        border: none;
        padding: 15px 0;
    }
    .page-price .accordion .list__row:last-child {
        padding: 15px 0 30px;
    }
    .page-price .accordion .list__row span:last-child {
        order: 1;
        justify-content: flex-start;
    }
    .page-price .accordion .list__row span:nth-child(2):not(.code) {
        justify-content: flex-end;
        font-size: 20px;
    }
}

.full-screen-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}
.full-screen-header .page__breadcrumbs ul li {
    border-color: #BEBEBE;
    color: #BEBEBE;
}
.full-screen-header .page__breadcrumbs ul li:last-child {
    opacity: 1;
}
.full-screen-header .page__breadcrumbs ul li a {
    color: #BEBEBE;
}
@media (max-width: 767.98px) {
    .full-screen-header .page__breadcrumbs {
        padding-bottom: 30px;
    }
}
.full-screen-header .anchor-menu {
    background-color: white;
    border-radius: 3px;
}
.full-screen-header .anchor-menu ul {
    display: flex;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .full-screen-header .anchor-menu ul {
        justify-content: flex-start;
    }
}
.full-screen-header .anchor-menu ul li a {
    padding: 15px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Gilroy", sans-serif;
    color: #00305F;
    font-size: 14px;
}
@media (max-width: 767.98px) {
    .full-screen-header .anchor-menu ul li a {
        font-size: 12px;
        padding: 13px 10px;
    }
}
.full-screen-header .page__header {
    color: white;
    text-align: center;
    padding-top: 157px;
    padding-bottom: 175px;
    display: block;
}
@media (max-width: 1200.98px) {
    .full-screen-header .page__header {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media (max-width: 767.98px) {
    .full-screen-header .page__header {
        padding-top: 30px;
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 160px;
    }
}
.full-screen-header .page__header .subtitle {
    width: 47%;
    margin: 0 auto;
    font-size: 20px;
    padding-bottom: 20px;
}
@media (max-width: 767.98px) {
    .full-screen-header .page__header .subtitle {
        width: 100%;
        font-size: 16px;
    }
}
.full-screen-header .page__header h1 {
    color: white;
    font-size: 88px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 991.98px) {
    .full-screen-header .page__header h1 {
        font-size: 32px;
    }
}
@media (max-width: 767.98px) {
    .full-screen-header .page__header h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .full-screen-header {
        margin-bottom: 10px;
    }
}

.text-section .about {
    font-size: 24px;
    line-height: 150%;
    padding-bottom: 25px;
}
@media (max-width: 991.98px) {
    .text-section .about {
        font-size: 16px;
        padding-bottom: 0;
    }
}
.text-section .image__box {
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}
@media (max-width: 991.98px) {
    .text-section .image__box {
        flex-direction: column-reverse;
    }
}
.text-section .image__box-text {
    padding: 0 20px 0;
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 991.98px) {
    .text-section .image__box-text {
        padding: 20px 20px 0;
        flex: 0 0 100%;
        width: 100%;
    }
    .text-section .image__box-text p:last-child {
        margin-bottom: 0;
    }
}
.text-section .image__box-text ul, .text-section .image__box-text ol {
    padding-bottom: 15px;
}
.text-section .image__box-text ul li, .text-section .image__box-text ol li {
    position: relative;
    padding-bottom: 16px;
    line-height: 150%;
    display: block;
}
.text-section .image__box-text ul li:last-child, .text-section .image__box-text ol li:last-child {
    padding-bottom: 0;
}
.text-section .image__box-text ul li:before, .text-section .image__box-text ol li:before {
    content: "";
    position: relative;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url(../images/icons/icons.svg#icon-list) no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.text-section .image__box-img {
    padding: 0 20px;
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 991.98px) {
    .text-section .image__box-img {
        flex: 0 0 100%;
        width: 100%;
    }
}
.text-section .image__box-reverse {
    flex-direction: row-reverse;
}
.pure__text-block ul, .pure__text-block ol {
    padding-bottom: 15px;
}
.pure__text-block ul li, .pure__text-block ol li {
    position: relative;
    padding-bottom: 16px;
    line-height: 150%;
    display: block;
}
.pure__text-block ul li:last-child, .pure__text-block ol li:last-child {
    padding-bottom: 0;
}
.pure__text-block ul li:before, .pure__text-block ol li:before {
    content: "";
    position: relative;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url(../images/icons/icons.svg#icon-list) no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.pure__text-block .video-container iframe {
    width: 100% !important;
    height: 700px !important;
}
@media (max-width: 992.98px) {
    .pure__text-block .video-container iframe {
        height: 450px !important;
    }
}
@media (max-width: 765.98px) {
    .pure__text-block .video-container iframe {
        height: 350px !important;
    }
}
@media (max-width: 575.98px) {
    .pure__text-block .video-container iframe {
        height: 250px !important;
    }
}

.disclaimer__section .overflow {
    margin: 0 -60px;
}
@media (max-width: 767.98px) {
    .disclaimer__section .overflow .disclaimer {
        padding: 20px 20px;
    }
}
@media (max-width: 767.98px) {
    .disclaimer__section .overflow {
        margin: 0 -10px;
    }
}

.disclaimer {
    background-color: white;
    border-radius: 3px;
    padding: 40px 60px 27px;
    font-size: 20px;
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .disclaimer {
        font-size: 16px;
        padding: 20px 10px;
    }
}

.useful-for .container--overflow {
    background: url("../images/media/checkup-dark_bg.jpg") center/cover no-repeat;
    padding: 60px 60px 90px;
}
@media (max-width: 767.98px) {
    .useful-for .container--overflow {
        padding: 10px 15px 30px;
    }
}
.useful-for__title {
    font-family: "Gilroy", sans-serif;
    text-transform: uppercase;
    color: white;
    font-size: 32px;
    padding-bottom: 55px;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .useful-for__title {
        font-size: 24px;
        padding-bottom: 10px;
    }
}
.useful-for__list li {
    border-bottom: 1px solid #E0E4EB;
    padding: 20px 0 20px 40px;
    color: white;
    font-size: 20px;
    position: relative;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .useful-for__list li {
        font-size: 16px;
        padding: 10px 0 10px 30px;
    }
}
.useful-for__list li:before {
    content: "";
    width: 15px;
    height: 20px;
    background: url("../images/icons/icons.svg#tick") no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 23px;
}
@media (max-width: 767.98px) {
    .useful-for__list li:before {
        top: 10px;
    }
}
.useful-for__list li:first-child {
    border-top: 1px solid #E0E4EB;
}
@media (max-width: 767.98px) {
    .useful-for .checkup-form {
        margin-top: 30px;
        border-radius: 0;
    }
}

.checkup-form {
    background-color: white;
    border-radius: 64px 3px;
    padding: 30px 35px;
}
@media (max-width: 767.98px) {
    .checkup-form {
        padding: 40px 20px;
    }
}
.checkup-form .form__header {
    padding-bottom: 20px;
    font-family: "Gilroy", sans-serif;
}
.checkup-form .form__description {
    padding-bottom: 27px;
}
.checkup-form .form-row {
    display: flex;
    flex-wrap: wrap;
}
.checkup-form .form-group {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 35px;
    padding-bottom: 20px;
}
@media (max-width: 991.98px) {
    .checkup-form .form-group {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }
}
.checkup-form .form-group.agree {
    width: 100%;
    flex: 0 0 100%;
    padding-bottom: 50px;
    font-size: 14px;
}
@media (max-width: 767.98px) {
    .checkup-form .form-group.agree {
        padding-bottom: 25px;
    }
}
.checkup-form .form-group.agree a {
    color: #231F20;
    text-decoration: underline;
}
.checkup-form .button {
    padding: 8px 15px;
    width: calc(50% - 25px);
}
@media (max-width: 991.98px) {
    .checkup-form .button {
        width: 100%;
    }
}

.premium-checkup-slider:not(.swiper-initialized) .premium-checkup{
    flex-direction: column;
}

.premium-checkup-slider .slider__nav{
    display: none;
}

.premium-checkup {
    line-height: 150%;
}
.premium-checkup__item {
    border-bottom: 1px solid rgba(35, 31, 32, 0.6);
    padding: 20px 0 40px;
    display: flex;
    flex-wrap: wrap;
}
.premium-checkup__item:first-child {
    border-top: 1px solid rgba(35, 31, 32, 0.6);
}
.premium-checkup__item:last-child {
    border: none;
    padding: 20px 0 0;
}
.premium-checkup__item:last-child p {
    margin-bottom: 0;
}
.premium-checkup__title {
    flex: 0 0 30%;
    font-weight: 500;
    padding-right: 15px;
}
@media (max-width: 767.98px) {
    .premium-checkup__item:first-child{
        border: none;
    }
    .premium-checkup__item{
        padding-bottom: 0;
        border: none;
    }
    .premium-checkup__title{
        padding-bottom: 30px;
    }
    .premium-checkup__content{

        border-top: 1px solid #BA9F67;
        border-bottom: 1px solid #BA9F67;
    }
    .premium-checkup-slider .slider__nav{
        display: flex;
        padding-top: 30px;
    }
    .premium-checkup__title {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
        text-transform: uppercase;
    }
}
.premium-checkup__content {
    width: 70%;
    flex: 0 0 70%;
}
@media (max-width: 767.98px) {
    .premium-checkup__content {
        width: 100%;
        flex: 0 0 100%;
        padding: 20px;
    }
}

.premium-program .container--overflow {
    padding: 60px 60px 0;
    background: url("../images/media/checkup-dark_bg_premium.jpg") center/cover no-repeat;
}
@media (max-width: 767.98px) {
    .premium-program .container--overflow {
        padding: 40px 10px 40px;
    }
}
.premium-program .main__section-header {
    justify-content: center;
    padding-bottom: 40px;
}
.premium-program .main__section-header__title {
    color: white;
    text-align: center;
}
.premium-program__content img {
    width: 112px;
    height: 112px;
    margin-bottom: 15px;
}
@media (max-width: 767.98px) {
    .premium-program .swiper-wrapper {
        flex-wrap: nowrap;
        margin: 0;
    }
}
.premium-program .slider__nav {
    display: none;
}
@media (max-width: 767.98px) {
    .premium-program .slider__nav {
        display: flex;
    }
    .premium-program .slider__btn:before, .premium-program .slider__btn:after {
        background-color: white;
    }
    .premium-program .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        background-color: rgba(255, 255, 255, 0.6);
    }
    .premium-program .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: white;
    }
}
.premium-program__item {
    background: url(../images/competence_bg.svg) no-repeat bottom;
    background-size: contain;
    width: 100%;
    padding: 20px 25px 73px;
    height: 272px;
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 767.98px) {
    .premium-program__item {
        padding: 20px 100px 73px;
    }
}
@media (max-width: 400.98px) {
    .premium-program__item {
        padding: 20px 45px 73px;
    }
}
.premium-program__title {
    font-weight: 400;
    text-transform: uppercase;
    color: #00305F;
}
@media (max-width: 767.98px) {
    .premium-program .swiper-slide {
        padding: 0;
    }
}

.program-composition .main__section-header {
    padding-bottom: 40px;
}
@media (max-width: 767.98px) {
    .program-composition .main__section-header {
        padding-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .program-composition .accordion {
        background-color: white;
        padding: 10px 20px 30px;
        margin: 0 -20px;
    }
}
.program-composition .accordion__list {
    position: relative;
    padding: 30px 30px 10px;
}
@media (max-width: 767.98px) {
    .program-composition .accordion__list {
        padding: 0 10px;
    }
    .program-composition .accordion__list:after {
        content: '';
        width: 24px;
        height: calc(100% - 35px);
        position: absolute;
        right: 0;
        top: 0;
        background: #BA9F67B2;
        right: 10px;
    }
    .program-composition .accordion__list:nth-child(2):after{
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    }
    .program-composition .accordion__list:last-child:after{
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }
    .program-composition .accordion__list .list__row{
        position: relative;
        z-index: 1;
    }
}
.program-composition .accordion__info, .program-composition .accordion .list__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.program-composition .accordion__info span, .program-composition .accordion .list__row span {
    display: flex;
}
.program-composition .accordion__info span:first-child, .program-composition .accordion .list__row span:first-child {
    flex: 0 0 40%;
    text-transform: none;
}
@media (max-width: 1200.98px) {
    .program-composition .accordion__info span:first-child, .program-composition .accordion .list__row span:first-child {
        flex: 0 0 35%;
    }
}
@media (max-width: 767.98px) {
    .program-composition .accordion__info span:first-child, .program-composition .accordion .list__row span:first-child {
        flex-grow: 1;
        order: 0;
    }
}
.program-composition .accordion__info span:nth-child(2), .program-composition .accordion .list__row span:nth-child(2):not(.code) {
    flex: 0 0 10%;
    text-transform: none;
    text-align: center;
    justify-content: center;
}
@media (max-width: 767.98px) {
    .program-composition .accordion__info span:nth-child(2), .program-composition .accordion .list__row span:nth-child(2):not(.code) {
        font-size: 20px;
        font-weight: 600;
    }
}
.program-composition .accordion__info span:nth-child(3), .program-composition .accordion .list__row span:nth-child(3) {
    flex: 0 0 20%;
    justify-content: center;
}
@media (max-width: 1200.98px) {
    .program-composition .accordion__info span:nth-child(3), .program-composition .accordion .list__row span:nth-child(3) {
        flex: 0 0 25%;
    }
}
@media (max-width: 767.98px) {
    .program-composition .accordion__info span:nth-child(2), .program-composition .accordion__info span:nth-child(3), .program-composition .accordion .list__row span:nth-child(2):not(.code), .program-composition .accordion .list__row span:nth-child(3) {
        width: 25px !important;
        flex: 0 0 25px !important;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .program-composition .accordion__info span:nth-child(2):before, .program-composition .accordion__info span:nth-child(3):before, .program-composition .accordion .list__row span:nth-child(2):not(.code):before, .program-composition .accordion .list__row span:nth-child(3):before {
        /*display: block;*/
        /*content: attr(data-name);*/
        /*color: rgba(35, 31, 32, 0.6);*/
        /*font-size: 12px;*/
        /*font-weight: 500;*/
        /*line-height: 150%;*/
        /*width: 90%;*/
        /*padding-bottom: 10px;*/
        /*text-align: left;*/
    }
}
@media (max-width: 767.98px) {
    .program-composition .accordion__info span:last-child, .program-composition .accordion .list__row span:last-child {
        justify-content: flex-start;
    }
}
.program-composition .accordion__info span:first-child {
    letter-spacing: 0.36px;
}
@media (max-width: 767.98px) {
    .program-composition .accordion__info {
        display: none !important;
    }
}
@media (max-width: 767.98px) {
    .program-composition .accordion .list__row {
        border-bottom: 1px solid rgba(186, 159, 103, 0.4);
        margin-bottom: 20px;
        padding-top: 10px;
        align-items: flex-start;
    }
}
.program-composition .accordion .list__row span:nth-child(2):not(.code) {
    flex: 0 0 10%;
    text-align: center;
    justify-content: center;
}
@media (max-width: 767.98px) {
    .program-composition .accordion .list__row span:nth-child(2):not(.code) {
    }
}
.program-composition .accordion__header {
    display: flex;
}
@media (max-width: 767.98px) {
    .program-composition .accordion__header {
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(186, 159, 103, 0.4);
        margin-bottom: 20px;
    }
}
.program-composition .accordion__header .radio {
    display: none;
    text-transform: none;
}
.program-composition .accordion__name {
    width: 43%;
}
@media (max-width: 991.98px) {
    .program-composition .accordion__name {
        width: auto;
        font-size: 16px;
    }
}
.program-composition .accordion__item--active .radio {
    display: flex;
    padding-left: 5px;
}
.program-composition .accordion__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 767.98px) {
    .program-composition .accordion__footer {
        display: none;
    }
}
.program-composition .accordion__footer .cost-title, .program-composition .accordion__footer .cost, .program-composition .accordion__footer .discont {
    color: #231F20;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
}
.program-composition .accordion__footer .cost-info {
    display: flex;
    flex-direction: column;
}
.program-composition .accordion__footer .cost, .program-composition .accordion__footer .discont {
    text-transform: none;
}
.program-composition .accordion__footer .discont {
    font-weight: 300;
}

.radio {
    display: flex;
}
.radio label {
    padding-right: 50px;
    font-size: 14px;
    padding-left: 5px;
}
@media (max-width: 767.98px) {
    .radio label {
        padding-top: 10px;
        padding-right: 15px;
        font-size: 12px;
        padding-left: 0;
    }
}

.offer {
    display: flex;
    margin: 0 -15px 30px;
    flex-wrap: wrap;
}
.offer.offer-woman {
    margin-bottom: 0;
}
.offer__wrapper {
    flex: 0 0 290px;
    width: 290px;
    padding: 0 15px;
}
@media (max-width: 767.98px) {
    .offer__wrapper {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    .offer__wrapper:last-child {
        margin-bottom: 0;
    }
}
.offer__wrapper-disabled {
    opacity: 0.4;
}
.offer__item {
    border-radius: 3px;
    background: #FFF;
    padding: 30px 20px 15px 15px;
}
.offer__label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    align-items: flex-start;
}
.offer__label span {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    background: #00305F;
    border-radius: 3px;
    padding: 3px 15px;
    margin-left: -15px;
    color: white;
}
.offer__label:after {
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url(../images/icons/icons.svg#icon-departments) no-repeat;
}
.offer__price {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 130%;
    color: #00305F;
}

.checkup-request .request .checkup-request-row {
    background: white;
    display: flex;
    border-radius: 3px;
    flex-wrap: wrap;
}
@media (max-width: 767.98px) {
    .checkup-request .request .checkup-request-row {
        flex-direction: column-reverse;
    }
}
.checkup-request .request .checkup-request-row .item {
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 767.98px) {
    .checkup-request .request .checkup-request-row .item {
        flex: 0 0 100%;
        width: 100%;
    }
}
.checkup-request .request .checkup-request-row .checkup-form {
    padding: 35px 40px;
}
@media (max-width: 767.98px) {
    .checkup-request .request .checkup-request-row .checkup-form {
        padding: 35px 20px;
    }
}
.checkup-request .request__wrapper {
    padding: 50px 46px 50px 45px;
}
@media (max-width: 767.98px) {
    .checkup-request .request__wrapper {
        padding: 0px 20px 20px 20px;
    }
}
.checkup-request .request__box:first-child {
    padding-bottom: 10px;
}
@media (max-width: 767.98px) {
    .checkup-request .request__box p {
        color: rgba(35, 31, 32, 0.6);
        font-weight: 500;
        margin-bottom: 10px;
    }
}
.checkup-request .request__label, .checkup-request .request p.request__label {
    font-size: 24px;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .checkup-request .request__label, .checkup-request .request p.request__label {
        color: #231F20;
        font-weight: 300;
        margin-bottom: 10px;
    }
}
.checkup-request .form-group.agree {
    color: #231F20;
    font-size: 14px;
    font-weight: 300;
    line-height: 130%;
}
.checkup-request .form-group.agree a {
    text-decoration: underline;
    color: #231F20;
}

.faq {
    /* Анимация для плавного открывания/закрывания */
    /* Стили и анимация для элементов dd */
}
.faq h2 {
    margin-bottom: 40px;
    letter-spacing: 0.64px;
    line-height: 120%;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 756.98px) {
    .faq h2 {
        border-bottom: 1px solid #E0E4EB;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}
.faq .container--overflow {
    background-color: white;
    padding: 60px;
}
@media (max-width: 767.98px) {
    .faq .container--overflow {
        padding: 40px 10px;
        margin: 0 -10px;
    }
}
.faq dl {
    border-bottom: 1px solid #E0E4EB;
    padding: 0 0 20px;
}
@media (max-width: 767.98px) {
    .faq dl:last-child {
        border: none;
        padding: 0;
    }
}
.faq dl:not(:last-child) {
    margin-bottom: 40px;
}
@media (max-width: 767.98px) {
    .faq dl:not(:last-child) {
        margin-bottom: 20px;
    }
}
.faq__block dt:before, .faq__block dt:after {
    content: "";
    width: 14px;
    height: 2px;
    background: #00305F;
    position: absolute;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    top: 50%;
    right: 5px;
}
.faq__block dt:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq__block dt.active:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.faq__title {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    cursor: pointer;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 767.98px) {
    .faq__title {
        text-transform: uppercase;
        font-size: 16px;
        padding-right: 30px;
    }
}
.faq__title.active {
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E4EB;
}
@media (max-width: 767.98px) {
    .faq__title.active {
        border-bottom: none;
        padding-bottom: 3px;
    }
}
@keyframes slideDown {
    0% {
        max-height: 0;
        opacity: 0;
    }
    100% {
        max-height: 1000px; /* Задайте достаточно большое значение, чтобы элемент полностью раскрылся */
        opacity: 1;
    }
}
@keyframes slideUp {
    0% {
        max-height: 1000px; /* Задайте достаточно большое значение, чтобы элемент полностью раскрылся */
        opacity: 1;
    }
    100% {
        max-height: 0;
        opacity: 0;
    }
}
.faq .faq__block dd {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.faq .faq__block dd .wrap {
    padding-top: 20px;
}
.faq .faq__block dd.active {
    max-height: 1000px; /* Задайте достаточно большое значение, чтобы элемент полностью раскрылся */
    opacity: 1;
}
.faq ul li {
    position: relative;
    padding-bottom: 16px;
    display: block;
    line-height: 150%;
    padding-left: 20px;
}
.faq ul li:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url("../images/icons/icons.svg#icon-list") no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.faq ol {
    list-style: none;
    counter-reset: item;
}
.faq ol li {
    position: relative;
    padding-left: 35px;
    padding-bottom: 10px;
    line-height: 150%;
}
@media (max-width: 767.98px) {
    .faq ol li:last-child {
        padding-bottom: 0;
    }
}
.faq ol li:before {
    color: white;
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 150%;
    background-color: #c0a35f;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.programs__slider .box .rating__stars, .related__slider .box .rating__stars {
    padding-right: 55px;
}
.programs__slider .box__bottom, .related__slider .box__bottom {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991.98px) {
    .programs__slider .box__bottom, .related__slider .box__bottom {
        flex-wrap: wrap;
    }
}
.programs__slider .box__bottom .rating, .related__slider .box__bottom .rating {
    width: 50%;
    flex: 0 0 50%;
}
@media (max-width: 1200.98px) {
    .programs__slider .box__bottom .rating, .related__slider .box__bottom .rating {
        width: 60%;
        flex: 0 0 60%;
    }
}
@media (max-width: 991.98px) {
    .programs__slider .box__bottom .rating, .related__slider .box__bottom .rating {
        width: 100%;
        flex: 0 0 100%;
        padding-bottom: 10px;
    }
}
.programs__slider .box .btn, .related__slider .box .btn {
    text-align: right;
    font-weight: 400;
    line-height: 120%;
    opacity: 1;
}

.gallery-carousel .main__section-header {
    justify-content: flex-end;
}

.gallery-carousel__slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    margin: 0 -10px;
}
.gallery-carousel__slider:not(.swiper-initialized) .box {
    flex: 0 0 25%;
    padding: 0 10px;
}

.gallery-carousel__slider {
    height: 350px;
}
.gallery-carousel__slider .box__image img {
    object-fit: cover;
    height: 100%;
}

.contacts__section {
    padding-bottom: 30px;
    margin-bottom: 50px;
}
@media (max-width: 767.98px) {
    .contacts__section {
        margin-bottom: 0;
    }
}
.contacts__section img {
    height: 575px;
    width: 100%;
    object-fit: cover;
    -webkit-mask-image: url(../images/image-mask.svg);
    -webkit-mask-position: left bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url(../images/image-mask.svg);
    mask-position: left bottom;
    mask-repeat: no-repeat;
    mask-size: 100%;
}
@media (max-width: 1200.98px) {
    .contacts__section img {
        height: 445px;
    }
}
@media (max-width: 991.98px) {
    .contacts__section img {
        height: 355px;
    }
}
@media (max-width: 767.98px) {
    .contacts__section img {
        height: 320px;
    }
}
.contacts__box {
    padding-left: 25px;
}
@media (max-width: 1200.98px) {
    .contacts__box {
        padding-left: 0;
    }
}
.contacts__row {
    margin-bottom: 15px;
}
.contacts__row p {
    font-size: 20px;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .contacts__row p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .contacts__row p a {
        text-decoration: underline;
    }
}
@media (max-width: 767.98px) {
    .contacts__row p:last-child {
        font-size: 16px;
    }
}
.contacts__row a {
    color: #231F20;
}
.contacts__location {
    position: relative;
    border-radius: 3px;
    background: #FFF;
    padding: 66px 60px 30px 42px;
    margin-bottom: 30px;
    margin-top: 20px;
}
@media (max-width: 767.98px) {
    .contacts__location {
        padding: 65px 20px 0 40px;
    }
}
.contacts__location span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px 42px;
    border-radius: 3px 3px 3px 0px;
    background: #00305F;
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .contacts__location span {
        padding: 13px 25px;
        border-radius: 3px;
    }
}

@media (max-width: 767.98px) {
    .full-location {
        background-color: white;
        border-radius: 3px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .show-map {
        display: block;
    }
}

.programs-archive .box {
    margin-bottom: 40px;
    display: block;
}
.programs-archive .box__image {
    border-radius: 3px;
    overflow: hidden;
}
.programs-archive .box__image img {
    object-fit: cover;
}
.programs-archive .box__content {
    background: white;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 20px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
}
.programs-archive .box__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #231F20;
}

.single-post__header h1 {
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0;
}
@media (max-width: 767.98px) {
    .single-post__header h1 {
        font-size: 24px;
    }
}
.single-post__top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    padding-top: 43px;
    margin-bottom: 17px;
    border-bottom: 1px solid #BEBEBE;
}
@media (max-width: 767.98px) {
    .single-post__top-bar {
        flex-wrap: wrap;
        padding-top: 0;
        padding-bottom: 30px;
        margin-bottom: 26px;
    }
}
.single-post__category {
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
}
@media (max-width: 767.98px) {
    .single-post__category {
        flex: 0 0 100%;
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
}
.single-post__category .term {
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.single-post__category .rating {
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    padding-left: 40px;
}
@media (max-width: 767.98px) {
    .single-post__category .rating {
        padding: 20px 0;
    }
}
.single-post__category .rating .star {
    width: 24px;
    height: 24px;
}
.single-post__category .rating .star.star-empty {
    opacity: 0.4;
}
.single-post__category .rating .rating__num {
    padding-left: 15px;
    line-height: 1;
}
.single-post__socials a {
    padding-left: 15px;
    display: inline-block;
}
@media (max-width: 767.98px) {
    .single-post__socials a {
        padding-left: 0;
        padding-right: 15px;
    }
}
.single-post__socials img {
    width: 32px;
    height: 32px;
}
.single-post .bottom-content {
    padding-top: 30px;
    padding-bottom: 10px;
}
@media (max-width: 767.98px) {
    .single-post .bottom-content p:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .single-post .bottom-content {
        padding-top: 25px;
        padding-bottom: 0px;
    }
}
.single-post__anchor {
    background-color: #00305F;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}
@media (max-width: 767.98px) {
    .single-post__anchor {
        padding: 0;
        margin-bottom: 5px;
        margin-top: 20px;
    }
    .single-post__anchor:after {
        content: "";
        width: 20px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: rgb(0, 48, 95);
        background: linear-gradient(90deg, rgba(0, 48, 95, 0) 0%, rgb(0, 48, 95) 78%);
    }
}
.single-post__anchor ul {
    display: flex;
    justify-content: flex-start;
}
.single-post__anchor ul li a {
    padding: 11px 20px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: white;
}
@media (max-width: 767.98px) {
    .single-post__anchor ul li a {
        font-size: 14px;
        letter-spacing: 0.16px;
        padding: 10px;
    }
}
@media (max-width: 767.98px) {
    .single-post__anchor {
        margin-bottom: 30px;
    }
}
.single-post__text-list h2, .single-post__text-quote h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
    .single-post__text-list h2, .single-post__text-quote h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.single-post__text-list ul {
    padding-bottom: 16px;
}
@media (max-width: 767.98px) {
    .single-post__text-quote {
        padding-bottom: 10px;
    }
    .single-post__text-quote h2 {
        font-size: 24px;
        padding: 0 10px;
    }
    .single-post__text-quote .content {
        padding: 0 10px;
    }
}
.single-post__first-section .image {
    position: relative;
}
.single-post__text-list ul li, .single-post__first-section ul li {
    position: relative;
    padding-bottom: 16px;
    line-height: 150%;
    display: block;
}
.single-post__text-list ul li:before, .single-post__first-section ul li:before {
    content: "";
    position: relative;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url("../images/icons/icons.svg#icon-list") no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.single-post__res {
    border-top: 1px solid #BEBEBE;
    padding-top: 20px;
}
.single-post__res a {
    padding-top: 10px;
    display: block;
    color: #231F20;
}
.single-post__footer-image {
    object-fit: cover;
    object-position: top;
    height: 412px;
    border-radius: 64px 0px;
    background: #D8D8D8;
}
@media (max-width: 991.98px) {
    .single-post__footer-image {
        height: 250px;
    }
}
@media (max-width: 767.98px) {
    .single-post__footer-image {
        height: 280px;
        padding: 0 15px;
    }
}
.single-post__footer-info {
    padding-left: 18px;
}
@media (max-width: 767.98px) {
    .single-post__footer-info {
        text-align: center;
        padding: 40px 20px 0;
    }
}
.single-post__footer-info p {
    margin-bottom: 15px;
    font-weight: 400;
}
.single-post__footer-info .single-post__footer-experience {
    margin-bottom: 10px;
}
.single-post__footer-name {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.64px;
    padding-bottom: 9px;
}
@media (max-width: 767.98px) {
    .single-post__footer-name {
        font-size: 24px;
    }
    .single-post__footer-name br {
        display: none;
    }
}
.single-post__footer-position {
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
@media (max-width: 767.98px) {
    .single-post__footer-position {
        padding-bottom: 25px;
        margin-bottom: 30px !important;
    }
}
.single-post__footer-position:after {
    content: "";
    width: 50%;
    height: 1px;
    background-color: #BEBEBE;
    display: block;
    position: absolute;
    bottom: 0;
}
@media (max-width: 767.98px) {
    .single-post__footer-position:after {
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
    }
}
.single-post__footer-experience {
    font-size: 14px;
    margin-bottom: 10px;
}
.single-post__footer-price {
    font-weight: 300;
}
@media (max-width: 767.98px) {
    .single-post__footer-price {
        border-bottom: 1px solid #BEBEBE;
        padding-bottom: 25px;
        margin-bottom: 18px;
    }
}
.single-post__footer-price span {
    font-weight: 500;
    color: #c0a35f;
}
.single-post__article-info {
    padding-top: 13px;
}
@media (max-width: 767.98px) {
    .single-post__article-info {
        display: flex;
        flex-wrap: wrap;
    }
}
.single-post__article-date {
    width: 100%;
    text-align: right;
    border-bottom: 1px solid #BEBEBE;
    padding-bottom: 5px;
    margin-bottom: 18px;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .single-post__article-date {
        order: 2;
        adding-top: 18px;
        margin-bottom: 10px;
        border: none;
        text-align: center;
    }
}
.single-post__footer {
    padding-top: 50px;
}
@media (max-width: 767.98px) {
    .single-post__footer {
        padding-top: 30px;
    }
}
.single-post__footer-ratingsocial {
    display: flex;
    padding-bottom: 40px;
}
@media (max-width: 767.98px) {
    .single-post__footer-ratingsocial {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
}
.single-post__footer-rating {
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 767.98px) {
    .single-post__footer-rating {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
        order: 1;
    }
}
.single-post__footer-rating p {
    font-size: 14px;
    margin-bottom: 7px;
}
@media (max-width: 767.98px) {
    .single-post__footer-rating p {
        margin-bottom: 15px;
    }
}
@media (max-width: 767.98px) {
    .single-post__footer-rating .single-post__article-date {
        font-size: 16px;
        padding-top: 20px;
    }
}
.single-post__footer-rating .rating {
    background: none;
    padding: 0;
    display: flex;
}
@media (max-width: 767.98px) {
    .single-post__footer-rating .rating {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    .single-post__footer-rating .rating .kksr-legend {
        display: none;
    }
}
.single-post__footer-rating .rating .star {
    width: 24px;
    height: 24px;
}
.single-post__footer-rating .rating .star.star-empty {
    opacity: 0.4;
}
.single-post__footer-rating .rating .rating__num {
    padding-left: 15px;
}
@media (max-width: 767.98px) {
    .single-post__footer-rating .rating .rating__num {
        display: none;
    }
}
.single-post__footer-social {
    width: 50%;
    flex: 0 0 50%;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .single-post__footer-social {
        width: 100%;
        order: 2;
        flex: 0 0 100%;
        text-align: center;
    }
}
.single-post__footer-social p {
    margin-bottom: 10px;
}
.single-post__footer-social a {
    padding-right: 20px;
    display: inline-block;
}
.single-post__footer-social a:last-child {
    padding-right: 0;
}
.single-post__footer-social img {
    width: 32px;
    height: 32px;
}
.single-post__footer-comments {
    width: 100%;
    text-align: right;
}
.single-post__footer-comments a {
    color: #c0a35f;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767.98px) {
    .single-post__footer-comments a {
        justify-content: center;
        color: #231F20;
    }
}
.single-post__footer-comments a:before {
    content: "";
    width: 32px;
    height: 32px;
    background: url("../images/icons/icons.svg#chat");
    display: inline-block;
    margin-right: 20px;
}

.single-news .single-post__category .rating,
.single-article .single-post__category .rating {
    padding-left: 0;
}

@media (max-width: 767.98px) {
    .archive-articles .page__header {
        flex-direction: column;
    }
}

.single-article .doctors__slider .box__title {
    color: #c0a35f;
}
.single-article .doctors__slider .box__additional {
    color: rgba(35, 31, 32, 0.6);
}
.single-article .accordion__header {
    text-transform: uppercase;
}
.single-article .accordion .list__row:last-child {
    padding-bottom: 10px;
}
.single-article .category-section {
    padding-top: 55px;
    padding-bottom: 64px;
}
@media (max-width: 767.98px) {
    .single-article .category-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.single-article .category-section .main__section-header {
    padding-bottom: 48px;
}
.single-article .related__slider .box__bottom {
    flex-wrap: wrap;
}

.related__slider .btn{
    margin-right: 0!important;
}
@media (max-width: 767.98px) {
    .single-article .disclaimer {
        margin: 0 -10px;
    }
}

.btn.accordion-btn {
    padding-left: 30px;
}

.post-footer__section {
    padding-bottom: 42px;
}
@media (max-width: 767.98px) {
    .post-footer__section {
        padding-bottom: 10px;
    }
}

.main__section.single-post {
    padding-top: 15px;
}

.category-section__preview {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 767.98px) {
    .category-section__preview {
        height: 280px;
    }
    .category-section__preview img {
        height: 100%;
        object-fit: cover;
    }
}
.category-section__preview:before {
    content: "";
    background: linear-gradient(0deg, rgba(192, 163, 95, 0.4) 0%, rgba(192, 163, 95, 0.4) 100%), url(<path-to-image>), lightgray 50%/cover no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}
.category-section__title {
    position: absolute;
    top: 40px;
    left: 60px;
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    color: white;
}

blockquote {
    font-size: 24px;
    padding: 35px 40px 17px;
    border-left: 1px solid #c0a35f;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
    blockquote {
        padding: 0px 10px;
    }
}
blockquote footer {
    font-weight: 500;
    line-height: 130%;
    font-size: 20px;
    padding-top: 25px;
}
blockquote footer span {
    font-size: 14px;
    display: block;
    font-weight: 300;
}

.resources__section h2 {
    margin-bottom: 25px;
    line-height: 120%;
    letter-spacing: 0.64px;
}
@media (max-width: 767.98px) {
    .resources__section h2 {
        margin-bottom: 20px;
    }
}
.resources__section ol {
    list-style: none;
    counter-reset: item;
}
.resources__section ol li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 10px;
    line-height: 150%;
}
@media (max-width: 767.98px) {
    .resources__section ol li:last-child {
        padding-bottom: 0;
    }
}
.resources__section ol li:before {
    color: white;
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 16px;
    font-size: 14px;
    line-height: 150%;
    background-color: #c0a35f;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kk-star-ratings .kksr-stars .kksr-star .kksr-icon {
    background-repeat: no-repeat;
    background-position: center;
}

.kk-star-ratings .kksr-stars .kksr-star {
    cursor: pointer;
    padding-right: 0 !important;
}

.kk-star-ratings .kksr-legend {
    font-size: 16px !important;
    font-weight: 300;
    line-height: 1;
}

.page .kk-star-ratings .kksr-stars .kksr-star .kksr-icon,
.page .kk-star-ratings:not(.kksr-disabled) .kksr-stars .kksr-star:hover ~ .kksr-star .kksr-icon {
    background-image: url("../images/icons/kkstars/inactive.svg");
}
.page .kk-star-ratings .kksr-stars .kksr-stars-active .kksr-star .kksr-icon {
    background-image: url("../images/icons/kkstars/active.svg");
}
.page .kk-star-ratings.kksr-disabled .kksr-stars .kksr-stars-active .kksr-star .kksr-icon,
.page .kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-star .kksr-icon {
    background-image: url("../images/icons/kkstars/selected.svg");
}

.single-post__text-list .alignright {
    float: right;
    width: 50%;
}
@media (max-width: 767.98px) {
    .single-post__text-list .alignright {
        width: 100%;
    }
}

.doctors__archive {
    background-color: white;
}
.doctors__archive .box {
    margin-bottom: 40px;
}
.doctors__archive .box__title {
    color: #c0a35f;
    display: block;
}
.doctors__archive .box__additional {
    opacity: 0.6;
    color: #231F20;
}
.doctors__archive .box__price span {
    color: #231F20;
    font-weight: 500;
}
.doctors__archive .box__content .slide__link {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(100% - 40px);
    transform: translateX(-50%);
}
@media (max-width: 767.98px) {
    .doctors__archive .box__content .slide__link {
        width: calc(100% - 20px);
    }
}
.doctors__archive .btn.btn-style-2 {
    padding-top: 40px;
}

.doctors__archive .box__content {
    padding: 10px 0 10px;
}
@media (max-width: 767.98px) {
    .doctors__archive .box__content {
        padding: 20px 0;
    }
}

.doctors__archive .box__position {
    min-height: 42px;
}

.doctors__slider .box__additional, .doctors__archive .box__additional:not(:first-child) {
    padding-top: 10px;
}

.single-doctors__first-section h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 117%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    .single-doctors__first-section h1 {
        font-size: 24px;
    }
}
.single-doctors .single-post__anchor {
    margin-bottom: 0;
}
.single-doctors .single-doctors__bottom {
    padding-bottom: 20px;
}
.single-doctors__info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
@media (max-width: 767.98px) {
    .single-doctors__info {
        margin: 0;
    }
}
.single-doctors__position, .single-doctors__qualification, .single-doctors__education, .single-doctors__experience, .single-doctors__patient-age, .single-doctors__consultation-fee, .single-doctors__awards, .single-doctors__consultation-time, .single-doctors__first-section .social-media-links {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 20px;
    padding: 0 20px;
}

.social-media-links{
    display: flex;
    margin-bottom: 5px;
}

.doctors__archive .social-media-links, .doctors__slider .social-media-links{
    margin-bottom: 10px;
        margin-top: -37px;
    margin-left: 10px;
}
.social-media-links a{
    display: block;
        width: 27px;
    height: 27px;
}

.social-media-link{
    margin-right: 10px;
}
@media (max-width: 767.98px) {
    .single-doctors__position, .single-doctors__qualification, .single-doctors__education, .single-doctors__experience, .single-doctors__patient-age, .single-doctors__consultation-fee, .single-doctors__awards, .single-doctors__consultation-time, .single-doctors__first-section .social-media-links {
        flex: 0 0 100%;
        width: 100%;
    }
}
.single-doctors__position span, .single-doctors__qualification span, .single-doctors__education span, .single-doctors__experience span, .single-doctors__patient-age span, .single-doctors__consultation-fee span, .single-doctors__awards span, .single-doctors__consultation-time span {
    font-weight: 500;
    display: block;
    padding-top: 10px;
}
.single-doctors__position span, .single-doctors__qualification span {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
}
.single-doctors__awards {
    padding-bottom: 10px;
    height: 40px;
}
.single-doctors__awards span {
    background: url("../images/icon-awards.svg") no-repeat;
    width: 23px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
}
.single-doctors__consultation-time {
    font-weight: 500;
}
.single-doctors__info:after {
    content: "";
    width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(0, 48, 95, 0.6);
    display: block;
    margin: 0 auto 20px;
}
@media (max-width: 767.98px) {
    .single-doctors__info:after {
        width: 100%;
    }
}
.row.single-doctors__bottom{
    margin: 0 -13px;
}
.single-doctors__bottom .col-md-4 {
    padding: 0 13px;
}

.single-doctors__bottom .btn {
  display: block;
  width: 100%;
  padding: 7px 14px 7px;
  font-size: 14px;
}
.single-doctors__bottom .btn-bordered {
    background-color: transparent;
    color: #231F20;
}
@media (max-width: 767.98px) {
    .single-doctors__bottom .btn-bordered {
        margin-bottom: 20px;
    }
}
.single-doctors__image {
    position: relative;
}
@media (max-width: 767.98px) {
    .single-doctors__image {
        padding: 0 10px 30px;
    }
}
.single-doctors__image:before {
    content: "";
    border-radius: 64px 0px;
    background: #D8D8D8;
    width: 100%;
    height: 534px;
    display: inline-block;
    position: absolute;
    top: -90px;
}
@media (max-width: 1200.98px) {
    .single-doctors__image:before {
        width: calc(100% - 20px);
        height: 436px;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 767.98px) {
    .single-doctors__image:before {
        height: 250px;
    }
}
.single-doctors__image img {
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
    margin-top: -60px;
    max-height: 523px;
    object-fit: contain;
    object-position: bottom;
}
@media (max-width: 1200.98px) {
    .single-doctors__image img {
        margin-top: 0;
    }
}
@media (max-width: 767.98px) {
    .single-doctors__image img {
        height: 300px;
        object-fit: contain;
    }
}
.single-doctors .single-post__anchor {
    padding: 0;
}
.single-doctors .text__section {
    padding: 20px 0;
}

.list-two-column ul {
    -webkit-column-count: 2;
    column-count: 2;
}
@media (max-width: 991.98px) {
    .list-two-column ul {
        -webkit-column-count: 1;
        column-count: 1;
    }
}
.list-two-column .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.list-two-column-flex ul {
    display: flex;
    flex-wrap: wrap;
}
.list-two-column-flex ul li {
    flex: 0 0 50%;
    width: 50%;
}
.list-two-column-flex ul li:nth-child(even) {
    padding-left: 150px;
}

.single-post__text-list .bordered li {
    display: flex;
    padding-left: 25px;
}
.single-post__text-list .bordered li .year {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    flex: 0 0 25%;
}
.single-post__text-list .bordered li .content {
    flex-grow: 1;
}
.single-post__text-list .bordered li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 3px;
    width: 1px;
    height: calc(100% - 6px);
    background: rgba(186, 159, 103, 0.6); /* Цвет линии */
}
.single-post__text-list .bordered li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    background: none;
    background-color: #c0a35f; /* Цвет ромбика */
    transform: rotate(45deg);
}

#disease .btn {
    padding-top: 10px;
}

.disease__list {
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}
.disease__list .disease__link {
    padding: 0 20px 18px;
    width: 25%;
    flex: 0 0 25%;
    color: #231F20;
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .disease__list .disease__link {
        width: 50%;
        flex: 0 0 50%;
    }
}
@media (max-width: 767.98px) {
    .disease__list .disease__link {
        width: 100%;
        flex: 0 0 100%;
    }
}

.faq.single-doctors .faq__block {
    padding-bottom: 30px;
}

.qa__archive .box, .journal__archive .box {
    border-radius: 3px;
    background-color: white;
    margin-bottom: 40px;
    padding: 20px;
    display: block;
}
.qa__archive .box__info, .journal__archive .box__info {
    border-bottom: 1px solid #BEBEBE;
    padding-bottom: 3px;
}
.qa__archive .box__date, .journal__archive .box__date {
    color: #231F20;
    font-size: 14px;
}
.qa__archive .box__image, .journal__archive .box__image {
    height: 204px;
    overflow: hidden;
    border-radius: 3px;
    display: block;
}
.qa__archive .box__image img, .journal__archive .box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qa__archive .box__content, .journal__archive .box__content {
    padding-top: 15px;
}
.qa__archive .box__title, .journal__archive .box__title {
    font-size: 24px;
    padding-bottom: 10px;
    color: #231F20;
}
.qa__archive .box__description, .journal__archive .box__description {
    color: #000;
    line-height: 120%;
    letter-spacing: 0.32px;
    padding-bottom: 10px;
}
.qa__archive .box__link, .journal__archive .box__link {
    color: #C0A35F;
    font-size: 18px;
    font-weight: 400;
    text-decoration-line: underline;
}

.journal__archive .box-wrapper {
    margin-bottom: 40px;
}
.journal__archive .box {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.journal__archive .box__content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}
.journal__archive .box__info {
    border-bottom: none;
    padding-bottom: 20px;
}
.journal__archive .box__title {
    font-size: 16px;
    font-weight: 500;
}
.journal__archive .box__link {
    font-size: 18px;
}

.single-qa .qa-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}
.single-qa .qa__section {
    padding-top: 10px;
}
.single-qa .single-post__qa .date {
    font-size: 14px;
}
.single-qa .single-post__qa .question, .single-qa .single-post__qa .answer {
    padding-bottom: 40px;
}

.link-accent {
    color: #C0A35F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
}

.single-journal .single-post-journal__header {
    padding-bottom: 50px;
}
.single-journal .text-block {
    color: #231F20;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.36px;
    padding-bottom: 40px;
}
.single-journal .journal-row {
    background: white;
    padding: 50px;
}
@media (max-width: 767.98px) {
    .single-journal .journal-row {
        padding: 20px;
    }
}
.single-journal .journal-row .journal-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.single-journal .journal-row .journal-item {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 20px 20px;
}
@media (max-width: 767.98px) {
    .single-journal .journal-row .journal-item {
        flex: 0 0 100%;
        width: 100%;
    }
}
.single-journal .journal-row .journal-item .image-wrapper {
    background-color: #f1eae0;
}

.page-single .single-post__text-list h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48px;
}
.page-single .single-post__text-list h2:not(:first-child) {
    margin-top: 20px;
}
.page-single .single-post__text-list a {
    text-decoration: underline;
    padding-bottom: 5px;
    color: #231F20;
}
.page-single .advantages__static {
    padding-top: 0;
}
.page-single .text_block_column ul {
    display: flex;
    flex-wrap: wrap;
}
.page-single .text_block_column ul li {
    flex: 0 0 25%;
    width: 25%;
}
@media (max-width: 1200.98px) {
    .page-single .text_block_column ul li {
        flex: 0 0 33.33%;
        width: 33.33%;
    }
}
@media (max-width: 992.98px) {
    .page-single .text_block_column ul li {
        flex: 0 0 50%;
        width: 50%;
    }
}
@media (max-width: 767.98px) {
    .page-single .text_block_column ul li {
        flex: 0 0 100%;
        width: 100%;
    }
}
.page-single .text_block_column .btn {
    display: none;
}
@media (max-width: 767.98px) {
    .page-single .text_block_column .btn {
        display: block;
    }
}

.advantages__static .box {
    width: 100%;
}

.single-post__text-list.no-indent {
    display: block !important;
}

.top-anchor {
    background-color: white;
    padding: 7px;
}
.top-anchor ul {
    display: flex;
    justify-content: center;
}
.top-anchor ul li a {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    padding: 0 25px;
}
@media (max-width: 767.98px) {
    .top-anchor ul li a {
        padding: 0 10px;
    }
}

.single-department__first-section{
    padding-top: 20px;
}

.single-department__first-section h1, .single-service__first-section h1 {
    margin-bottom: 35px;
}
.single-department__first-section .single-department__box, .single-service__first-section .single-department__box {
    padding-left: 20px;
}
@media (max-width: 767.98px) {
    .single-department__first-section .single-department__box, .single-service__first-section .single-department__box {
        padding-left: 0;
    }
}
.single-department__first-section .single-department__text, .single-service__first-section .single-department__text {
    padding-bottom: 5px;
}
.single-department__first-section .single-department__text p, .single-department__first-section .single-department__text li, .single-service__first-section .single-department__text p, .single-service__first-section .single-department__text li {
    font-size: 20px;
    margin-bottom: 25px;
}
@media (max-width: 767.98px) {
    .single-department__first-section .single-department__text p, .single-department__first-section .single-department__text li, .single-service__first-section .single-department__text p, .single-service__first-section .single-department__text li {
        font-size: 16px;
    }
}
.single-department__first-section .single-department__text li, .single-service__first-section .single-department__text li {
    line-height: 150%;
    margin-bottom: 15px;
    list-style: none !important;
    position: relative;
    padding-left: 20px;
}
.single-department__first-section .single-department__text li:before, .single-service__first-section .single-department__text li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url(../images/icons/icons.svg#icon-list) no-repeat;
    display: inline-block;
    margin-right: 7px;
}
@media (max-width: 767.98px) {
    .single-department__first-section .single-department__text li:before, .single-service__first-section .single-department__text li:before {
        top: 6px;
    }
}
.single-department__first-section .single-department__text a, .single-service__first-section .single-department__text a {
    color: #c0a35f;
    font-size: 20px;
    font-weight: 400;
    display: block;
    text-decoration-line: underline;
}
@media (max-width: 767.98px) {
    .single-department__first-section .single-department__text a, .single-service__first-section .single-department__text a {
        font-size: 16px;
    }
}
.single-department__first-section .btn, .single-service__first-section .btn {
    font-size: 16px;
    margin-top: 32px;
    display: block;
    width: max-content;
}
@media (max-width: 767.98px) {
    .single-department__first-section .btn, .single-service__first-section .btn {
        display: block;
    }
}
.single-department__price, .single-service__price {
    color: #c0a35f;
    font-size: 34.782px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.696px;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .single-department__price, .single-service__price {
        font-size: 24px;
        padding-top: 13px;
        text-align: center;
        padding-bottom: 20px;
    }
}
.single-department .single-post__anchor, .single-service .single-post__anchor {
    margin-bottom: 0px;
}
@media (max-width: 767.98px) {
    .single-department .single-post__anchor, .single-service .single-post__anchor {
        margin-top: 0;
        padding: 0;
    }
    .single-department .single-post__anchor ul, .single-service .single-post__anchor ul {
        justify-content: center;
    }
}
.single-department .single-post__text-list h2, .single-service .single-post__text-list h2 {
    font-size: 32px;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .single-department .single-post__text-list h2, .single-service .single-post__text-list h2 {
        font-size: 24px;
    }
}
.single-department .single-post__text-list:last-child, .single-service .single-post__text-list:last-child {
    padding-bottom: 0;
}
.single-department .single-post__text-list h3, .single-service .single-post__text-list h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}
@media (max-width: 767.98px) {
    .single-department .single-post__text-list h3, .single-service .single-post__text-list h3 {
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }
}
.single-department .list-two-column ul, .single-service .list-two-column ul {
    column-gap: 375px;
    margin-bottom: 20px;
}
.single-department .list-two-column ul a, .single-service .list-two-column ul a {
    color: #231F20;
}
@media (max-width: 767.98px) {
    .single-department .list-two-column ul, .single-service .list-two-column ul {
        column-gap: 0;
        column-count: 1;
        margin-bottom: 20px;
    }
}
.single-department .list-two-column ul:last-child, .single-service .list-two-column ul:last-child {
    margin-bottom: 0;
}
.single-department .list-two-column .btn, .single-service .list-two-column .btn {
    padding-bottom: 20px;
}
.single-department .other__section, .single-service .other__section {
    padding-bottom: 5px;
}
.single-department .other__section .single-post__text-list ul li a, .single-service .other__section .single-post__text-list ul li a {
    text-decoration: underline;
}
.single-department .equipment, .single-service .equipment {
    padding-top: 40px;
    padding-bottom: 40px;
}
.single-department .promo, .single-service .promo {
    padding-bottom: 40px;
}
.single-department .advantages, .single-service .advantages {
    padding-top: 40px;
}
.single-department .doctors__slider .box__additional, .single-service .doctors__slider .box__additional {
    color: rgba(35, 31, 32, 0.6);
}
.single-department .doctors__slider .box__price span, .single-service .doctors__slider .box__price span {
    color: #00305F;
    font-weight: 500;
}
.single-department .anchor__section, .single-service .anchor__section {
    padding-top: 45px;
    padding-bottom: 23px;
}
@media (max-width: 767.98px) {
    .single-department .anchor__section, .single-service .anchor__section {
        padding-top: 20px;
        padding-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .single-department .no-indent, .single-service .no-indent {
        padding-bottom: 0;
    }
}

.single-department__text {
    max-height: 360px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.single-department__text.expanded {
    max-height: none;
}
.single-department__price {
    padding-top: 30px;
}
.single-department .anchor__section + .main__section {
    padding-top: 20px;
}

.single-service .anchor__section {
    padding-bottom: 23px;
}

#showMore {
    display: none;
    color: #c0a35f;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
@media (max-width: 767.98px) {
    #showMore {
        margin-bottom: 30px;
        font-size: 16px;
    }
}

.single-post__text-list h3 {
    text-transform: none;
    margin-bottom: 40px;
}

.doctor-opinion p {
    font-size: 24px;
}
@media (max-width: 767.98px) {
    .doctor-opinion p {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .doctor-opinion .main__section-box {
        background-color: white;
        border-radius: 3px;
        padding: 20px 10px;
    }
}
.doctor-opinion__item {
    display: flex;
    align-items: center;
    padding-top: 17px;
}
.doctor-opinion__item img {
    border-radius: 150px;
    width: 48px;
    height: 48px;
    margin-right: 20px;
}
.doctor-opinion__item p {
    margin-bottom: 0;
    font-size: 16px;
}
.doctor-opinion__item p b {
    padding-left: 5px;
}

.btn-department-price {
    display: none;
}

@media (max-width: 767.98px) {
    .department-price .btn-department-price {
        display: block;
        padding-top: 30px;
    }
}

.single-post__preview {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.single-post__preview:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    opacity: 0.4;
    background: linear-gradient(0deg, rgba(192, 163, 95, 0.4) 0%, rgba(192, 163, 95, 0.4) 100%), url(<path-to-image>), lightgray 0px -9.494px/107.313% 131.493% no-repeat;
}

.our_blog {
    color: #c0a35f;
    leading-trim: both;
    text-edge: cap;
    font-size: 24px;
    font-weight: 300;
    line-height: 150%;
    padding-left: 50px;
    text-decoration-line: underline;
}
@media (max-width: 767.98px) {
    .our_blog {
        padding-left: 0;
    }
}

.single-service__first-section h1 {
    margin-bottom: 75px;
}
@media (max-width: 767.98px) {
    .single-service__first-section h1 {
        margin-bottom: 18px;
    }
}
.single-service__price {
    font-size: 20px;
    line-height: 120%;
}
@media (max-width: 767.98px) {
    .single-service__price {
        text-align: left;
    }
}
.single-service__image {
    width: 413px;
    max-height: 278px;
    border-radius: 3px;
    overflow: hidden;
    margin-left: auto;
}
@media (max-width: 1200.98px) {
    .single-service__image {
        width: 100%;
        height: auto;
    }
}
.single-service__first-section .disclaimer {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    padding: 15px;
    text-align: center;
    margin-top: 35px;
}
@media (max-width: 767.98px) {
    .single-service__first-section .disclaimer {
        margin: 25px -20px 0;
        text-align: left;
        padding: 15px 25px;
    }
}
.single-service__first-section .disclaimer p {
    margin-bottom: 0;
}
.single-service__first-section .disclaimer a {
    color: #231F20;
    text-decoration: underline;
}
.single-service .advantages__content {
    font-size: 18px;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .single-service .advantages__content {
        font-size: 16px;
    }
}
.single-service .advantages-text {
    padding-top: 10px;
}
@media (max-width: 767.98px) {
    .single-service .advantages-text {
        padding-top: 0;
    }
}
@media (max-width: 767.98px) {
    .single-service .department-group {
        margin-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .single-service .kksr-legend {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-ratingsocial {
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-rating p {
        margin-bottom: 10px;
    }
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-rating .rating {
        margin-bottom: 15px;
    }
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-social a {
        padding-left: 0;
        padding-right: 20px;
    }
}
.single-service .single-post__footer-social a:last-child {
    padding-right: 0;
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-ratingsocial {
        padding-bottom: 25px;
    }
}
@media (max-width: 767.98px) {
    .single-service .single-post__footer-comments a {
        color: #231F20;
    }
}

.advantages__static {
    padding-top: 100px;
}
@media (max-width: 991.98px) {
    .advantages__static {
        padding-top: 50px;
    }
}
.advantages__static .main__section-footer {
    display: none;
}
@media (max-width: 1200.98px) {
    .advantages__static .main__section-footer {
        display: block;
    }
}
.advantages__static .wrapper {
    display: flex;
    margin: 0 -20px;
    justify-content: center;
}
@media (max-width: 1200.98px) {
    .advantages__static .wrapper {
        padding-bottom: 20px;
    }
}
@media (max-width: 992.98px) {
    .advantages__static .wrapper {
        margin: 0;
    }
}
.advantages__static .box {
    height: 100%;
    background-size: contain;
}
@media (max-width: 767.98px) {
    .advantages__static .box {
        min-height: 300px;
    }
}
@media (max-width: 1200.98px) {
    .advantages__static .box__title {
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .advantages__static .box__title {
        width: 70%;
    }
}
@media (max-width: 500.98px) {
    .advantages__static .box__title {
        width: 100%;
    }
}
.advantages__static .box-wrapper {
    width: 25%;
    flex: 0 0 25%;
    padding: 0 20px;
}
@media (max-width: 992.98px) {
    .advantages__static .box-wrapper {
        flex: 0 0 50%;
    }
}
@media (max-width: 767.98px) {
    .advantages__static .box-wrapper {
        flex: 0 0 100%;
    }
}

.table-contents-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.table-contents ul {
    flex: 0 0 50%;
}
@media (max-width: 767.98px) {
    .table-contents ul {
        flex: 0 0 100%;
    }
}
.table-contents ul li {
    padding: 10px 10px 6px 0;
    font-size: 18px;
    line-height: 150%;
    text-decoration-line: underline;
}
.table-contents ul li a {
    color: #231F20;
}
.table-contents ul:last-child {
    padding-left: 55px;
}
@media (max-width: 767.98px) {
    .table-contents ul:last-child {
        padding-left: 0;
    }
}
.table-contents .btn {
    margin: 0 auto;
    padding-left: 0;
    padding-top: 20px;
}

@media (max-width: 767.98px) {
    .single-service .department-group__secrion {
        margin-bottom: 0;
    }
}
.single-service .department-group__secrion .main__section-header {
    padding-bottom: 40px;
}
.single-service .department-group__secrion__text {
    padding: 20px 65px 20px 80px;
}
@media (max-width: 767.98px) {
    .single-service .department-group__secrion__text {
        padding: 20px 10px;
    }
}
.single-service .department-group__secrion:nth-child(even) .department-group__text {
    padding: 20px 65px 20px 80px;
}
@media (max-width: 767.98px) {
    .single-service .department-group__secrion:nth-child(even) .department-group__text {
        padding: 20px 10px;
    }
}
.single-service .department-group__secrion ul {
    list-style-type: none;
}
.single-service .department-group__secrion ul li {
    position: relative;
    padding-left: 20px;
}
.single-service .department-group__secrion ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 11px;
    height: 2px;
    background-color: #c0a35f; /* Цвет тире */
}
.single-service .single-post__text-list .wrapper-image {
    display: flex;
}
@media (max-width: 767.98px) {
    .single-service .single-post__text-list .wrapper-image {
        flex-wrap: wrap;
    }
}
.single-service .single-post__text-list .wrapper-image ul {
    flex-grow: 1;
    padding-right: 80px;
}
@media (max-width: 991.98px) {
    .single-service .single-post__text-list .wrapper-image ul {
        padding-right: 0;
    }
}
.single-service .single-post__text-list .wrapper-image .images-list {
    width: 330px;
    flex: 0 0 330px;
    overflow: hidden;
    border-radius: 3px;
}
@media (max-width: 991.98px) {
    .single-service .single-post__text-list .wrapper-image .images-list {
        width: 100%;
        flex: 0 0 100%;
    }
}

.equipment-service__slider .box {
    display: flex;
}
@media (max-width: 991.98px) {
    .equipment-service__slider .box {
        flex-wrap: wrap;
    }
}
.equipment-service__slider .box__content {
    flex: 0 0 43%;
    background-color: white;
    border-radius: 4.583px 61.105px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    position: relative;
    z-index: 1;
    padding: 30px 20px 40px;
    font-family: "Gilroy", sans-serif;
}
@media (max-width: 991.98px) {
    .equipment-service__slider .box__content {
        flex: 0 0 100%;
        border-radius: 3px;
        padding: 30px 20px 90px;
    }
}
@media (max-width: 767.98px) {
    .equipment-service__slider .box__content {
        padding: 30px 10px 90px;
    }
}
.equipment-service__slider .box__title {
    text-transform: uppercase;
    padding-bottom: 20px;
}
.equipment-service__slider .box__description {
    padding-bottom: 80px;
}
@media (max-width: 991.98px) {
    .equipment-service__slider .box__description {
        padding-bottom: 20px;
    }
}
.equipment-service__slider .box__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    border-radius: 3px 61.11px;
    overflow: hidden;
    z-index: 0;
}
@media (max-width: 991.98px) {
    .equipment-service__slider .box__image {
        position: relative;
        width: 100%;
        margin-top: -50px;
        z-index: 1;
    }
}
.equipment-service__slider .box__image img {
    height: 100%;
    object-fit: cover;
}
.equipment-service__slider .box__links {
    color: #BA9F67;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: underline;
}

@media (max-width: 767.98px) {
    .policy:after {
        content: "";
        height: 340px;
        width: calc(100% - 20px);
        display: block;
        margin: 0 auto;
        background: url(../images/oms.svg) no-repeat top;
        background-size: contain;
        padding: 0 20px;
    }
}
.policy .wrapper {
    padding: 40px 0 5px 20px;
    background: white;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-radius: 3px;
    margin-top: 40px;
}
@media (max-width: 991.98px) {
    .policy .wrapper {
        flex-wrap: wrap;
        padding: 40px 20px 5px 20px;
    }
}
@media (max-width: 767.98px) {
    .policy .wrapper {
        padding: 40px 20px 5px 20px;
    }
}
.policy .wrapper .main__section-header {
    flex: 0 0 20%;
    align-items: flex-start;
}
@media (max-width: 991.98px) {
    .policy .wrapper .main__section-header {
        flex: 0 0 100%;
    }
}
.policy .wrapper .main__section-header h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}
.policy .wrapper .main__section-content {
    flex-grow: 1;
    padding: 0 55px;
}
@media (max-width: 991.98px) {
    .policy .wrapper .main__section-content {
        padding: 0;
        flex: 0 0 50%;
    }
}
@media (max-width: 767.98px) {
    .policy .wrapper .main__section-content {
        flex: 0 0 100%;
    }
}
.policy .wrapper .main__section-content p {
    font-size: 14px;
    line-height: 1.3;
}
.policy .wrapper .main__section-content p:last-child {
    margin-bottom: 20px;
}
.policy .wrapper .main__section-content a:not(.btn) {
    color: #231F20;
    font-weight: 500;
}
.policy .wrapper .main__section-image {
    flex: 0 0 259px;
}
@media (max-width: 767.98px) {
    .policy .wrapper .main__section-image {
        display: none;
    }
}
.policy .wrapper .main__section-image img {
    margin-top: -70px;
}
@media (max-width: 991.98px) {
    .policy .wrapper .main__section-image img {
        margin-top: 0;
    }
}
.policy .wrapper .main__section-bottom {
    display: flex;
    margin: 0 -20px;
    padding-bottom: 30px;
}
@media (max-width: 767.98px) {
    .policy .wrapper .main__section-bottom {
        flex-wrap: wrap;
    }
}
.policy .wrapper .main__section-bottom .btn {
    padding: 5px 10px 5px;
}
@media (max-width: 767.98px) {
    .policy .wrapper .main__section-bottom .btn {
        margin-bottom: 20px;
    }
}
.policy .wrapper .main__section-bottom a {
    width: 100%;
}

.section_about_main_title h1 {
    color: #231F20;
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-top: 31px;
    margin-bottom: 0px;
}

.section_top {
    padding-top: 20px;
}

.section_top_breadcrumbs ul {
    display: flex;
    justify-content: flex-start;
    list-style: none;
}

.section_top_breadcrumbs ul li a {
    color: #BA9F67;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    text-decoration: none;
    margin-right: 10px;
}

.section_top_breadcrumbs ul li {
    color: rgba(192, 163, 95, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

.section_top_breadcrumbs ul li::after {
    content: "";
    width: 1px;
    height: 18px;
    background: rgba(0, 48, 95, 0.4);
    padding: 1px;
    margin-right: 10px;
}

.section_top_breadcrumbs ul li:last-child::after {
    display: none;
}

.section_about_main_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
    background: #FFF;
}

.section_about_main_wrap_img img {
    border-radius: 3px;
    width: 396px;
    height: 450px;
    object-fit: cover;
}

.section_about_main_wrap_text {
    width: calc(100% - 396px);
    padding-left: 70px;
    padding-right: 135px;
    padding-top: 45px;
    padding-bottom: 46px;
}

.section_about_main_wrap_img {
    display: flex;
}

.section_about_main_wrap_text p {
    color: #231F20;
    font-weight: 300;
    line-height: 150%;
    margin: 0;
    margin-top: 17px;
}

.section_about_main_wrap_text_name {
    margin-top: 30px;
    color: #00305F;
    font-weight: 500;
    line-height: 130%; /* 20.8px */
}

.section_about_main_wrap_text_status {
    color: #231F20;
    font-weight: 300;
    line-height: 130%; /* 20.8px */
    margin-top: 10px;
}

.section_about_main_wrap_text p:first-child {
    margin-top: 0px;
}

.section_about_main {
    padding-bottom: 100px;
}

.section_about_mission {
    background: #FFF;
    padding: 40px 0;
    margin-bottom: 100px;
}

.section_about_mission_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.section_about_mission_title h2 {
    color: #231F20;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin: 0;
}

.section_about_mission_title{
    width: 40%;
}

.section_about_mission_text p {
    color: #231F20;
    font-weight: 300;
    line-height: 150%;
    margin: 0;
}

.section_about_facts {
    padding: 61px 0 60px;
    background: url(../images/background_facts_section.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}

.section_about_facts_title h2 {
    margin: 0;
    color: #FFF;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%; /* 38.4px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.section_about_facts_wrap {
    display: flex;
    margin: 40px -20px 0;
    flex-wrap: wrap;
}

.section_about_facts_item {
    margin: 0 20px 40px;
    width: calc(25% - 40px);
    border-radius: 3px;
    background: #FFF;
    height: 229px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
}

.section_about_facts_item_title {
    padding: 40px 20px 6px;
    color: #BA9F67;
    font-family: "LeksaSansPro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px; /* 36px */
    text-transform: uppercase;
    height: 109px;
}

.section_about_facts_item_img {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.section_about_facts_item_text {
    padding: 0 20px;
}

.section_about_facts_item_text p {
    color: #00305F;
    font-weight: 300;
    line-height: 150%; /* 24px */
    margin: 0;
}

.holidays .section_about_mission_text {
    flex-grow: 1;
}

.holydays .section_about_mission_wrap {
    display: flex;
    align-items: center;
}

.section_about_mission.holidays {
    padding: 40px 0 52px;
}

.section_title h2 {
    color: #231F20;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%; /* 38.4px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin: 0;
}

.section_advantages_slider_wrap {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.section_advantages_slider_wrap_fix {
    border-radius: 3px;
    background: #FFF;
    width: 560px;
    flex: 0 0 560px;
    height: 394px;
    position: relative;
}

.section_advantages_slider_wrap_fix_title {
    color: #BA9F67;
    font-family: "LeksaSansPro", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%; /* 46.8px */
    text-transform: uppercase;
    padding-top: 40px;
    padding-left: 35px;
    max-width: 370px;
}

.section_advantages_slider_wrap_fix_text {
    margin-top: 20px;
    padding-left: 35px;
    max-width: 225px;
}

.section_advantages_slider_wrap_fix_text p {
    color: #00305F;
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    line-height: 130%; /* 20.8px */
}

.section_advantages_slider_wrap_fix_img {
    position: absolute;
    right: 60px;
    bottom: 39px;
}

.section_advantages_slider {
    margin-left: -110px;
    position: relative;
    z-index: 3;
}

.section_advantages_slider .slick-slide {
    width: 260px;
    height: 268px;
    flex-shrink: 0;
    border-radius: 3px;
    background: #00305F;
    margin: 0 20px;
}

.section_advantages_slider_item_title {
    color: #FFF;
    text-align: center;
    font-family: "LeksaSansPro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%; /* 31.2px */
    text-transform: uppercase;
    padding: 40px 20px 0;
}

.section_advantages_slider_item_text {
    margin-top: 50px;
    padding: 0 20px;
}

.section_advantages_slider_item_text p {
    color: #FFF;
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    line-height: 130%; /* 20.8px */
}

.section_advantages_slider {
    width: calc((100vw - 1160px) / 2 + 580px + 110px);
    overflow-x: visible;
}

.slick-list.draggable {
    padding: 0 !important;
}

.section_advantages .container {
    width: calc(50% - 580px + 1160px);
    margin-left: calc(50% - 580px);
    margin-right: 0px;
}

.section_advantages_slider {
    padding-top: 40px;
}

.section_advantages_slider_item {
    height: 268px !important;
    position: relative;
}

.section_advantages_slider_item_title {
    text-align: left;
}

.section_advantages_slider_item_img {
    position: absolute;
    right: 20px;
    bottom: 40px;
}

.section_advantages .section_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1160px;
}

.section_advantages_slider_buttons .container {
    /* display: flex; */
    width: auto;
    margin: 0;
    position: relative;
}

.slick-slider-dots ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    list-style: none;
    /* position: absolute; */
    z-index: 1;
    margin-top: -20px;
    display: flex;
    padding: 0;
    align-items: center;
}

.slick-slider-nav {
    display: flex;
    position: relative;
    margin-top: 0px;
    width: 100%;
    justify-content: space-between;
    z-index: 0;
}

.slick-slider-nav .slick-prev {
    width: 21px;
    height: 21px;
    border: none;
    background: url(../images/slider-prev.svg);
    cursor: pointer;
    z-index: 2;
    position: relative;
    background-size: contain !important;
    margin-left: -30px;
}

.slick-slider-nav .slick-next {
    width: 21px;
    height: 21px;
    border: none;
    background: url(../images/slider-next.svg);
    cursor: pointer;
    z-index: 2;
    position: relative;
    background-size: contain !important;
    margin-right: -30px;
}

.slick-slider-dots {
    display: flex;
    width: calc(100% - 100px);
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.slick-slider-dots ul li {
    border-radius: 10px;
    background: rgba(192, 163, 95, 0.6);
    font-size: 0;
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 10px;
    cursor: pointer;
}

.slick-slider-dots ul li.slick-active {
    background: #00305F;
}

.slick-slider-dots ul li button {
    font-size: 0px;
    width: 0px;
    height: 0px;
    padding: 0;
    border: 0px;
}

.section_advantages_slider_buttons {
    margin: 0 30px;
}

.section_history_wrap_title h2 {
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.005em;
    text-align: left;
    color: #231F20;
}

.section_history {
    margin-top: 100px;
}

.section_history_wrap {
    display: flex;
    justify-content: space-between;
}

.section_history_wrap_textblock {
    width: calc(50% - 40px);
}

.section_history_wrap_image {
    width: calc(50% - 18px);
}

.section_history_wrap_image img {
    width: 100%;
    height: 347px;
    object-fit: cover;
}

.section_history_wrap_text {
    margin-top: 40px;
}

.section_history_wrap_text p {
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: #231F20;
}

.section_history_structure {
    margin-top: 100px;
}

.section_history_structure_wrap {
    margin-top: 60px;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 52px;
    display: flex;
    justify-content: space-between;
}

.section_history_structure_wrap_item {
    background: #F1EAE0;
    border-radius: 3px;
    padding: 50px 20px 30px;
    margin-bottom: 10px;
}

.section_history_structure_column {
    width: 345px;
}

.section_history_structure_wrap_title h3 {
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #00305F;
}

.section_history_structure_wrap_text {
    margin-top: 20px;
}

.section_history_structure_wrap_text p {
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #00305F;
}

.section_history_structure_wrap_item.bluebackground {
    background: #00305F;
}

.bluebackground .section_history_structure_wrap_title h3 {
    color: #fff;
}

.bluebackground .section_history_structure_wrap_text p {
    color: #fff;
}


.section_history_structure_wrap_item.onlylogo img {
    width: 100px;
    height: 100px;
}

.section_history_structure_wrap_item.onlylogo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 84px;
}

.section_history_structure_wrap {
    padding-bottom: 40px;
}

.section_history_structure {
    margin-bottom: 100px;
}

.section_history_structure_wrap_item.onlylogo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section_history_structure_wrap {
    padding-bottom: 40px;
}

.section_history_structure {
    margin-bottom: 100px;
}

.section_about_mission.holidays + .section_orderblock {
    margin-top: -36px;
    margin-bottom: 100px;
}

.section_orderblock_wrap {
    background: #fff;
    display: flex;
    justify-content: flex-start;
    padding: 30px 260px 30px 20px;
    position: relative;
}

.section_orderblock_text {
    margin-top: 30px;
    max-width: 209px;
}

.section_orderblock_text p {
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #231F20;
    margin: 0;
}

.section_orderblock .section_title {
    max-width: 230px;
}

.section_orderblock_textblock {
    margin-right: 50px;
}

.form_row {
    display: flex;
    justify-content: space-between;
}

.form_input input {
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(0, 48, 95, 0.4);
    padding-bottom: 16px;
    width: 100%;
}

.section_orderblock_form {
    padding-top: 11px;
    max-width: 560px;
}

.form_input {
    width: calc(50% - 22.4px);
}

.form_row.acceptance p, .form_row.acceptance p a {
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: rgba(35, 31, 32, 0.6);
}

.form_row.acceptance {
    margin-top: 20px;
}

.form_row.submit {
    margin-top: 45px;
}

.form_row.submit button {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border: none;
    background: rgb(0, 48, 95);
    padding: 6px 59px 7px;
    border-radius: 3px;
}

.section_orderblock_wrap::after {
    content: "";
    background: url(../images/form-doctor.png) no-repeat;
    width: 260px;
    height: 272px;
    position: absolute;
    right: -1px;
    top: -34px;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

.section_about_facts_slider_buttons.mobile {
    display: none;
}

.section_history_structure_column:nth-child(3) .section_history_structure_wrap_item:nth-child(3) {
    height: 277px;
    margin-bottom: 0px;
}


.section_history_structure_column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.section_history_structure_column .section_history_structure_wrap_item:last-child {
    margin-bottom: 0px;
}

.section_history_structure_wrap_item {
    width: 100%;
    flex-grow: 1;
}

.section_history_structure_wrap_item:hover {
    background: #00305F;
}

.section_history_structure_wrap_item:hover .section_history_structure_wrap_title h3 {
    color: #fff;
}

.section_history_structure_wrap_item:hover .section_history_structure_wrap_text, .section_history_structure_wrap_item:hover .section_history_structure_wrap_text p {
    color: #fff;
}

.section_history_structure_wrap_item.onlylogo:hover {
    background: #fff;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: calc(100% - 20px);
        max-width: 960px;
    }
    .slick-slider-nav .slick-next {
        margin-right: 0px;
    }
    button.slick-prev.slick-arrow {
        margin-left: 0px;
        background-size: cover !important;
    }
    .section_about_facts_slider_buttons.mobile {
        display: block;
    }
    .section_about_facts {
        margin-bottom: 30px;
    }
    .section_about_facts_slider_buttons.mobile {
        margin-bottom: 60px;
    }
    .section_about_facts_item {
        margin: 0 10px;
        height: 244px !important;
    }
    .section_advantages_slider_item.slider_fix {
        display: none !important;
    }
    .section_advantages .section_title {
        width: 100%;
    }
    .section_advantages_slider_buttons_mobile.mobile {
        display: none;
    }
    .section_history_structure_column {
        width: calc(33% - 5px);
    }
    .section_history_structure_wrap_title h3 {
        font-size: 19px;
    }
    .section_advantages .container {
        width: calc(50% - 480px + 960px);
        margin-left: calc(50% - 480px);
        max-width: 100%;
    }
    .section_advantages_slider_item {
        margin: 0 10px;
    }
    .section_advantages .section_title {
        width: calc(50% - 480px + 960px);
        max-width: 960px;
        display: flex;
        justify-content: space-between;
        margin-left: 0px;
        align-items: center;
    }
    .section_advantages_slider_buttons {
        margin: 0;
        max-width: 480px;
        display: flex;
        justify-content: flex-end;
    }
    .section_advantages_slider_buttons .container {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    .section_about_main_wrap_img {
        display: flex;
        justify-content: center;
        width: 41%;
        position: relative;
        align-content: flex-start;
        align-items: flex-start;
    }
    .section_about_main_wrap_img img {
        max-width: 100%;
        height: 100%;
        width: 100%;
        position: relative;
    }
    .section_about_main_wrap_text {
        padding-bottom: 45px;
        width: calc(59% - 40px);
        padding-right: 100px;
        padding-left: 30px;
    }
    .section_orderblock_textblock {
        margin-right: 30px;
    }
    .section_orderblock_form {
        max-width: 420px;
    }
    .section_orderblock_wrap {
        padding-right: 282px;
    }
    .section_history_wrap_image {
        display: flex;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        width: calc(100% - 20px);
    }
    .section_about_facts_slider_buttons.mobile {
        display: block;
    }
    .section_about_main_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_advantages .section_title {
        display: flex;
        width: calc(100% - 20px);
    }
    .section_about_facts_wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 40px auto;
    }
    .section_about_facts_item {
        width: 100%;
    }
    .section_about_main_wrap_img img {
        max-width: 100%;
        height: 100%;
        width: 100%;
        position: relative;
    }
    .section_about_main_wrap_text {
        width: calc(100% - 40px);
        padding: 20px 20px 30px;
    }
    .section_advantages_slider_wrap_fix {
        display: none;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider_buttons {
        display: none;
    }
    .section_advantages .container {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .section_advantages_slider_item {
        width: auto;
        margin: 0 auto;
    }
    .section_advantages_slider_item.slider_fix {
        background: #fff;
        height: 370px !important;
        max-width: 100%;
    }
    .slider_fix .section_advantages_slider_item_title {
        color: #BA9F67;
        font-family: "LeksaSansPro", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 130%; /* 31.2px */
        text-transform: uppercase;
        max-width: 100%;
        display: block;
    }
    .slider_fix .section_advantages_slider_item_text p {
        color: #00305F;
        font-family: "Gilroy", sans-serif;
        font-weight: 300;
        line-height: 130%; /* 20.8px */
        z-index: 3;
        position: relative;
        margin: 0;
    }
    .slider_fix .section_advantages_slider_item_img {
        position: relative;
        max-width: 100%;
        padding: 0 10px 20px 10px;
        right: initial;
        bottom: initial;
        margin-top: 20px;
    }
    .slider_fix .section_advantages_slider_item_img img {
        max-width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider {
        padding-bottom: 60px;
        padding-top: 0px;
    }
    .section_advantages_slider_item_text {
        margin-top: 20px;
    }
    .section_advantages_slider_wrap {
        margin-top: 10px;
    }
    .section_history_structure_wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 20px -10px;
        padding: 20px 10px;
    }
    .section_orderblock_wrap {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
    .section_orderblock_wrap::after {
        width: 250px;
        height: 261.5384615385px;
        background-size: cover;
        margin-top: 136px;
    }
    .section_orderblock_form {
        margin-bottom: 0;
        padding-top: 20px;
        background: #fff;
        width: 100%;
        padding: 20px 270px 30px 20px;
        max-width: initial;
    }
    .section_top {
        padding-top: 30px;
    }
    .section_about_main_title h1 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_main_wrap {
        display: flex;
        align-items: stretch;
        align-content: stretch;
    }
    .section_about_main_wrap_text {
        padding-bottom: 20px;
        width: calc(59% - 40px);
    }
    .section_about_main {
        padding-bottom: 60px;
    }
    .section_about_mission_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_about_mission_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_mission_text {
        margin-top: 30px;
    }
    .section_about_mission {
        padding: 20px;
        width: calc(100% - 60px);
        margin: 0 auto 60px;
    }
    .section_about_facts_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 17px;
    }
    .section_about_facts {
        padding: 20px 0;
    }
    .section_about_facts_wrap {
        margin-top: 30px;
    }
    .section_history_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_history_wrap_textblock {
        width: 100%;
    }
    .section_history_wrap_image {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 18px;
        display: flex;
    }
    .section_history_wrap_text {
        margin-top: 20px;
        padding: 0 20px;
    }
    .section_history_wrap_text p {
        font-weight: 300;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
    .section_history_structure_column .section_history_structure_wrap_item {
        height: auto !important;
    }
    .section_history_wrap_title h2 {
        margin: 0 20px;
    }
    .section_history_structure {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .section_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 20px;
    }
    .section_history_structure_wrap_item {
        padding: 20px;
    }
    .section_history_structure_wrap_item.onlylogo {
        display: none;
        height: 114px !important;
        padding-top: 64px;
    }
    .section_history_structure_wrap_item:last-child {
        margin-bottom: 0px;
    }
    .section_about_mission.holidays {
        width: calc(100% - 40px);
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 20px 10px;
    }
    .section_about_mission_title{
        width: 100%;
        padding-bottom: 20px;
    }
    .holidays .section_about_mission_text {
        width: 100%;
        margin-top: 20px;
    }
    .section_orderblock_wrap {
        padding: 0;
        margin-bottom: 0;
    }
    .section_orderblock_textblock .section_title h2 {
        margin: 0 auto;
        max-width: 193px;
        margin-left: 0;
    }
    .section_orderblock_text {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }
    .section_orderblock_textblock {
        margin-right: 0px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 0 20px;
    }
    .form_row {
        display: flex;
        flex-wrap: wrap;
    }
    .form_input {
        width: 100%;
        margin-bottom: 20px;
    }
    .form_input:last-child {
        margin-bottom: 0px;
    }
    .form_row.submit {
        margin-top: 20px;
    }
    .section_about_mission.holidays + .section_orderblock {
        margin-bottom: 60px;
        margin-top: -40px;
        width: calc(100% - 20px);
        margin: -40px auto 60px;
    }
    .section_orderblock .container {
        width: 100%;
    }
    .section_history_wrap_image img {
        height: 56.1959654179vw;
    }
    .section_about_facts_item {
        margin: 0 auto;
        height: 244px !important;
    }
    .section_about_facts .container {
        width: calc(100% - 30px);
    }
    .section_about_facts_wrap.slick-initialized.slick-slider.slick-dotted {
        margin-bottom: 0;
    }
    .section_about_facts_slider_buttons.mobile {
        margin-bottom: 60px;
    }
    .section_about_facts_slider_buttons.mobile button.slick-prev.slick-arrow {
        margin-left: 20px;
        background-size: contain !important;
    }
    .section_about_facts_slider_buttons.mobile button.slick-next.slick-arrow {
        margin-right: 20px;
        background-size: contain !important;
    }
    .section_about_facts {
        margin-bottom: 30px;
    }
    .slick-slider-dots ul li {
        width: 6px;
        height: 6px;
        margin: 0 6px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-prev.slick-arrow {
        margin-left: 10px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-next.slick-arrow {
        margin-right: 10px;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        padding-bottom: 30px;
    }
    .section_history {
        margin-top: 60px;
    }
    .section_orderblock_wrap {
        background: none;
    }
    .section_about_main_wrap_img {
        display: flex;
        justify-content: center;
        width: 41%;
        position: relative;
        align-content: flex-start;
        align-items: flex-start;
    }
    .section_history_structure_column {
        width: 100%;
    }
    .section_orderblock .section_title, .section_orderblock .section_title h2 {
        max-width: initial;
    }
    .section_about_facts_wrap {
        margin: 40px -10px 0;
    }
    .section_about_facts_item {
        margin: 0 10px;
    }
    .section_history_structure_column {
        width: calc(33% - 5px);
        display: flex;
        flex-wrap: wrap;
        align-content: stretch;
        align-items: stretch;
    }
    .section_history_structure_wrap_item.onlylogo {
        display: flex;
    }
    .section_advantages_slider_item {
        margin: 0 10px;
        height: 370px !important;
    }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
    .container {
        width: calc(100% - 20px);
    }
    .section_about_facts_slider_buttons.mobile {
        display: block;
    }
    .section_about_main_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_advantages .section_title {
        display: flex;
        width: calc(100% - 20px);
    }
    .section_about_facts_wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 40px auto;
    }
    .section_about_facts_item {
        width: 100%;
    }
    .section_about_main_wrap_img img {
        max-width: 100%;
        height: 100%;
        width: 100%;
        position: relative;
    }
    .section_about_main_wrap_text {
        width: calc(100% - 40px);
        padding: 20px 20px 30px;
    }
    .section_advantages_slider_wrap_fix {
        display: none;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider_buttons {
        display: none;
    }
    .section_advantages .container {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .section_advantages_slider_item {
        width: auto;
        margin: 0 auto;
        height: 370px !important;
    }
    .section_advantages_slider_item_title {
        min-height: 62px;
    }
    .section_advantages_slider_item.slider_fix {
        background: #fff;
        height: 370px !important;
        max-width: 100%;
    }
    .slider_fix .section_advantages_slider_item_title {
        color: #BA9F67;
        font-family: "LeksaSansPro", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 130%; /* 31.2px */
        text-transform: uppercase;
        max-width: 100%;
        display: block;
    }
    .slider_fix .section_advantages_slider_item_text p {
        color: #00305F;
        font-family: "Gilroy", sans-serif;
        font-weight: 300;
        line-height: 130%; /* 20.8px */
        z-index: 3;
        position: relative;
        margin: 0;
    }
    .slider_fix .section_advantages_slider_item_img {
        position: relative;
        max-width: 100%;
        padding: 0 10px 20px 10px;
        right: initial;
        bottom: initial;
        margin-top: 20px;
    }
    .slider_fix .section_advantages_slider_item_img img {
        max-width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider {
        padding-bottom: 60px;
        padding-top: 0px;
    }
    .section_advantages_slider_item_text {
        margin-top: 20px;
    }
    .section_advantages_slider_wrap {
        margin-top: 10px;
    }
    .section_history_structure_wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 20px -10px;
        padding: 20px 10px;
    }
    .section_orderblock_wrap {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
    .section_orderblock_wrap::after {
        width: 250px;
        height: 261.5384615385px;
        background-size: cover;
        margin-top: 136px;
    }
    .section_orderblock_form {
        margin-bottom: 0;
        padding-top: 20px;
        background: #fff;
        width: 100%;
        padding: 20px 270px 30px 20px;
        max-width: initial;
    }
    .section_top {
        padding-top: 30px;
    }
    .section_about_main_title h1 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_main_wrap {
        display: flex;
        /* flex-direction: column-reverse; */
        align-items: stretch;
        align-content: stretch;
    }
    .section_about_main_wrap_text {
        padding-bottom: 20px;
        width: calc(59% - 40px);
    }
    .section_about_main {
        padding-bottom: 60px;
    }
    .section_about_mission_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_about_mission_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_mission_text {
        margin-top: 30px;
    }
    .section_about_mission {
        padding: 20px;
        width: calc(100% - 60px);
        margin: 0 auto 60px;
    }
    .section_about_facts_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 17px;
    }
    .section_about_facts {
        padding: 20px 0;
    }
    .section_about_facts_wrap {
        margin-top: 30px;
    }
    .section_history_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_history_wrap_textblock {
        width: 100%;
    }
    .section_history_wrap_image {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 18px;
        display: flex;
    }
    .section_history_wrap_text {
        margin-top: 20px;
        padding: 0 20px;
    }
    .section_history_wrap_text p {
        font-weight: 300;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
    .section_history_wrap_title h2 {
        margin: 0 20px;
    }
    .section_history_structure {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .section_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 20px;
    }
    .section_history_structure_wrap_item {
        padding: 20px;
    }
    .section_history_structure_wrap_item.onlylogo {
        display: none;
    }
    .section_history_structure_wrap_item:last-child {
        margin-bottom: 10px !important;
    }
    .section_about_mission.holidays {
        width: calc(100% - 40px);
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 20px 10px;
    }
    .section_about_mission_title{
        width: 100%;
        padding-bottom: 20px;
    }
    .holidays .section_about_mission_text {
        width: 100%;
        margin-top: 20px;
    }
    .section_orderblock_wrap {
        padding: 0;
        margin-bottom: 0;
    }
    .section_orderblock_textblock .section_title h2 {
        margin: 0 auto;
        max-width: 193px;
        margin-left: 0;
    }
    .section_orderblock_text {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }
    .section_orderblock_textblock {
        margin-right: 0px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 0 20px;
    }
    .form_row {
        display: flex;
        flex-wrap: wrap;
    }
    .form_input {
        width: 100%;
        margin-bottom: 20px;
    }
    .form_input:last-child {
        margin-bottom: 0px;
    }
    .form_row.submit {
        margin-top: 20px;
    }
    .section_about_mission.holidays + .section_orderblock {
        margin-bottom: 60px;
        margin-top: -40px;
        width: calc(100% - 20px);
        margin: -40px auto 60px;
    }
    .section_orderblock .container {
        width: 100%;
    }
    .section_history_wrap_image img {
        height: 56.1959654179vw;
    }
    .section_about_facts_item {
        margin: 0 auto;
        height: 244px !important;
    }
    .section_about_facts .container {
        width: calc(100% - 30px);
    }
    .section_about_facts_wrap.slick-initialized.slick-slider.slick-dotted {
        margin-bottom: 0;
    }
    .section_about_facts_slider_buttons.mobile {
        margin-bottom: 60px;
    }
    .section_about_facts_slider_buttons.mobile button.slick-prev.slick-arrow {
        margin-left: 20px;
        background-size: contain !important;
    }
    .section_about_facts_slider_buttons.mobile button.slick-next.slick-arrow {
        margin-right: 20px;
        background-size: contain !important;
    }
    .section_about_facts {
        margin-bottom: 30px;
    }
    .slick-slider-dots ul li {
        width: 6px;
        height: 6px;
        margin: 0 6px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-prev.slick-arrow {
        margin-left: 10px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-next.slick-arrow {
        margin-right: 10px;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        padding-bottom: 30px;
    }
    .section_history {
        margin-top: 60px;
    }
    .section_orderblock_wrap {
        background: none;
    }
    .section_about_main_wrap_img {
        display: flex;
        justify-content: center;
        width: 41%;
        position: relative;
        align-content: flex-start;
        align-items: flex-start;
    }
    .section_history_structure_column {
        width: 100%;
    }
    .section_orderblock .section_title, .section_orderblock .section_title h2 {
        max-width: initial;
    }
}
@media screen and (min-width: 481px) and (max-width: 640px) {
    .container {
        width: calc(100% - 20px);
    }
    .section_about_facts_slider_buttons.mobile {
        display: block;
    }
    .section_about_main_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_advantages .section_title {
        display: flex;
        width: calc(100% - 20px);
    }
    .section_about_facts_wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 40px auto;
    }
    .section_about_facts_item {
        width: 100%;
    }
    .section_about_main_wrap_img img {
        max-width: 100%;
        height: calc((100vw - 20px) / 299 * 312);
    }
    .section_about_main_wrap_text {
        width: calc(100% - 40px);
        padding: 20px 20px 30px;
    }
    .section_advantages_slider_wrap_fix {
        display: none;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider_buttons {
        display: none;
    }
    .section_advantages .container {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    .section_advantages_slider_item {
        width: auto;
        margin: 0 auto;
        height: 370px !important;
    }
    .section_advantages_slider_item_title {
        min-height: 62px;
    }
    .section_advantages_slider_item.slider_fix {
        background: #fff;
        height: 370px !important;
        max-width: 100%;
    }
    .slider_fix .section_advantages_slider_item_title {
        color: #BA9F67;
        font-family: "LeksaSansPro", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 130%; /* 31.2px */
        text-transform: uppercase;
        max-width: 100%;
        display: block;
    }
    .slider_fix .section_advantages_slider_item_text p {
        color: #00305F;
        font-family: "Gilroy", sans-serif;
        font-weight: 300;
        line-height: 130%; /* 20.8px */
        z-index: 3;
        position: relative;
        margin: 0;
    }
    .slider_fix .section_advantages_slider_item_img {
        position: relative;
        max-width: 100%;
        padding: 0 10px 20px 10px;
        right: initial;
        bottom: initial;
        margin-top: 20px;
    }
    .slider_fix .section_advantages_slider_item_img img {
        max-width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider {
        padding-bottom: 60px;
        padding-top: 0px;
    }
    .section_advantages_slider_item_text {
        margin-top: 20px;
    }
    .section_advantages_slider_wrap {
        margin-top: 10px;
    }
    .section_history_structure_wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 20px -10px;
        padding: 20px 10px;
    }
    .section_orderblock_wrap {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
    .section_orderblock_wrap::after {
        position: relative;
        top: 0;
        margin: 0 auto;
        width: calc(100% + 0px);
        background-size: cover;
        height: calc((100vw - 20px) / 260 * 272);
        display: none;
    }
    .section_orderblock_form {
        margin-bottom: 0;
        padding-top: 20px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 30px 20px;
        max-width: initial;
    }
    .section_top {
        padding-top: 30px;
    }
    .section_about_main_title h1 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_main_wrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .section_about_main_wrap_text {
        padding-bottom: 20px;
    }
    .section_about_main {
        padding-bottom: 60px;
    }
    .section_about_mission_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_about_mission_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_mission_text {
        margin-top: 30px;
    }
    .section_about_mission {
        padding: 20px;
        width: calc(100% - 60px);
        margin: 0 auto 60px;
    }
    .section_about_facts_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 17px;
    }
    .section_about_facts {
        padding: 20px 0;
    }
    .section_about_facts_wrap {
        margin-top: 30px;
    }
    .section_history_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_history_wrap_textblock {
        width: 100%;
    }
    .section_history_wrap_image {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 18px;
        display: flex;
    }
    .section_history_wrap_text {
        margin-top: 20px;
        padding: 0 20px;
    }
    .section_history_wrap_text p {
        font-weight: 300;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
    .section_history_wrap_title h2 {
        margin: 0 20px;
    }
    .section_history_structure {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .section_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 20px;
    }
    .section_history_structure_wrap_item {
        padding: 20px;
    }
    .section_history_structure_wrap_item.onlylogo {
        display: none;
    }
    .section_history_structure_wrap_item:last-child {
        margin-bottom: 10px !important;
    }
    .section_about_mission.holidays {
        width: calc(100% - 40px);
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 20px 10px;
    }
    .section_about_mission_title{
        width: 100%;
        padding-bottom: 20px;
    }
    .holidays .section_about_mission_text {
        width: 100%;
        margin-top: 20px;
    }
    .section_orderblock_wrap {
        padding: 0;
        margin-bottom: 0;
    }
    .section_orderblock_textblock .section_title h2 {
        margin: 0 auto;
        max-width: 193px;
        margin-left: 0;
    }
    .section_orderblock_text {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }
    .section_orderblock_textblock {
        margin-right: 0px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 0 20px;
    }
    .form_row {
        display: flex;
        flex-wrap: wrap;
    }
    .form_input {
        width: 100%;
        margin-bottom: 20px;
    }
    .form_input:last-child {
        margin-bottom: 0px;
    }
    .form_row.submit {
        margin-top: 20px;
    }
    .section_about_mission.holidays + .section_orderblock {
        margin-bottom: 60px;
        margin-top: -40px;
        width: calc(100% - 20px);
        margin: -40px auto 60px;
    }
    .section_orderblock .container {
        width: 100%;
    }
    .section_history_wrap_image img {
        height: 56.1959654179vw;
    }
    .section_about_facts_item {
        margin: 0 auto;
        height: 244px !important;
    }
    .section_about_facts .container {
        width: calc(100% - 30px);
    }
    .section_about_facts_wrap.slick-initialized.slick-slider.slick-dotted {
        margin-bottom: 0;
    }
    .section_about_facts_slider_buttons.mobile {
        margin-bottom: 60px;
    }
    .section_about_facts_slider_buttons.mobile button.slick-prev.slick-arrow {
        margin-left: 20px;
        background-size: contain !important;
    }
    .section_about_facts_slider_buttons.mobile button.slick-next.slick-arrow {
        margin-right: 20px;
        background-size: contain !important;
    }
    .section_about_facts {
        margin-bottom: 30px;
    }
    .slick-slider-dots ul li {
        width: 6px;
        height: 6px;
        margin: 0 6px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-prev.slick-arrow {
        margin-left: 10px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-next.slick-arrow {
        margin-right: 10px;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        padding-bottom: 30px;
    }
    .section_history {
        margin-top: 60px;
    }
    .section_orderblock_wrap {
        background: none;
    }
    .section_about_main_wrap_img {
        display: flex;
        justify-content: center;
    }
    .section_history_structure_column {
        width: 100%;
    }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .section_about_facts_slider_buttons.mobile {
        display: block;
    }
    .section_about_main_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_advantages .section_title {
        display: flex;
        width: calc(100% - 20px);
    }
    .section_about_facts_wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 40px auto;
    }
    .section_about_facts_item {
        width: 100%;
    }
    .section_about_main_wrap_img img {
        max-width: 100%;
        height: calc((100vw - 20px) / 299 * 312);
    }
    .section_about_main_wrap_text {
        width: 100%;
        padding: 20px 20px 30px;
    }
    .section_advantages_slider_wrap_fix {
        display: none;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider_buttons {
        display: none;
    }
    .section_advantages .container {
        width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider_item {
        width: auto;
        margin: 0 auto;
        height: 370px !important;
    }
    .section_advantages_slider_item_title {
        min-height: 62px;
    }
    .section_advantages_slider_item.slider_fix {
        background: #fff;
        height: 370px !important;
        max-width: 100%;
    }
    .slider_fix .section_advantages_slider_item_title {
        color: #BA9F67;
        font-family: "LeksaSansPro", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 130%; /* 31.2px */
        text-transform: uppercase;
        max-width: 100%;
        display: block;
    }
    .slider_fix .section_advantages_slider_item_text p {
        color: #00305F;
        font-family: "Gilroy", sans-serif;
        font-weight: 300;
        line-height: 130%; /* 20.8px */
        z-index: 3;
        position: relative;
        margin: 0;
    }
    .slider_fix .section_advantages_slider_item_img {
        position: relative;
        max-width: 100%;
        padding: 0 10px 20px 10px;
        right: initial;
        bottom: initial;
        margin-top: 20px;
    }
    .slider_fix .section_advantages_slider_item_img img {
        max-width: 100%;
        margin: 0 auto;
    }
    .section_advantages_slider {
        padding-bottom: 60px;
        padding-top: 0px;
    }
    .section_advantages_slider_item_text {
        margin-top: 20px;
    }
    .section_advantages_slider_wrap {
        margin-top: 10px;
    }
    .section_history_structure_wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 20px auto;
        padding: 20px 10px;
    }
    .section_orderblock_wrap {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
    .section_orderblock_wrap::after {
        position: relative;
        top: 0;
        margin: 0 auto;
        width: calc(100% + 0px);
        background-size: cover;
        height: calc((100vw - 20px) / 260 * 272);
    }
    .section_orderblock_form {
        margin-bottom: 0;
        padding-top: 20px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 30px 20px;
    }
    .section_top {
        padding-top: 30px;
    }
    .section_about_main_title h1 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_main_wrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .section_about_main_wrap_text {
        padding-bottom: 20px;
    }
    .section_about_main {
        padding-bottom: 60px;
    }
    .section_about_mission_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_about_mission_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
    }
    .section_about_mission_text {
        margin-top: 30px;
    }
    .section_about_mission {
        padding: 20px;
        width: 100%;
        margin: 0 auto 60px;
    }
    .section_about_facts_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 31px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 17px;
    }
    .section_about_facts {
        padding: 20px 0;
    }
    .section_about_facts_wrap {
        margin-top: 30px;
    }
    .section_history_wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .section_history_wrap_textblock {
        width: 100%;
    }
    .section_history_wrap_image {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 18px;
        display: flex;
    }
    .section_history_wrap_text {
        margin-top: 20px;
        padding: 0 20px;
    }
    .section_history_wrap_text p {
        font-weight: 300;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
    .section_history_wrap_title h2 {
        margin: 0 20px;
    }
    .section_history_structure {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .section_title h2 {
        font-family: "Gilroy", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
        letter-spacing: 0.02em;
        text-align: left;
        margin: 0 20px;
    }
    .section_history_structure_wrap_item {
        padding: 20px;
    }
    .section_history_structure_wrap_item.onlylogo {
        display: none;
    }
    .section_history_structure_wrap_item:last-child {
        margin-bottom: 10px !important;
    }
    .section_about_mission.holidays {
        width: calc(100% - 40px);
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 20px 10px;
    }
    .section_about_mission_title{
        width: 100%;
        padding-bottom: 20px;
    }
    .holidays .section_about_mission_text {
        width: 100%;
        margin-top: 20px;
    }
    .section_orderblock_wrap {
        padding: 0;
        margin-bottom: 0;
    }
    .section_orderblock_textblock .section_title h2 {
        margin: 0 auto;
        max-width: 193px;
        margin-left: 0;
    }
    .section_orderblock_text {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }
    .section_orderblock_textblock {
        margin-right: 0px;
        background: #fff;
        width: 100%;
        padding: 20px 20px 0 20px;
    }
    .form_row {
        display: flex;
        flex-wrap: wrap;
    }
    .form_input {
        width: 100%;
        margin-bottom: 20px;
    }
    .form_input:last-child {
        margin-bottom: 0px;
    }
    .form_row.submit {
        margin-top: 20px;
    }
    .section_about_mission.holidays + .section_orderblock {
        margin-bottom: 60px;
        margin-top: -40px;
        width: 100%;
        margin: -40px auto 60px;
    }
    .section_orderblock .container {
        width: 100%;
    }
    .section_history_wrap_image img {
        height: 56.1959654179vw;
    }
    .section_about_facts_item {
        margin: 0 auto;
        height: calc((100vw - 30px) / 294 * 229) !important;
    }
    .section_about_facts_wrap.slick-initialized.slick-slider.slick-dotted {
        margin-bottom: 0;
    }
    .section_about_facts_slider_buttons.mobile {
        margin-bottom: 60px;
    }
    .section_about_facts_slider_buttons.mobile button.slick-prev.slick-arrow {
        margin-left: 20px;
        background-size: contain !important;
    }
    .section_about_facts_slider_buttons.mobile button.slick-next.slick-arrow {
        margin-right: 20px;
        background-size: contain !important;
    }
    .section_about_facts {
        margin-bottom: 30px;
    }
    .slick-slider-dots ul li {
        width: 6px;
        height: 6px;
        margin: 0 6px;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-prev.slick-arrow {
        margin-left: 10px;
        background-size: contain !important;
    }
    .section_advantages_slider_buttons_mobile.mobile button.slick-next.slick-arrow {
        margin-right: 10px;
        background-size: contain !important;
    }
    .section_advantages_slider.slick-initialized.slick-slider.slick-dotted {
        padding-bottom: 30px;
    }
    .section_history {
        margin-top: 60px;
    }
    .section_orderblock_wrap {
        background: none;
    }
    .section_about_main_wrap_img {
        display: flex;
        justify-content: center;
    }
    .section_history_structure_column {
        width: 100%;
    }
    .section_advantages_slider .slick-slide {
        height: 370px;
    }
}
@media (max-width: 767.98px) {
    .section_advantages_slider .slick-slide {
        height: auto;
    }
    .section_about_mission_text b{
        margin-bottom: 10px;
        display: block;
    }
}
.footer {
    padding-top: 60px;
    background-color: white;
    color: #231F20;
}
@media (max-width: 768.98px) {
    .footer {
        padding-top: 5px;
    }
}
.footer .footer__logo {
    padding-bottom: 30px;
}
@media (max-width: 767.98px) {
    .footer .footer__logo {
        padding-bottom: 20px;
    }
}
.footer .footer__logo img {
    width: 172px;
}
.footer .btn {
    padding: 15px 25px;
    text-transform: uppercase;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .footer .btn {
        width: 100%;
        display: block;
    }
}
.footer .footer__contacts {
    padding-top: 35px;
}
@media (max-width: 767.98px) {
    .footer .footer__contacts {
        padding-top: 25px;
    }
}
.footer .footer__contacts .footer__address, .footer .footer__contacts .footer__phone a {
    color: #231F20;
    line-height: 1.3;
}
.footer .footer__contacts .footer__phone a {
    padding-top: 10px;
    font-size: 20px;
    display: block;
}
.footer .footer__menu-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}
.footer .footer__menu nav ul {
    display: flex;
    flex-direction: column;
}
.footer .footer__menu nav ul li {
    padding-bottom: 16px;
}
@media (max-width: 767.98px) {
    .footer .footer__menu nav ul li {
        padding-bottom: 0;
    }
}
.footer .footer__menu nav ul li a {
    color: #231F20;
    position: relative;
}
.footer .footer__menu nav ul li ul {
    display: none;
}
.footer .footer__menu nav ul li.active ul {
    display: flex;
}
.footer .footer__menu nav ul li.active ul li a {
    text-transform: none;
    padding: 10px 0;
    border: none;
}
.footer .footer__menu nav ul .menu-item-has-children > a:after {
    content: "";
    background-image: url(../images/icons/icons.svg#arrow-menu-mobile);
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
    margin-left: 10px;
    transition: transform 0.3s ease;
    width: 13px;
    height: 15px;
    position: absolute;
    top: 38px;
    right: 5px;
    transform: rotate(0);
}
@media (max-width: 767.98px) {
    .footer .footer__menu nav ul .menu-item-has-children > a:after {
        display: inline-block;
    }
}
.footer .footer__menu nav ul .menu-item-has-children.active > a:after {
    transform: rotate(180deg);
}
.footer .footer__menu .footer__nav_light > ul > li > a.menu__link {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    opacity: 1;
    padding-bottom: 10px;
    display: block;
}
@media (max-width: 767.98px) {
    .footer .footer__menu .footer__nav_light > ul > li > a.menu__link {
        padding: 35px 0 17px;
        display: block;
        color: #00305F;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 48, 95, 0.4);
    }
}
.footer .footer__menu .footer__nav_light ul li ul {
    display: block;
}
@media (max-width: 767.98px) {
    .footer .footer__menu .footer__nav_light .nav-sub-menu {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .footer .footer__menu .footer__nav_light li.active .nav-sub-menu {
        display: flex;
    }
    .footer .footer__menu .footer__nav_light li.active .nav-sub-menu a {
        display: block;
        color: #00305F;
        font-size: 14px;
        opacity: 1;
        font-weight: 400;
    }
}
.footer .footer__menu .footer__nav ul li {
    padding-bottom: 20px;
}
@media (max-width: 768.98px) {
    .footer .footer__menu .footer__nav ul li {
        padding-bottom: 0;
    }
}
.footer .footer__menu .footer__nav ul li a {
    font-weight: 400;
    text-transform: uppercase;
    color: #231F20;
}
@media (max-width: 768.98px) {
    .footer .footer__menu .footer__nav ul li a {
        padding: 35px 0 17px;
        display: block;
        color: #00305F;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 48, 95, 0.4);
    }
}
.footer .footer__menu .footer__nav_light ul li a {
    opacity: 0.6;
}
.footer .footer__menu .footer__nav_light ul li a:hover {
    opacity: 1;
}
.footer .footer__socials {
    padding-left: 23px;
}
.footer .footer__socials p {
    color: #231F20;
}
@media (max-width: 767.98px) {
    .footer .footer__socials p {
        margin-bottom: 7px;
    }
}
@media (max-width: 767.98px) {
    .footer .footer__socials .socials__icons {
        display: flex;
        justify-content: space-between;
    }
}
.footer .footer__socials .socials__icons a {
    padding-right: 15px;
    display: inline-block;
}
@media (max-width: 767.98px) {
    .footer .footer__socials .socials__icons a:last-child {
        padding-right: 0;
    }
}
.footer .footer__socials .socials__icons .svg-dzen, .footer .footer__socials .socials__icons .svg-vk, .footer .footer__socials .socials__icons .svg-teleg, .footer .footer__socials .socials__icons .svg-yt {
    width: 32px;
    height: 32px;
}
.footer .copyright {
    padding: 35px 0 25px;
    background-color: #00305F;
    margin-top: 20px;
}
@media (max-width: 767.98px) {
    .footer .copyright {
        padding: 29px 0 5px;
        margin-top: 20px;
    }
}
.footer .copyright p {
    color: white;
    font-size: 14px;
    text-align: center;
}
.footer .copyright p a {
    text-decoration: underline;
    color: white;
}
@media (max-width: 767.98px) {
    .footer .copyright p {
        text-align: left;
    }
}
.footer .service-quality {
    display: flex;
    padding-top: 25px;
}
@media (max-width: 767.98px) {
    .footer .service-quality {
        padding: 25px 40px;
    }
}
.footer .service-quality .image {
    flex: 0 0 72px;
}
.footer .service-quality .text-block {
    padding-left: 10px;
}
.footer .service-quality .text-block p {
    font-size: 10px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.2px;
}
@media (max-width: 767.98px) {
    .footer .service-quality .text-block p {
        padding-bottom: 16px;
    }
}
.footer .service-quality .text-block a {
    border-radius: 2.008px;
    background: #EFF3F6;
    display: block;
    border: none;
    color: #231F20;
    font-size: 10px;
    font-weight: 400;
    line-height: 130%;
    padding: 6px;
}

@media (max-width: 767.98px) {
    .footer .footer__info {
        order: 2;
        padding-bottom: 23px;
        border-bottom: 1px solid rgba(0, 48, 95, 0.4);
        margin-bottom: 20px;
    }
    .footer .footer__menu-left {
        order: 1;
        padding-bottom: 17px;
    }
    .footer .footer__socials {
        order: 3;
        padding: 0 15px;
        margin-bottom: 0px;
    }
}
a#call-btn-online {
    background-color: #00305F;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    right: 40px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 115px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767.98px) {
    a#call-btn-online {
        display: none;
    }
}

#call-btn-online::after {
    content: "";
    background: url(https://yamed.ru/wp-content/themes/yamed/images/icons/icons.svg#write) no-repeat center;
    display: block;
    width: 55px;
    height: 55px;
}

/* accessibility */
.info__accessibility {
    cursor: pointer;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay p.pojo-a11y-toolbar-title {
    color: #231F20;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
    padding: 20px 15px 0;
}
@media (max-width: 992.98px) {
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay p.pojo-a11y-toolbar-title {
        padding: 20px 25px 0;
    }
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a .pojo-a11y-toolbar-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a {
    display: flex;
    padding: 6px 15px;
    color: #231F20;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}
@media (max-width: 992.98px) {
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a {
        padding: 6px 25px;
    }
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay, body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items.pojo-a11y-links {
    border: none;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left.pojo-a11y-toolbar-open {
    left: auto !important;
    top: 75px !important;
}
@media (max-width: 992.98px) {
    body #pojo-a11y-toolbar.pojo-a11y-toolbar-left.pojo-a11y-toolbar-open {
        width: 100%;
    }
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-right {
    right: 0;
    transition: all 750ms cubic-bezier(0.23, 1, 0.32, 1);
    top: -100% !important;
    z-index: 6;
}
body #pojo-a11y-toolbar {
    top: -200% !important;
    left: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-right.pojo-a11y-toolbar-open {
    right: 0;
    top: 80px !important;
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    width: 312px;
}
@media (max-width: 992.98px) {
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
        width: 100%;
    }
}
body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
    display: none;
}

/* modal */
.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.24);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

/**/
.modal-dialog {
    max-width: 667px;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}

.modal button.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    margin: 0;
    opacity: 1;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-content {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    padding: 40px 70px 40px;
    pointer-events: auto;
    text-align: center;
}
@media (max-width: 767.98px) {
    .modal-content {
        text-align: left;
        border-radius: 3px 3px 0px 0px;
        padding: 54px 18px 60px;
    }
}

.modal-content .modal-subtitle {
    color: #231F20;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 150%;
}

.modal-doctor-name{
    font-size: 19px;
    font-weight: 500;
}

.modal-content .modal-title {
    color: #231F20;
    text-align: center;
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-content h5,
.modal-content .h5,
.modal-content h3 {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #231F20;
    margin-bottom: 10px;
}

.modal-content form input[type=text], .modal-content form input[type=tel] {
    padding: 0 0 4px;
}
.modal-content form input[type=text]::placeholder, .modal-content form input[type=tel]::placeholder {
    color: #231F20;
}
.modal-content input:focus {
    border-bottom: 1px solid rgba(35, 31, 32, 0.6);
}
.modal-content form .gform_fields {
    margin: 0 -10px;
    justify-content: space-between;
}
.modal-content .gfield {
    margin-bottom: 10px;
}
.modal-content .gfield--type-text, .modal-content .gfield--type-phone {
    padding: 0 10px;
    flex: 0 0 50%;
    width: 50%;
}
@media (max-width: 767.98px) {
    .modal-content .gfield--type-text, .modal-content .gfield--type-phone {
        flex: 0 0 100%;
        width: 100%;
    }
}
.modal-content .form-group.agree {
    color: rgba(35, 31, 32, 0.6);
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 130%;
}
@media (max-width: 992.98px) {
    .modal-content .form-group.agree {
        text-align: center;
        padding: 0 10px 36px;
    }
}
.modal-content .form-group.agree a {
    text-decoration: underline;
    color: rgba(35, 31, 32, 0.6);
}
@media (max-width: 767.98px) {
    .modal-content .form-group.agree {
        padding-bottom: 36px;
        text-align: left;
    }
}
.modal-content .gfield--type-html {
    width: 100%;
    text-align: center;
}
@media (max-width: 767.98px) {
    .modal-content .gfield--type-html {
        text-align: left;
    }
}

.modal-content .form-group-checkbox label {
    font-size: 13px;
}

.not-registred-box {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #CFDADA;
}

.not-registred-box .form-group {
    margin: 0;
    flex-wrap: wrap;
}

.not-registred-box .form-group .btn {
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
}


/*new css */

.slider__item_buttons {
    position: absolute;
    bottom: 45px;
    width: calc(100% - 20px);
    display:flex;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
}

.slider__item_buttons > a {
    padding: 7px 0 8px;
    width: calc(50% - 1px) !important;
    display: block;
    min-height: auto !important;
    flex: initial !important;
    text-align: center;
    background: rgba(0, 48, 95, 1);
    color: #fff;
    border-radius: 3px !important;
    max-width: calc(50% - 1px) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0em;
    text-transform: uppercase;
}.single-post__text-list ul li ul li:before, .single-post__first-section ul li ul li:before, .pure__text-block ul li ul li:before, .pure__text-block ol li ol li:before {
   background: url(../images/icons/icon-sublist.svg) no-repeat;
}.single-post__text-list ul li ul li, .single-post__first-section ul li ul li, .pure__text-block ul li ul li, .pure__text-block ol li ol li{
  padding-left:20px;
}

.single-post__text-list ul li ul, .single-post__first-section ul li ul, .pure__text-block ul li ul , .pure__text-block ol li ol {
    padding-left:20px;
    margin-top:10px;

}
@media screen and (min-width:320px) and (max-width:1200px)
{
    .slider__item_buttons {
        bottom: 49px;
    }
}
/* new css end*/

.location {
    padding: 10px 0 20px;
}
.location a{
    color: #00305F;
    font-size: 18px;
    display: flex;
    align-items: center;
    text-decoration: underline;
}


.location a:before{
    content: '';
    display: inline-block;
    width: 36px;
    height: 34px;
    background: url(../images/icons/map_pointer.svg) no-repeat 2px 2px;
}

@media screen and (max-width:768px){
    .location a{
        font-size: 16px;
    }
    .location a span{
        margin-left: 10px;
    }
}


.block__install {
    opacity: 0;
    display: none;
}

.content-wrapper{
    position: relative;
}

@media (max-width: 1025px) {
    .block__install {
        padding: 15px 40px;
        transition: all ease 0.3s;
        width: 100%;
        opacity: 1;
        position: relative;
        display: block;
        z-index: 105;
        background: #F1EAE0;
        box-shadow: 0px 5px 5px 0px rgba(35,31,32,0.17);
    }
    .block__install .inner {
        display: flex;
        align-items: center;
    }
    .block__install .inner .close {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 5px;
        top: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .block__install .inner .close img {
        width: 15px;
        height: 15px;
    }
    .block__install .inner .logo img {
        width: 50px;
        height: 50px;
    }
    .block__install .inner .name {
        padding-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .block__install .inner .name span {
        display: block;
    }
    .block__install .inner .name span.title {
        font-size: 22px;
        line-height: 1;
        font-weight: 400;
    }
    .block__install .inner .description {
        font-size: 14px;
        opacity: .5;
        line-height: 1;
        padding-top: 5px;
    }
    .block__install .inner .cta {
        margin-left: auto;
    }
    .block__install .inner .btn-outline {
        font-size: 16px;
        padding: 10px 48px;
    }
    .block__install.is-active {
        opacity: 1;
        display: block!important;
        top: 0;
        transition: all ease 0.3s;
    }
}
@media (max-width: 768px) {
    .block__install {
        padding: 5px 35px 5px 5px;
    }
    .block__install .inner .logo img {
        width: 43px;
        height: 43px;
    }
    .block__install .inner .name span.title {
        font-size: 16px;
    }
    .block__install .inner .description {
        font-size: 13px;
    }
    .block__install .inner .btn-outline {
        padding: 8px 22px;
        font-size: 12px;
    }
}
@media (max-width: 400px) {

    .block__install .inner .name span.title {
        font-size: 12px;
    }
    .block__install .inner .description {
        font-size: 10px;
    }
    .block__install .inner .btn-outline {
        padding: 5px 16px;
    }
}


.gfield--type-honeypot{
    display: none!important;
}

.sf-field-post-meta-pediatrician .sf-option-active, .page__filter form .sf-field-post-meta-pediatrician li{
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
}
.sf-input-checkbox {
    width: 24px;
    height: 24px;
    border: 0.5px solid #BEBEBE;
}

.sf-input-checkbox:before {
    width: 15px;
    height: 11px;
    background-color: #FFFFFF;
    clip-path: polygon( 34.539% 76.527%,88.557% 0%,94.318% 10.014%,34.539% 94.702%,5.67% 53.804%,12.084% 44.717%,34.539% 76.527% );
}
.sf-input-checkbox:checked{
    background: #00305F;
    border: 1px solid #00305F;
}

.sf-field-post-meta-pediatrician{
    position: absolute;
    bottom: 25px;
    left: 40px;
    flex: 0 0 100%;
    width: 100%;
}

.archive-specialisty .page__filter{
    padding: 32px 40px 65px;
}

@media (max-width: 992px) {
    .archive-specialisty .page__filter{
        padding: 32px 40px;
    }
    .sf-field-post-meta-pediatrician{
        position: relative;
        bottom: auto;
        left: auto;
        padding-bottom: 20px!important;
    }
    .page__filter form .sf-field-post-meta-pediatrician li{
        padding-bottom: 0!important;
    }

}

.load-more-ajax, .promo-archive .btn-style-2.load-more-ajax {
    margin: 0 auto;
    display: block;
    padding: 10px 40px 10px;
    font-size: 18px;
}

#gform_confirmation_message_21{
    background-color: white;
    padding: 20px 10px;
}

/* box-doctors */
.box-wrapper{
    display: flex;
}
.box-doctors{
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 3px;
    margin-bottom: 30px;
    width: 100%;
}
.box-wrapper.hidden {
    display: none;
}
.box-doctors .box__left-part, .box-doctors .box__right-part{
    flex: 0 0 50%;
    width: 50%;
}
.box-doctors .box__right-part{
    padding: 20px 25px;
}
.box-doctors .box__right-part h3{
    text-transform: capitalize;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}
.box-doctors .box__left-part{
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}
.box-doctors .box__left-part .box__content{
    padding: 24px 20px;
    flex-direction: column;
    display: flex;
    height: 100%;
    justify-content: space-between;
}
.box-doctors .box__left-part .image{
    background: #D8D8D8;
    border-radius: 3px 3px 0 0;
    height: 230px;
}

.box-doctors .box__left-part .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.box-doctors .link{
    padding-top: 14px;
    padding-bottom: 10px;
    text-align: center;
}
.box-doctors .btn-style-2{
    display: block;
    text-align: center;
    font-size: 14px;
}
.box-doctors li{
    position: relative;
    padding-bottom: 16px;
    line-height: 150%;
    display: block;
}
.box-doctors li:before{
    content: "";
    position: relative;
    width: 13px;
    flex: 0 0 13px;
    height: 13px;
    background: url(../images/icons/icons.svg#icon-list) no-repeat;
    display: inline-block;
    margin-right: 7px;
}
.box-doctors .box__title{
    font-weight: bold;
    padding-bottom: 10px;
    color: #231F20;
    display: block;
}

.box-doctors .box__position{
}

.box-doctors .bottom-content__border{
    border-top: 1px solid #00305f70;
    padding-top: 20px;
    font-size: 14px;
}
.box-doctors .box__additional{
    color: #231f20a6;
    margin-bottom: 10px;
}
.box-doctors .box__price span{
    font-weight: bold;
}
@media (max-width: 992px) {
    .box-doctors .box__left-part{
        padding-right: 0;
    }
    .box-doctors .box__left-part, .box-doctors .box__right-part{
        flex: 0 0 100%;
        width: 100%;
    }
    .box-doctors .box__right-part h3{
        font-size: 16px;
        margin-bottom: 25px;
    }
    .box-doctors .box__left-part .box__content{
        padding: 20px 20px 5px;
    }
    .box-doctors .box__right-part{
        padding: 0 20px 20px;
    }
    .box-doctors .link{
        padding: 20px 0;
    }
}
/* end box-doctors */

.archive-programs__first-section h1{
    margin-bottom: 25px;
}

.single-service__first-section-banner{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    margin-top: 40px;
    border-radius: 3px;
    overflow: hidden;
}
.single-service__first-section-banner:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
}
.banner-img-block{
    flex-grow: 1;
}
.single-service__first-section-banner .content-block{
    padding: 20px;
    position: relative;
    z-index: 1;
}
.banner_section .single-service .disclaimer{
    padding: 15px;
}
.banner_section .single-service .disclaimer p{
    margin-bottom: 0;
    text-align: center;
}

.banner_section .single-service__price{
    font-weight: 500;
}
.banner_section--h1{
    padding-top: 40px;
}

.education_pdf{
    position: absolute;
    right: 35px;
    bottom: 27px;
    color: #00305F;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .education_pdf {
        position: relative;
        right: auto;
        bottom: auto;
        padding-top: 20px;
        display: block;
    }
    .single-service__first-section-banner{
        flex-direction: column;
    }
    .banner-img-block{
        display: none;
    }
    .single-service__first-section-banner .content-block{
        width: 100%;
    }
    .single-service__first-section-banner:after{
        background: linear-gradient(0deg, rgba(255,255,255,1) 1%, rgba(255,255,255,1) 25%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 100%);
    }

    .banner_section .btn{
        margin-top: 0;
        width: 100%;
    }


}


/*gallery page*/

.gallery {

}

.gallery .gallery-group {
    display: flex;
    margin: 0 -20px 15px;

}

.gallery .gallery-group .vertical-img {
    flex: 0 0 40%;
    width: 40%;
    padding: 0 20px;
    height: 520px;
}

.gallery .gallery-group .vertical-img img{
    height: 100%;
}

.gallery .gallery-group .vertical-img a{
  padding-bottom: 40px;
  display: block;
  height: 100%;
}

.gallery .gallery-group .columns {
    display: flex;
    flex-wrap: wrap;
}

.gallery .gallery-group .columns .horizontal-img {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 20px;
    height: 260px;
    overflow: hidden;
}

.gallery .gallery-group .columns .horizontal-img a{
  padding-bottom: 40px;
  display: block;
  height: 100%;
}
.gallery .gallery-group .columns .horizontal-img img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;

}



.gallery .gallery-group.horizontal-group{
    flex-direction: row-reverse;

}

.gallery .gallery-group.horizontal-group .vertical-img{
   flex: 0 0 60%;
}
.gallery-group.horizontal-group .vertical-img img{
    object-fit: cover;
}

@media (max-width: 992px) {
    .gallery .gallery-group{
        flex-wrap: wrap;
    }
    .gallery .gallery-group .vertical-img {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 20px;
        height: 520px;
    }

    .gallery .gallery-group.horizontal-group .vertical-img {
        flex: 0 0 100%;
    }

}

@media (max-width: 768px) {
    .gallery .gallery-group .columns .horizontal-img {
        height: 200px;
        padding: 0 10px;
    }
    .gallery .gallery-group .columns .horizontal-img a {
        padding-bottom: 20px;
    }
    .gallery .gallery-group .vertical-img a {
        padding-bottom: 20px;
    }
    .gallery .gallery-group {
        display: flex;
        margin: 0 -10px 10px;
    }

    .gallery .gallery-group .vertical-img {
        padding: 0 10px;
    }
    .gallery-group.horizontal-group .vertical-img {
        height: 200px;
    }
}

.section_iso{
    background-color: white;
    padding: 60px 0;
    margin-top: 40px;
}
.section_iso .section_title{
    padding-bottom: 10px;
}
.section_iso .section_description{
    padding-top: 20px;
}
.section_iso .section_text{
    padding: 20px 0;
}
.section_iso .doc-icon{
    width: 70px;
        margin-right: 20px;
}

.section_iso a{
        display: flex;
    align-items: center;
    color: #231F20;
    text-decoration: underline;
}

.section_iso .doc-list{
    display: flex;
    flex-wrap: wrap;
}
.section_iso .doc-item{
    flex: 0 0 50%;
    width: 50%;
    padding-right: 20px;
}
.section_iso .doc-item:not(:last-child){
    padding-bottom: 20px;
}

.page-iso .page-title{
    margin-bottom: 40px;
}

.single-page__anchor{
    background-color: #00305F;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.single-page__anchor ul{
    display: flex;
    justify-content: flex-start;

}
.single-page__anchor a{
       padding: 11px 20px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: white;
}

@media (max-width: 768px) {
    .section_iso .doc-item{
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0;
}
.section_iso .section_title h2{
    margin: 0;
}

.section_iso{
    background-color: white;
    padding: 40px 0;
    margin-top: 20px;
}
}

.ui-datepicker-month option, .ui-datepicker-year option{
    color: #00305F;
}

.ui-datepicker-month, .ui-datepicker-year{
padding: 10px;
}

.swiper-button-lock{
    display: none!important;
}