/*
    Structure:
    • Custom fonts
    • Main defaults
    • Tech
    • Common
    • Forms
    • Popups
    • Header & Footer
    • Content
    • Animation
    • Adaptation
*/

/* Custom fonts */
@font-face {
    font-family: AA-Stetica;
    font-style: normal;
    font-weight: 400;
    src: url(/system/fonts/AA-Stetica-Regular.woff2) format('woff2');
}
@font-face {
    font-family: AA-Stetica;
    font-style: italic;
    font-weight: 400;
    src: url(/system/fonts/AA-Stetica-Italic.woff2) format('woff2');
}
@font-face {
    font-family: AA-Stetica;
    font-style: normal;
    font-weight: 500;
    src: url(/system/fonts/AA-Stetica-Medium.woff2) format('woff2');
}
@font-face {
    font-family: AA-Stetica;
    font-style: italic;
    font-weight: 500;
    src: url(/system/fonts/AA-Stetica-Medium-Italic.woff2) format('woff2');
}
@font-face {
    font-family: AA-Stetica;
    font-style: normal;
    font-weight: 600;
    src: url(/system/fonts/AA-Stetica-Bold.woff2) format('woff2');
}
@font-face {
    font-family: AA-Stetica;
    font-style: normal;
    font-weight: 700;
    src: url(/system/fonts/AA-Stetica-Black.woff2) format('woff2');
}

/* Main defaults */
* {
    font-size: 100%;
    outline: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
:root {
    --black: #1f1f1f;
    --blue: rgb(0, 92, 218); /* #005cda */
    --lightblue: #f6f9fc;
    --green: #00bb1d;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--lightblue);
}
::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9d9d9d; 
}
::selection {
    background: var(--blue);
    color: #fff;
    text-shadow: none;
}
html, body {
    min-height: 100vh;
}
body, input, textarea, select, button {
    background: #fff;
    color: var(--black);
    font: 400 16px/110% AA-Stetica, helvetica neue, arial, sans-serif, tahoma, verdana;
    cursor: default;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
body {
    display: flex;
    flex-direction: column;
}
img {
    border: none;
    display: block;
    user-select: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
video {
    width: 100%;
    border-radius: 8px;
    display: block;
    user-select: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
em {
    color: var(--blue);
    font-style: normal;
    font-weight: 600;
}
address {
    font-style: normal;
}
b, strong {
    font-weight: 600;
}
blockquote, cite, i {
    font-style: italic;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Tech */
.grecaptcha-badge {
    right: auto !important;
    left: -500px;
}
.bot {
    background: #fff url(/media/images/bot_bg.png) 50% 50% no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    box-sizing: border-box;
}
.bot .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}
.bot__inner {
    background: #fff;
    width: 780px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}
.bot__logo {
    width: 240px;
    margin-bottom: 40px;
}
.bot__checkBlock {
    background-color: #fafafa;
    font-size: 18px;
    line-height: 20px;
    border: 1px #d7d7d7 solid;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.2s ease;
}
.bot__label {
    width: max-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bot .label {
    display: inline-block;
    margin-top: 12px;
    padding: 0 0 0 40px;
}
.bot .checkbox + .label__descr:before {
    width: 32px;
    height: 32px;
    top: -6px;
    left: 0;
}
.bot .checkbox:checked + .label__descr:after {
    width: 20px;
    height: 14px;
    top: 11px;
    left: 7px;
}
.cookie {
    background: #fff;
    width: 350px;
    color: #2b2f33;
    border-radius: 8px;
    display: none;
    position: fixed;
    bottom: 92px;
    left: 16px;
    z-index: 15;
    padding: 16px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.cookie.active {
    display: block;
}
.cookie .button__descr {
    height: 40px;
    padding: 0 32px;
}
.cookie .button-white .button__descr {
    text-transform: none;
    border-color: #d3d9e0;
}

/* Common */
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 110%;
    letter-spacing: -0.5px;
    text-align: left;
    padding: 0;
    transition: all 0.2s ease;
}
.h1, .h2, .h3, .h4 {
    font-weight: 600;
}
.h5, .h6 {
    font-weight: 500;
}
.h1:not(:last-child),
.h2:not(:last-child) {
    margin-bottom: 32px;
}
.h3:not(:last-child),
.h4:not(:last-child) {
    margin-bottom: 16px;
}
.h5:not(:last-child),
.h6:not(:last-child) {
    margin-bottom: 8px;
}
.h1-center,
.h2-center,
.h3-center,
.h4-center,
.h5-center,
.h6-center {
    text-align: center;
}
.h1 {
    font-size: 38px;
    margin-top: -4px;
}
.h2 {
    font-size: 32px;
    margin-top: -4px;
}
.h3 {
    font-size: 26px;
}
.h4 {
    font-size: 20px;
}
.h5 {
    font-size: 18px;
}
.h6 {
    font-weight: 500;
    font-size: 16px;
}
.h1 em {
    font-weight: 600;
}
.link {
    color: var(--blue);
    font-weight: 500;
    border-bottom: 1px var(--blue) solid;
    cursor: pointer;
    transition: all 0.2s ease;
}
.link:hover {
    border-color: transparent;
}
.link-v2 {
    color: var(--blue);
    border-bottom: 1px transparent solid;
}
.link-v2:hover {
    border-color: var(--blue);
}
.phone {
    white-space: nowrap;
}
.b-500 {
    font-weight: 500;
}
.text:not(:last-child) {
    margin-bottom: 16px;
}
.text p:not(:last-child),
.text ul:not(:last-child),
.text ol:not(:last-child) {
    margin-bottom: 16px;
}
.text ul,
.text ol {
    list-style-type: none;
}
.text ol {
    counter-reset: num;
}
.text li {
    position: relative;
}
.text li:not(:last-child) {
    margin-bottom: 8px;
}
.text ul > li {
    padding-left: 12px;
}
.text ul > li:before {
    content: '';
    background: var(--blue);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    transform: translateY(-50%);
}
.text ol > li {
    padding-left: 24px;
}
.text ol > li:before {
    position: absolute;
    left: 0;
    content: counter(num) '.';
    counter-increment: num;
}
.text .list-ol-blue li:before {
    color: var(--blue);
    font-weight: 600;
}
.text .list-ol-blue-v2:not(:last-child) {
    margin-bottom: 4px;
}
.text .list-ol-step {
    counter-reset: ol-step-counter;
}
.text .list-ol-step li {
    padding-left: 66px;
}
.text .list-ol-step li:before {
    color: var(--blue);
    font-weight: 600;
    content: 'Этап ' counter(ol-step-counter);
    counter-increment: ol-step-counter;
}
.text .list-blue-1:before {
    content: '1.';
}
.text .list-blue-2:before {
    content: '2.';
}
.text .list-blue-3:before {
    content: '3.';
}
.text .list-blue-4:before {
    content: '4.';
}
.text .list-blue-5:before {
    content: '5.';
}
.text .list-checked li {
    padding-left: 24px;
}
.text .list-checked li:before {
    content: '';
    background-color: var(--blue);
    mask: url(/media/images/check.svg) center no-repeat;
    mask-size: contain;
    -webkit-mask: url(/media/images/check.svg) center no-repeat;
    -webkit-mask-size: contain;
    background-size: 100% 100%;
    min-width: 16px;
    min-height: 16px;
    position: absolute;
    top: 6px;
    left: 0;
    margin-top: 3px;
}
.supWrapper {
    white-space: nowrap;
    padding-right: 8px;
}
.text sup {
    font-size: 70%;
    line-height: 1;
}
.blockquote:not(:last-child) {
    margin-bottom: 24px;
}
.buttons {
    display: flex;
    gap: 8px;
}
.button {
    border-radius: 8px;
    position: relative;
}
.button__descr {
    background: var(--blue);
    width: fit-content;
    height: 56px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    border: 1px transparent solid;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 56px;
    box-sizing: border-box;
    user-select: none;
    transition: background 0.2s ease, padding 0.2s ease;
}
.button__descr:hover {
    background: rgba(0, 92, 218, 0.75);
}
.button__descr:active {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.3) inset;
}
.button-white .button__descr {
    background: rgb(255, 255, 255);
    color: var(--blue);
    line-height: 17px;
    text-transform: uppercase;
}
.button-white .button__descr:hover {
    background: rgba(255, 255, 255, 0.9);
}
.wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 60px 40px;
    box-sizing: border-box;
}
.section:not(:last-child) {
    margin-bottom: 100px;
}
.bg-azure .wrapper {
    margin-bottom: 40px;
}

/* Forms */
input, select {
    width: 100%;
    height: 56px;
    border: 1px #d3d9e0 solid;
    border-radius: 8px;
    box-sizing: border-box;
}
select {
    font-size: 14px;
    height: 48px;
}
.form {
    width: 420px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}
.form .h4 {
    background: var(--blue);
    color: #fff;
    border-radius: 8px 8px 0 0;
    margin: 0;
    padding: 16px 32px;
}
.form .h4 br {
    display: block !important;
}
.form-main .h4 {
    font-size: 24px;
    line-height: 28px;
}
.form-main .h4 br {
    display: none !important;
}
.form-main .button {
    width: 100% !important;
}
.form__inner {
    position: relative;
}
.form__content {
    background: #fff;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 32px;
    transition: all 0.2s ease;
}
.field {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.field__placeholder,
.form .legend {
    font-weight: 500;
    margin-bottom: 4px;
}
.field-required .field__placeholder:after {
    content: ' *';
    color: #e90000;
    font-weight: 400;
}
.field__text {
    background: #fff;
    width: 100%;
    height: 48px;
    font-size: 14px;
    line-height: 16px;
    border: 1px #d3d9e0 solid;
    border-radius: 8px;
    padding: 0 16px;
    box-sizing: border-box;
    transition: background 0.2s ease, border 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}
.field__text:hover {
    border-color: #c1c1c1;
}
.field__text:focus {
    border-color: #474747;
}
.field-error .field__text {
    border-color: #e90000;
}
.fieldset {
    width: 100%;
    border: none;
}
.label {
    border-radius: 4px;
    cursor: pointer;
    display: block;
    position: relative;
    padding: 9px 0 8px 36px;
    user-select: none;
    transition: all 0.2s ease;
}
.label.disabled {
    background: inherit !important;
    cursor: default;
}
.label:hover {
    background: var(--lightblue);
}
.checkbox, .radio {
    display: none;
}
.checkbox + .label__descr:before,
.radio + .label__descr:before {
    content: '';
    background: #fff;
    width: 20px;
    height: 20px;
    border: 1px #d3d9e0 solid;
    position: absolute;
    top: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
.checkbox + .label__descr:before {
    border-radius: 4px;
    left: 11px;
    box-sizing: border-box;
}
.radio + .label__descr:before {
    border-radius: 50%;
    left: 11px;
}
.checkbox:checked + .label__descr:before,
.radio:checked + .label__descr:before {
    border-width: 2px;
    border-color: var(--blue);
}
.checkbox:checked + .label__descr:after,
.radio:checked + .label__descr:after {
    content: '';
    position: absolute;
    top: 16px;
    left: 15px;
    transition: all 0.2s ease;
}
.checkbox:checked + .label__descr:after {
    background-color: var(--blue);
    mask: url(/media/images/checkbox.svg) center no-repeat;
    mask-size: contain;
    -webkit-mask: url(/media/images/checkbox.svg) center no-repeat;
    -webkit-mask-size: contain;
    background-size: 100% 100%;
    width: 13px;
    height: 9px;
}
.radio:checked + .label__descr:after {
    background: var(--blue);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.checkbox:disabled + .label__descr:before,
.radio:disabled + .label__descr:before {
    border-color: #dcdcdc;
}
.checkbox:disabled + .label__descr:after {
    filter: invert(75.8%);
}
.radio:disabled + .label__descr:after {
    background: #dcdcdc;
}
.form__note {
    font-size: 11px;
    line-height: 14px;
    margin-top: -8px;
}
.form__note .checkbox + .label__descr:before {
    top: 5px;
}
.form__note .checkbox:checked + .label__descr:after {
    top: 15px;
}
.form__result {
    background: #fff;
    border-radius: 0 0 8px 8px;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 32px;
}
.form__resultInner {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.form__resultInner:before {
    content: '';
    background-color: var(--blue);
    mask: url(/media/images/check.svg) center no-repeat;
    mask-size: contain;
    -webkit-mask: url(/media/images/check.svg) center no-repeat;
    -webkit-mask-size: contain;
    background-size: 100% 100%;
    width: 48px;
    height: 48px;
    display: block;
}
.field__text[disabled],
.field__text[readonly] {
    background: #dcdcdc;
    color: #adadad;
    text-shadow: 1px 1px 1px #fff;
    cursor: not-allowed;
    border-color: #c1c1c1;
}
.form .button {
    background: none;
    width: 100%;
    border: none;
    display: block;
    align-items: inherit;
    justify-content: inherit;
    padding: 0;
}
.form .button__descr {
    width: auto;
}
.form .button[disabled] {
    background: #c1c1c1;
    height: 56px;
    border-color: transparent;
    cursor: not-allowed;
}
.form .button[disabled]:active {
    border-color: transparent;
}
.form .button[disabled]:after {
    content: '';
    background: url(/media/images/spinner.svg) 50% 50% no-repeat;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form .button[disabled] .button__descr {
    cursor: not-allowed;
    opacity: 0;
}
.form .button.by-checkbox[disabled]:after {
    display: none;
}
.form .button.by-checkbox[disabled] .button__descr {
    background: #c1c1c1;
    border-color: transparent;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 1;
}
.form-main {
    width: 100%;
}
.form__gift {
    background: #fff;
    height: 40px;
    color: var(--blue);
    font-weight: 600;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px 0 14px;
}
.form-main .form__content {
    flex-direction: row;
    align-items: flex-end;
}
.form-main .field {
    width: calc(50% - 8px);
}

/* Popups */
.popup,
.popup__closeArea {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.popup {
    overflow: hidden;
    display: none;
    z-index: 20;
}
.popup__closeArea {
    background: rgba(0, 0, 0, 0.75);
}
.popup__inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 16px 0;
    box-sizing: border-box;
}
.popup__closeIcon {
    background: #dcdcdc;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: -32px;
    transition: all 0.2s ease;
}
.popup__closeIcon:before {
    content: '';
    background-image: url(/media/images/close.svg);
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.2s ease;
}
.popup__closeIcon:hover {
    transform: rotate(90deg);
}
.popup .form {
    display: none;
}
.popup .custom-select__input {
    display: none;
}

/* Header & Footer */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.header .wrapper {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.header__topLine .wrapper {
    height: 96px;
}
.logo {
    width: 240px;
    margin-right: 40px;
    transition: all 0.2s ease;
}
.logo__img {
    width: 100%;
}
.logo__img-desktop:hover {
    opacity: 0.75;
}
.logo__img-mob {
    display: none;
}
.header__labels {
    font-size: 13px;
    line-height: 13px;
    display: flex;
    flex-wrap: wrap;
    flex: auto;
    gap: 4px;
}
.header__support {
    background: rgba(0, 0, 0, 0.04);
    height: 32px;
    white-space: nowrap;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 12px 0 30px;
    user-select: none;
    transition: all 0.2s ease;
}
.header__support:before {
    content: '';
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}
.header__support:before {
    background: url(/media/images/header_support.svg);
}
.header__misc {
    display: flex;
    margin-left: 16px;
}
.header__contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 16px;
}
.header__phone {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    margin-bottom: 4px;
}
.header__email {
    color: var(--blue);
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
}
.header .button__descr {
    height: 48px;
    padding: 0 32px;
}
.header__bottomLine {
    border-top: 1px rgba(0, 0, 0, 0.08) solid;
    box-sizing: border-box;
}
.header__bottomLine .wrapper {
    height: 56px;
}
.nav {
    width: 100%;
    user-select: none;
}
.nav__list {
    display: flex;
    justify-content: center;
    gap: 36px;
}
.nav__item {
    position: relative;
}
.nav__span,
.nav__span-active,
.nav__link,
.nav__link-arrowed,
.nav__link-arrowed-active {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    display: block;
    position: relative;
    padding: 8px 0;
    transition: all 0.2s ease;
}
.nav__span,
.nav__link-arrowed {
    padding-right: 16px;
}
.nav__span:hover,
.nav__span-active,
.nav__span.active,
.nav__link-arrowed-active,
.nav__link-arrowed.active,
.nav__span-sub {
    color: var(--blue);
}
.nav__span:hover:before,
.nav__span.active:before,
.nav__link-arrowed:hover:before,
.nav__link-arrowed.active:before {
    content: '';
    width: 100%;
    height: 23px;
    position: absolute;
    bottom: -14px;
    left: 0;
}
.nav__span:after,
.nav__link-arrowed:after {
    content: '';
    background-color: var(--black);
    mask: url(/media/images/arrow.svg) center no-repeat;
    mask-size: contain;
    -webkit-mask: url(/media/images/arrow.svg) center no-repeat;
    -webkit-mask-size: contain;
    background-size: 100% 100%;
    width: 10px;
    height: 7px;
    position: absolute;
    top: 12px;
    right: 0;
    transition: all 0.2s ease;
}
.nav__span-active:after,
.nav__span.active:after,
.nav__link-arrowed-active:after,
.nav__link-arrowed.active:after {
    background-color: var(--blue);
}
.nav__span.active:after,
.nav__link-arrowed.active:after {
    transform: rotate(180deg);
}
.nav__link:hover {
    color: var(--blue);
}
.nav__list-sub {
    background: #fff;
    width: max-content;
    border-radius: 0 0 4px 4px;
    display: none;
    position: absolute;
    top: 43px;
    left: -16px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.nav__item:nth-last-child(2) .nav__list-sub {
    left: auto;
    right: -16px;
}
.nav__list-sub:before {
    content: '';
    width: 100%;
    height: 23px;
    position: absolute;
    top: -23px;
    left: 0;
}
.nav__item-sub {
    transition: margin 0.2s ease;
}
.nav__item-sub:last-child .nav__link-sub,
.nav__item-sub:last-child .nav__span-sub {
    border-radius: 0 0 4px 4px;
}
.nav__link-sub,
.nav__span-sub {
    font-size: 13px;
    line-height: 13px;
    display: block;
    padding: 8px 16px;
}
.nav__span-sub {
    background: rgba(0, 0, 0, 0.04);
}
.nav__link-sub:hover {
    background: rgba(0, 0, 0, 0.08);
}
.footer {
    background: var(--blue);
    color: #fff;
}
.footer .wrapper {
    padding-bottom: 40px;
}
.footer__row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    transition: all 0.2s ease;
}
.footer__main {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}
.footer__main .text:not(:last-child) {
    margin-bottom: 0;
}
.footer .logo {
    margin-bottom: 16px;
    margin-right: 0;
    filter: invert(1) brightness(1000%);
}
.footer__docsItem {
    position: relative;
    padding-left: 24px;
}
.footer__docsItem:not(:last-child) {
    margin-bottom: 12px;
}
.footer__docsItem:before {
    content: '';
    background: url(/media/images/file_pdf.svg);
    background-size: 100% 100%;
    width: 16px;
    height: 18px;
    position: absolute;
    top: -1px;
    left: 0;
    filter: invert(1);
    transition: all 0.2s ease;
}
.footer__docsLink {
    cursor: pointer;
    border-bottom: 1px #fff solid;
    transition: all 0.2s ease;
}
.footer__docsLink:hover {
    border-color: transparent;
}
.footer__nav {
    box-sizing: border-box;
}
.footer .nav__span {
    font-size: inherit;
    line-height: inherit;
}
.footer .nav__span:before,
.footer .nav__span:after,
.footer .nav__link-arrowed:before,
.footer .nav__link-arrowed:after,
.footer .nav__list-sub:before {
    display: none;
}
.footer .nav__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 0;
}
.footer .nav__item {
    border: none;
}
.footer .nav__link {
    color: inherit;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    border-bottom: 1px transparent solid;
    display: inline;
    padding: 0;
}
.footer .nav__link:hover {
    border-bottom-color: inherit;
}
.footer .nav__span {
    font-weight: 500;
    padding: 0 0 8px !important;
}
.footer .nav__list-sub {
    background: none;
    border-radius: 0;
    position: static;
    top: auto;
    left: auto;
    box-shadow: none;
    display: block;
}
.footer .nav__item-sub {
    position: relative;
    padding-left: 12px;
}
.footer .nav__item-sub:not(:last-child) {
    margin-bottom: 8px;
}
.footer .nav__item-sub:before {
    content: '';
    background: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    transform: translateY(-50%);
}
.footer .nav__link-sub,
.footer .nav__span-sub {
    background: none !important;
    font-size: 14px;
    line-height: 14px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: inline;
    border-radius: 0 !important;
    padding: 0;
}
.footer .nav__link-sub:hover {
    border-bottom-color: transparent;
}
.footer .nav__span:hover,
.footer .nav__span-active,
.footer .nav__span.active,
.footer .nav__link-arrowed-active,
.footer .nav__link-arrowed.active,
.footer .nav__span-sub {
    color: inherit;
}
.footer .nav__link-sub,
.footer .nav__span-sub {
    display: inline;
    padding: 0;
}
.footer__contacts {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__contacts .h6 {
    font-weight: 500;
}
.footer__address {
    display: block;
    position: relative;
    padding-left: 20px;
}
.footer__address:before {
    content: '';
    background: url(/media/images/location.svg);
    background-size: 100% 100%;
    width: 14px;
    height: 16px;
    position: absolute;
    top: -1px;
    left: 0;
    filter: invert(1);
}
.footer__address b {
    font-weight: 500;
}
.footer__days,
.footer__phone {
    position: relative;
    padding-left: 20px;
}
.footer__days:before,
.footer__phone:before {
    content: '';
    background-size: 100% 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 1px;
    left: 0;
    filter: invert(1);
}
.footer__days:before {
    background-image: url(/media/images/worktime.svg);
}
.footer__phone:before {
    background-image: url(/media/images/phone_footer.svg);
}
.footer__descr {
    position: relative;
    padding-left: 20px;
}
.footer__email a {
    position: relative;
    padding-left: 20px;
}
.footer__email a:before {
    content: '';
    background: url(/media/images/email.svg);
    background-size: 100% 100%;
    width: 14px;
    height: 10px;
    position: absolute;
    top: 2px;
    left: 0;
    filter: invert(1);
}
.soc {
    display: flex;
    gap: 8px;
}
.soc__link {
    background-color: rgba(0, 0, 0, 0.2);
    background-position: 50% 50%;
    background-size: 100% 100%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    transition: all 0.2s ease;
}
.soc__link-vk {
    background-image: url(/media/images/soc_vk.svg);
}
.soc__link-rt {
    background-image: url(/media/images/soc_rt.svg);
}
.soc__link:hover {
    background-size: 120% 120%;
}
.soc__link-vk:hover {
    background-color: #5181b8;
}
.soc__link-rt:hover {
    background-color: #160974;
}
.footer__policy {
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    padding-right: 56px;
    opacity: 0.4;
}
.footer__policy .text p:not(:last-child) {
    margin-bottom: 8px;
}
.footer__toTop {
    background: rgba(0, 92, 218, 0.4);
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.footer__toTop:before,
.footer__toTop:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
}
.footer__toTop:before {
    width: 10px;
    height: 10px;
    border: 2px #fff solid;
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
}
.footer__toTop:after {
    background: #fff;
    width: 2px;
    height: 17px;
    transform: translateX(-50%);
}
.footer__toTop:hover {
    background: var(--blue);
    box-shadow: 0 0 4px 4px rgba(255, 255, 255, 0.8);
}

/* Content */
.main {
    flex-grow: 1;
}
.breadcrumbs {
/*    display: flex;*/
    display: none;
    align-items: flex-start;
    margin: -20px 0 40px;
}
.breadcrumbs__item {
    color: #636363;
    font-size: 14px;
    line-height: 18px;
    display: flex;
}
.breadcrumbs__item:not(:last-child) {
    margin-right: 6px;
}
.breadcrumbs__item:not(:first-child):before {
    content: '/';
    margin-right: 4px;
}
.breadcrumbs__link {
    position: relative;
}
.breadcrumbs__link:before {
    content: '';
    background: #636363;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s ease;
}
.breadcrumbs__link:hover:before {
    width: 100%;
}
.breadcrumbs__item:last-child .breadcrumbs__text {
    color: var(--blue);
}
.bg-azure {
    background-color: var(--lightblue);
    transition: all 0.2s ease;
}
.imgWrapper,
.img {
    border-radius: 8px;
}
.imgWrapper {
    background: var(--lightblue);
    padding: 16px;
}
.imgWrapper:not(:last-child) {
    margin-bottom: 40px;
}
.img {
    width: 100%;
}
.imgWrapper__caption {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-top: 8px;
}
.head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.head__col {
    width: calc(50% - 12px);
    box-sizing: border-box;
    transition: width 0.2s ease;
}
.head__img {
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.head__img-mob {
    display: none;
}
.head__video {
    border: 1px #ebebeb solid;
    object-fit: cover;
}
.head__descr {
    font-size: 13px;
    margin-top: 8px;
}
.head .button {
    width: fit-content;
}
.headIcons {
    display: flex;
    gap: 24px;
}
.headIcons:not(:last-child) {
    margin-bottom: 24px;
}
.headIcons__item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.2s ease;
}
.headIcons__icon {
    width: 40px;
    object-fit: contain;
}
.faq__item {
    font-size: 16px;
    line-height: 22px;
    position: relative;
}
.faq__item:not(:last-child) {
    margin-bottom: 4px;
}
.faq__question {
    background: var(--lightblue);
    font-weight: 500;
    border: 1px #d3d9e0 solid;
    border-radius: 8px;
    cursor: pointer;
    padding: 16px 54px 16px 20px;
    box-sizing: border-box;
    user-select: none;
    transition: all 0.2s ease;
}
.faq__question:hover {
    background: rgb(250, 250, 250, 0.5);
}
.faq__question h5,
.faq__question p {
    margin: 0 !important;
}
.faq__arrow {
    width: 32px;
    height: 32px;
    border: 1px var(--blue) solid;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: all 0.2s ease;
}
.faq__arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 2px var(--blue) solid;
    border-top: none;
    border-right: none;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    transition: all 0.2s ease;
}
.faq__answer {
    display: none;
    padding: 20px 20px 24px;
}
.faq__answer p:not(:last-child) {
    margin-bottom: 8px;
}
.faq__item.active .faq__question {
    border-color: var(--blue);
}
.faq__item.active .faq__arrow {
    background: var(--blue);
}
.faq__item.active .faq__arrow:before {
    border-color: #fff;
    top: 13px;
    transform: translateX(-50%) rotate(135deg);
}
.partners {
    margin-bottom: 40px;
}
.partners__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.partners__item {
    background: #fff;
    width: calc(25% - 12px);
    font-weight: 500;
    border: 1px #d7d7d7 solid;
    border-radius: 8px;
    overflow: hidden;
    padding: 24px 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.partners__img {
    width: 100%;
    margin: auto auto 16px;
}
.partners__name {
    text-align: center;
}
.request {
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    gap: 32px;
    position: relative;
    padding: 48px 60px 48px 140px;
    transition: all 0.2s ease;
}
.request:before {
    content: '';
    background-image: url(/media/images/request_dialog.svg);
    background-size: 100% 100%;
    position: absolute;
    width: 70px;
    height: 52px;
    top: 48px;
    left: 36px;
    transition: all 0.2s ease;
}
.request-note:before {
    background-image: url(/media/images/request_note.svg);
}
.request .text {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    display: flex;
    align-items: center;
    flex: auto;
    margin: 0;
}
.request__notice {
    font-weight: 400;
    font-size: 12px;
    display: block;
}
.scheme__row {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.scheme__col {
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scheme__col:nth-child(2) {
    width: 44%;
}
.scheme__imgWrapper {
    width: fit-content;
    position: relative;
    margin: auto;
}
.scheme__img {
    width: 415px;
    min-width: 415px;
}
.scheme-nums__item {
    background: var(--blue);
    width: 24px;
    height: 24px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50%;
    cursor: help;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    user-select: none;
    transition: background 0.2s ease;
}
.scheme-nums__item:nth-child(1) {
    top: 170px;
    right: 88px;
}
.scheme-nums__item:nth-child(2) {
    top: 25px;
    left: 132px;
}
.scheme-nums__item:nth-child(3) {
    top: 78px;
    right: 92px;
}
.scheme-nums__item:nth-child(4) {
    top: 251px;
    right: 102px;
}
.scheme-nums__item:nth-child(5) {
    top: 32px;
    right: 146px;
}
.scheme-nums__item:nth-child(6) {
    top: 170px;
    left: 115px;
}
.scheme-nums__item:nth-child(7) {
    top: 248px;
    right: 23px;
}
.scheme-nums__item:hover,
.scheme-nums__item.active {
    background: #eb5757;
}
.scheme .button__descr {
    width: auto;
}
.scheme .text .button {
    display: none;
}
.scheme-descr {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.scheme-descr__item {
    background: rgba(0, 0, 0, 0.04);
    width: 132px;
    height: 132px;
    border: 1px transparent solid;
    border-radius: 8px;
    cursor: help;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.scheme-descr__item.active {
    border-color: var(--blue);
}
.scheme-descr__item:before {
    content: '';
    background-size: 100% 100%;
    width: 56px;
    height: 56px;
    display: block;
    transition: all 0.2s ease;
}
.scheme-descr__item:nth-child(1):before {
    background-image: url(/media/images/sections/index/terminal_scheme_1.svg);
}
.scheme-descr__item:nth-child(2):before {
    background-image: url(/media/images/sections/index/terminal_scheme_2.svg);
}
.scheme-descr__item:nth-child(3):before {
    background-image: url(/media/images/sections/index/terminal_scheme_3.svg);
}
.scheme-descr__item:nth-child(4):before {
    background-image: url(/media/images/sections/index/terminal_scheme_4.svg);
}
.scheme-descr__item:nth-child(5):before {
    background-image: url(/media/images/sections/index/terminal_scheme_5.svg);
}
.scheme-descr__item:nth-child(6):before {
    background-image: url(/media/images/sections/index/terminal_scheme_6.svg);
}
.scheme-descr__item:nth-child(7):before {
    background-image: url(/media/images/sections/index/terminal_scheme_7.svg);
}
.scheme-descr__notice {
    background: #fff;
    width: max-content;
    font-size: 14px;
    line-height: 16px;
    border: 1px rgba(0, 0, 0, 0.1) solid;
    border-radius: 8px;
    cursor: default;
    display: none;
    position: absolute;
    top: -48px;
    padding: 11px 16px 12px;
    opacity: 0;
}
.scheme-descr__item:nth-child(1) .scheme-descr__notice,
.scheme-descr__item:nth-child(2) .scheme-descr__notice,
.scheme-descr__item:nth-child(3) .scheme-descr__notice,
.scheme-descr__item:nth-child(4) .scheme-descr__notice {
    left: -1px;
}
.scheme-descr__item:nth-child(5) .scheme-descr__notice,
.scheme-descr__item:nth-child(6) .scheme-descr__notice,
.scheme-descr__item:nth-child(7) .scheme-descr__notice {
    right: -1px;
}
.scheme-descr__notice:after {
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
}
.scheme-descr__notice.active {
    top: -68px;
    z-index: 2;
    opacity: 1;
}
.informer {
    background: var(--blue);
    color: #fff;
}
.informer .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: -16px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.informer .wrapper:before {
    content: '';
    background-color: #fff;
    mask: url(/media/images/attention.svg) no-repeat;
    mask-size: contain;
    -webkit-mask: url(/media/images/attention.svg) no-repeat;
    -webkit-mask-size: contain;
    background-size: 100% 100%;
    min-width: 32px;
    width: 32px;
    height: 32px;
    display: block;
    transition: all 0.2s ease;
}
.informer em {
    color: #fff;
}
.head-index .head__col:first-of-type {
    width: calc(100% - 624px);
}
.head-index .head__col:last-of-type {
    width: 600px;
}
.head-index .h3:not(:last-child) {
    margin-bottom: 32px;
}
.head-index__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.head-index__item {
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.2s ease;
}
.head-index__img:before {
    width: 48px;
    height: 48px;
}
.head-index__text {
    font-size: 14px;
    line-height: 18px;
    border-top: 1px #d3d9e0 solid;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-top: 32px;
    padding-top: 32px;
    transition: all 0.2s ease;
}
.head-index__text p:not(:last-child) {
    margin-bottom: 4px;
}
.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.contacts .h1 {
    width: 100%;
}
.descrList {
    width: calc(37.5% - 16px);
    box-sizing: border-box;
}
.descrList:last-child {
    width: 25%;
}
.descrList__title {
    color: #676767;
    margin-bottom: 8px;
}
.descrList__descr {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
}
.descrList__descr:not(:last-child) {
    margin-bottom: 24px;
}
.descrList .soc {
    gap: 16px;
}
.descrList .soc__link {
    background-color: rgba(0, 0, 0, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 8px;
}
.descrList .soc__link-vk {
    background-color: #5181b8;
}
.descrList .soc__link-rt {
    background-color: #160974;
}
.descrList-requisites .descrList__descr {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}
.contacts .h5,
.contacts__office {
    font-size: 20px;
    line-height: 24px;
}
.contacts .h5 {
    width: calc(37.5% - 16px);
    text-transform: uppercase;
}
.contacts__address,
.contacts__schedule {
    position: relative;
    padding-left: 22px;
    transition: all 0.2s ease;
}
.contacts__address:not(:last-child) {
    margin-bottom: 8px;
}
.contacts__address:before,
.contacts__schedule:before {
    content: '';
    background-color: var(--blue);
    background-size: 100% 100%;
    width: 14px;
    position: absolute;
    left: 0;
}
.contacts__address:before {
    mask: url(/media/images/location.svg);
    -webkit-mask: url(/media/images/location.svg);
    background-size: 100% 100%;
    height: 16px;
    top: 3px;
}
.contacts__address br {
    display: none;
}
.contacts__schedule:before {
    mask: url(/media/images/worktime.svg);
    -webkit-mask: url(/media/images/worktime.svg);
    height: 14px;
    top: 5px;
}
.contacts iframe,
.contacts__map {
    width: 100%;
    height: 60vh;
    max-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.contacts__map > div {
    background: #ccc;
    width: 100%;
    height: 100%;
}
.map__title {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
}
.row {
    display: flex;
    gap: 16px;
}
.row-rev {
    flex-direction: row-reverse;
}
.row__col50 {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.row__col50-azure {
    background: var(--lightblue);
    border-radius: 8px;
    padding: 16px;
}
.row__notice {
    background: var(--lightblue);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    box-sizing: border-box;
}
.row__notice:before {
    content: '';
    background-size: 100% 100%;
    min-width: 40px;
    min-height: 40px;
    display: block;
    transition: all 0.2s ease;
}
.row__img {
    width: 100%;
    border-radius: 8px;
    margin: auto;
}
.partnership-company {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.partnership-company .h5:not(:last-child) {
    margin-bottom: 16px;
}
.partnership-company__item {
    background: var(--lightblue);
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.partnership-company__item:not(:first-child) {
    width: calc(25% - 12px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.partnership-company__item:first-child {
    width: calc(50% - 8px);
}
.partnership-company__img {
    width: 100px;
}
.telemed:not(:last-child) {
    margin-bottom: 16px;
}
.telemed__row {
    background: var(--lightblue);
    font-size: 20px;
    line-height: 120%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.telemed__col {
    width: calc(50% - 8px);
}
.telemed-labeled .telemed__row {
    align-items: inherit;
}
.telemed-labeled .telemed__col {
    display: flex;
    flex-direction: column;
}
.telemed-labeled .text {
    flex: auto;
}
.telemed-labeled .h3 {
    color: var(--blue);
}
.telemed__img {
    width: 100%;
    border-radius: 8px;
}
.howStart {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    counter-reset: howStart;
}
.howStart__item {
    background: var(--lightblue);
    flex: 1 1 calc(25% - (16px * 3 / 4));
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    counter-increment: howStart;
}
.howStart .h5 {
    position: relative;
    margin-bottom: 16px;
    padding-left: 40px;
}
.howStart__item .h5:before {
    content: counter(howStart);
    background: var(--blue);
    width: 32px;
    height: 32px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    left: 0;
}
.howStart .text {
    flex: auto;
    margin-bottom: 16px;
}
.howStart__img {
    width: 100%;
    border-radius: 8px;
}
.howStart-notice {
    max-width: 940px;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.2s ease;
}
.howStart-notice a {
    white-space: nowrap;
}
.howStart-by-2 .howStart__item {
    flex: 1 1 calc(50% - (16px * 1 / 2));
}
.howStart-by-2 .text {
    margin-bottom: 24px !important;
}
.services__list {
    gap: 16px;
    margin-bottom: 16px;
}
.services .slick-list {
    margin: 0 -8px;
}
.services .slick-slide {
    margin: 0 8px;
}
.services .slick-list,
.services .slick-track {
    display: flex;
}
.services__item {
    background: var(--lightblue);
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}
.services__imgWrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}
.services__img {
    width: 100%;
}
.services__link {
    font-weight: 500;
}
.services__link-entire {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.services .text {
    margin: 8px 0 0 !important;
    transition: all 0.2s ease;
}
.services__item:hover .services__img {
    transform: scale(1.1);
}
.equipment {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.equipment br {
    display: none;
}
.equipment__item {
    background: var(--lightblue);
    width: calc(25% - 12px);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}
.equipment__imgW {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}
.equipment__img {
    width: 100%;
}
.equipment__label {
    background: var(--blue);
    height: 24px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border: 1px transparent solid;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    padding: 0 16px;
    user-select: none;
}
.equipment__label-v2 {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue);
}
.equipment__link-entire {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.equipment__item:hover .equipment__img {
    transform: scale(1.1);
}
.legal-safety__list {
    margin-bottom: 16px;
}
.legal-safety .slick-list {
    margin: 0 -8px;
}
.legal-safety .slick-slide {
    margin: 0 8px;
}
.legal-safety__item {
    background: var(--lightblue);
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
}
.legal-safety__imgWrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}
.legal-safety__img {
    width: 100%;
}
.legal-safety__link-entire {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.arrows .arrow {
    background: var(--blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}
.arrows .arrow:hover {
    background: #003a8a;
}
.arrows .arrow:before {
    content: '';
    background: url(/media/images/arrow.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: invert(1);
}
.arrows .arrow-prev:before {
    transform: translate(-50%, -50%) rotate(90deg);
    margin-left: -1px;
}
.arrows .arrow-next:before {
    transform: translate(-50%, -50%) rotate(-90deg);
    margin-left: 1px;
}
.arrow.slick-disabled {
    background: var(--blue) !important;
    cursor: default;
    opacity: 0.4;
}
.index-top {
    display: flex;
    align-items: stretch;
    gap: 16px;
}
.index-top__item {
    background: var(--lightblue);
    font-size: 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(33.33% - (16px * 2 / 3));
    gap: 12px;
    padding: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.index-top__iconWrapper {
    background: #fff;
    min-width: 92px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.index-top__icon {
    min-width: 48px;
    min-height: 48px;
}
.equip-assembling {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.equip-assembling__row {
    background: var(--lightblue);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 16px;
    padding: 16px;
    box-sizing: border-box;
}
.equip-assembling__row:first-child {
    font-size: 20px;
    line-height: 24px;
    transition: all 0.2s ease;
}
.equip-assembling__row:first-child .equip-assembling__col {
    width: calc(50% - 8px);
}
.equip-assembling__row:last-child {
    align-items: flex-start;
    gap: 8px;
    position: relative;
}
.equip-assembling__icon {
    width: 64px;
    object-fit: contain;
}
.equip-assembling .h4 {
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 4px;
}
.solution__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}
.solution__col {
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.solution__col:first-child {
    width: calc(40% - 18px);
    font-weight: 500;
}
.solution__col:last-child {
    background: var(--lightblue);
    width: calc(60% - 6px);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 16px;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
}
.solution__icon {
    width: 72px;
    object-fit: contain;
}
.solution__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.solution__item {
    background: var(--lightblue);
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
    flex: 1 1 calc(25% - (16px * 3 / 4));
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.solution__img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}
.account__row {
    background: var(--lightblue);
    display: flex;
    gap: 16px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 24px 32px;
}
.account__col {
    width: calc(50% - 8px);
}
.account__col .h4 {
    font-size: 24px;
    line-height: 28px;
}
.account__inner {
    background: var(--lightblue) url(/media/images/sections/index/account_bg.jpg) 100% 50%;
    background-size: cover;
    height: 490px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    margin-bottom: 16px;
    box-sizing: border-box;
}
.account-adv {
    background: #fff;
    width: 384px;
    border: 1px #d3d9e0 solid;
    border-radius: 8px;
    overflow: hidden;
    position: static !important;
    margin: 108px 0 0 72px;
}
.account-adv__item {
    padding: 16px 24px;
}
.account-adv .h5 {
    font-size: 20px;
    line-height: 24px;
}
.account-adv__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.account-adv__icon {
    width: 32px;
}
.account-screen {
    width: calc(50% - 8px);
}
.account-screen__inner {
    width: 486px;
    position: relative;
    margin-top: 48px;
}
.account-screen__monitor {
    width: 100%;
    position: relative;
    z-index: 2;
}
.account-screen__list {
    width: 100%;
    overflow: hidden;
    position: absolute !important;
    top: 0;
    left: 0;
    padding: 19px 17px 0;
    box-sizing: border-box;
}
.account-screen__img {
    width: 100%;
}
.account__banner .slick-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
}
.adv-medicon {
    overflow: hidden;
}
.adv-medicon__row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.adv-medicon__col {
    display: flex;
    flex: 1 1 calc(50% - (16px * 1 / 2));
    gap: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.adv-medicon__col:first-child {
    font-size: 20px;
    line-height: 120%;
}
.adv-medicon__col:last-child {
    background: var(--lightblue);
    font-size: 14px;
    border-radius: 8px;
    padding: 16px;
}
.adv-medicon__icon {
    width: 72px;
    object-fit: contain;
}
.adv-medicon__col:last-child .text p:not(:last-child) {
    margin-bottom: 8px;
}
.adv-medicon .slick-list {
    margin: 0 -8px;
}
.adv-medicon .slick-slide {
    margin: 0 8px;
}
.adv-medicon .slick-list,
.adv-medicon .slick-track {
    display: flex;
}
.adv-medicon__list {
    margin-bottom: 16px;
}
.adv-medicon__item {
    background: var(--lightblue);
    width: 25%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
}
.adv-medicon__img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
}
.adv-medicon__item .h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
.adv-medicon__item .text {
    font-size: 14px;
    line-height: 18px;
}
.algorithm {
    font-size: 20px;
    line-height: 110%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease;
}
.algorithm__notice {
    background: var(--lightblue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
}
.algorithm__icon {
    width: 64px;
    object-fit: contain;
}
.algorithm__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    counter-reset: algorithm;
}
.algorithm__item {
    background: var(--lightblue);
    width: calc(50% - 8px);
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
    counter-increment: algorithm;
}
.algorithm__item .text {
    position: relative;
    padding-left: 40px;
}
.algorithm__item .text:before {
    content: counter(algorithm);
    background: var(--blue);
    width: 32px;
    height: 32px;
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease;
}
.algorithm__img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}
.medicon-features {
    display: flex;
    align-items: stretch;
    gap: 16px;
}
.medicon-features__col {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.medicon-features__col:first-child {
    background: var(--lightblue);
    border-radius: 8px;
    align-items: center;
}
.medicon-features__img {
    width: 75%;
}
.medicon-features .h4,
.medicon-features .text {
    margin: 0;
}
.medicon-features__notice {
    background: var(--lightblue);
    border-radius: 8px;
    padding: 16px;
}
.legal-framework {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.legal-framework:not(:last-child) {
    margin-bottom: 16px;
}
.legal-framework__item {
    background: var(--lightblue);
    border: 1px #d3d9e0 solid;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    padding: 16px;
    box-sizing: border-box;
}
.legal-framework__col {
    width: calc(50% - 8px);
    box-sizing: border-box;
}
.legal-framework__col:first-child {
    color: var(--blue);
}
.legal-framework + .h4 b {
    color: var(--blue);
}
.terminal-tech__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.terminal-tech__item:nth-child(even) {
    flex-direction: row-reverse;
}
.terminal-tech__item:not(:last-child) {
    margin-bottom: 32px;
}
.terminal-tech__col {
    width: calc(50% - 8px);
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.terminal-tech__col:last-child {
    background: var(--lightblue);
    border-radius: 8px;
    padding: 16px;
}
.terminal-tech__colSub:not(:last-child) {
    margin-bottom: 24px;
}
.terminal-tech .h3 {
    font-size: 24px;
}
.terminal-tech .h3 br {
    display: none;
}
.terminal-tech .text,
.list-dimensions b {
    font-size: 20px;
    line-height: 24px;
}
.terminal-tech .list-checked li:before {
    top: 8px;
}
.terminal-tech__img {
    width: 100%;
    border-radius: 8px;
}
.list-dimensions {
    color: #676767;
    font-size: 16px;
}
.list-dimensions li {
    display: inline-block;
}
.list-dimensions li:not(:last-child) {
    margin-right: 24px;
}
.list-dimensions li:before {
    top: 13px !important;
}
.list-dimensions b {
    color: var(--blue);
    font-weight: 700;
}
.terminal-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.terminal-gallery__item {
    background: var(--lightblue);
    width: calc(33.33% - 10.7px);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.terminal-gallery__img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}
.page-404 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.page-404__col {
    width: calc(50% - 8px);
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.page-404__img {
    width: 100%;
}
.page-404 .h1 {
    color: var(--blue);
}
.rutube {
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
}
.rutube iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Animation */
.checkbox:checked + span:after {
    opacity: 0;
    animation: checkbox-radio 0.2s ease forwards;
}
.radio:checked + span:after {
    opacity: 0;
    animation: checkbox-radio 0.2s ease forwards;
}
@keyframes checkbox-radio {
    0% {
        transform: translateY(-50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}
.form .button[disabled]:after {
    animation: button-disabled 0.6s linear infinite;
}
@keyframes button-disabled {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.scheme-descr__notice {
    animation: schemeDescrOut 0.2s ease forwards;
}
.scheme-descr__notice.active {
    animation: schemeDescrIn 0.2s ease forwards;
}
@keyframes schemeDescrIn {
    0% {
        top: -48px;
        opacity: 0;
    }
    100% {
        top: -68px;
        opacity: 1;
    }
}
@keyframes schemeDescrOut {
    0% {
        top: -68px;
        opacity: 1;
    }
    100% {
        top: -48px;
        opacity: 0;
    }
}

/* Adaptation */
@media screen and (max-width: 1210px) {
    .account__row {
        flex-direction: column;
    }
    .account__col {
        width: 100%;
    }
    .account__inner {
        padding: 0 32px;
    }
    .account-adv {
        margin-left: 0;
    }
    .account-screen {
        width: auto;
    }
}
@media screen and (max-width: 1180px) {
    .head-index__item {
        font-size: 16px;
        line-height: 20px;
    }
    .scheme__row {
        gap: 8px;
    }
    .scheme__col:first-child,
    .scheme__col:last-child {
        width: 35%;
    }
    .scheme__col:nth-child(2) {
        width: auto;
    }
    .scheme .button__descr {
        padding: 0 32px;
    }
    .scheme-descr {
        gap: 8px;
    }
    .index-top__item {
        font-size: inherit;
        line-height: inherit;
    }
}
@media screen and (max-width: 1140px) {
    .equipment br {
        display: block;
    }
}
@media screen and (max-width: 1120px) {
    .scheme__row {
        gap: inherit;
    }
    .scheme__imgWrapper {
        margin: 0 -20px;
    }
    .equip-assembling__row:first-child {
        font-size: 18px;
        line-height: 22px;
    }
    .account__col .h4 {
        font-size: 22px;
        line-height: 26px;
    }
    .index-top__iconWrapper {
        min-width: 80px;
        min-height: 80px;
    }
    .services .text {
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 1100px) {
    .head-index .head__col:first-of-type {
        width: calc(45% - 12px);
    }
    .head-index .head__col:last-of-type {
        width: calc(55% - 12px);
    }
    .form-main .h4,
    .head-index .form__content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media screen and (max-width: 1060px) {
    .scheme-descr__item {
        width: 112px;
        height: 112px;
    }
}
@media screen and (max-width: 1040px) {
    .footer__row {
        gap: 32px 16px;
    }
    .footer__contacts {
        max-width: 240px;
    }
    .headIcons {
        flex-direction: column;
        gap: 8px;
    }
    .equip-assembling__row:first-child {
        font-size: 16px;
        line-height: 20px;
    }
    .account__col .h4 {
        font-size: 20px;
        line-height: 24px;
    }
}
@media screen and (max-width: 1020px) {
    .partnership-company {
        justify-content: space-between;
        gap: 8px;
    }
    .partnership-company__item:not(:first-child) {
        width: 15.5%;
        font-size: 14px;
        line-height: 16px;
    }
    .partnership-company__item:first-child {
        width: 100%;
    }
    .partnership-company__img {
        width: 60px;
    }
    .solution__row {
        gap: 16px;
    }
    .index-top__item {
        text-align: center;
        flex-direction: column;
        justify-content: flex-start;
        padding: 16px 8px;
    }
    .index-top__iconWrapper {
        min-width: 60px;
        min-height: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .h1 br,
    .h2 br,
    .h3 br,
    .h4 br,
    .h5 br,
    .h6 br {
        display: none;
    }
    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 960px) {
    .logo {
        width: 200px;
        margin-right: 24px;
    }
    .header__labels {
        font-size: 12px;
    }
    .header__phone {
        font-size: 18px;
        line-height: 20px;
    }
    .header__email {
        font-size: 13px;
        line-height: 14px;
    }
    .header .button__descr {
        padding: 0 16px;
    }
    .head-index {
        flex-direction: column;
    }
    .head-index .head__col:first-of-type,
    .head-index .head__col:last-of-type {
        width: 100%;
    }
    .head-index__list {
        gap: 8px;
    }
    .form-main {
        max-width: 600px;
        margin: auto;
    }
    .scheme__imgWrapper {
        margin: 0 -40px;
    }
    .algorithm {
        font-size: inherit;
    }
    .algorithm__item .text:before {
        font-size: 18px;
        line-height: 22px;
    }
    .algorithm__notice:before {
        min-width: 48px;
        min-height: 48px;
    }
    .howStart__item {
        flex: 1 1 calc(50% - (16px * 1 / 2));
    }
    .adv-medicon__col:first-child {
        font-size: inherit;
    }
}
@media screen and (max-width: 940px) {
    .head {
        flex-direction: column;
    }
    .head__col {
        width: 100%;
    }
    .head__img {
        max-width: 500px;
    }
    .headIcons {
        flex-direction: row;
        gap: 24px;
    }
    .request {
        flex-direction: column;
        gap: 16px;
    }
    .partnership-company__item:not(:first-child) {
        font-size: 12px;
        line-height: 14px;
    }
    .telemed__row {
        flex-direction: column;
        gap: 32px;
    }
    .telemed__col {
        width: 100% !important;
    }
    .equipment br {
        display: none;
    }
    .equipment__item {
        width: calc(50% - 8px);
    }
    .solution__col {
        width: 100% !important;
    }
    .solution__icon {
        width: 48px;
    }
    .solution__item {
        flex: 1 1 calc(50% - (16px * 1 / 2));
    }
    .adv-medicon__row {
        flex-wrap: wrap;
    }
    .adv-medicon__col {
        flex: 1 1 100%;
    }
    .adv-medicon__icon {
        width: 48px;
    }
}
@media screen and (max-width: 920px) {
    .solution__col {
        width: 100% !important;
    }
    .account__inner {
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 16px 16px 44px;
    }
    .account-adv {
        width: 486px;
        margin: auto;
    }
    .account-screen__inner {
        margin: auto;
    }
}
@media screen and (max-width: 900px) {
    .scheme__row {
        justify-content: space-between;
    }
    .scheme__col {
        width: auto !important;
    }
    .scheme__col:last-child {
        display: none;
    }
    .scheme__imgWrapper {
        margin: auto;
    }
    .scheme .text .button {
        display: block;
    }
    .scheme .button__descr {
        width: fit-content;
        display: flex !important;
        padding: 0 56px;
    }
    .scheme-descr__item {
        width: 100px;
        height: 100px;
    }
    .scheme-descr__item:before {
        width: 40px;
        height: 40px;
    }
    .legal-framework__col .h3 {
        font-size: 18px;
    }
    .terminal-tech__item {
        flex-direction: column;
    }
    .terminal-tech__item:not(:last-child) {
        margin-bottom: 16px;
    }
    .terminal-tech__col {
        width: 100%;
    }
    .terminal-tech__col-sub {
        display: flex;
        gap: 16px;
    }
    .terminal-tech__colSub {
        width: calc(50% - 8px);
    }
    .list-dimensions li {
        display: block;
    }
    .terminal-tech .h3 {
        font-size: 24px;
    }
    .terminal-tech .text,
    .list-dimensions b {
        font-size: inherit;
        line-height: inherit;
    }
    .terminal-tech .list-checked li:before {
        top: 5px;
    }
    .list-dimensions li:not(:last-child) {
        margin-right: 0;
    }
    .list-dimensions li:before {
        top: 10px !important;
    }
    .terminal-gallery__item {
        width: calc(50% - 8px);
    }
    .telemed__row {
        font-size: inherit;
    }
}
@media screen and (max-width: 890px) {
    .contacts__address br {
        display: block;
    }
}
@media screen and (max-width: 860px) {
    .request {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .request:before {
        top: 32px;
    }
    .descrList__title {
        font-size: 14px;
        line-height: 16px;
    }
    .descrList__descr {
        font-size: 20px;
        line-height: 20px;
    }
    .descrList-requisites .descrList__descr {
        font-size: 18px;
        line-height: 20px;
    }
    .descrList .soc {
        gap: 8px;
    }
    .descrList .soc__link {
        width: 40px;
        height: 40px;
    }
    .contacts .h5,
    .contacts__office {
        font-size: 18px;
        line-height: 22px;
    }
    .contacts__address:not(:last-child) {
        margin-bottom: 4px;
    }
    .contacts__address:before {
        top: 2px;
    }
    .contacts__address br {
        display: none;
    }
    .contacts__schedule:before {
        top: 3px;
    }
    .equip-assembling__row:first-child {
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 840px) {
    .logo {
        width: 180px;
    }
    .header__labels {
        font-size: 11px;
    }
    .header .button__descr {
        width: 48px;
        border-radius: 50%;
        padding: 0;
    }
    .header .button__descr:before {
        content: '';
        background: url(/media/images/phone.svg);
        background-size: 100% 100%;
        width: 24px;
        height: 23px;
        display: block;
        filter: invert(1);
    }
    .header .button__descrIn {
        display: none;
    }
    .nav__span,
    .nav__span-active,
    .nav__link,
    .nav__link-arrowed,
    .nav__link-arrowed-active {
        font-size: 13px;
        line-height: 13px;
    }
    .nav__link {
        letter-spacing: -0.5px;
    }
    .nav__span {
        padding-right: 12px;
    }
    .nav__span:before {
        top: 13px;
    }
    .nav__span:after {
        width: 8px;
        height: 6px;
    }
    .nav__list-sub {
        top: 42px;
    }
    .footer__row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer__main,
    .footer__nav {
        width: calc(50% - 8px);
    }
    .footer__nav {
        max-width: inherit;
    }
    .footer__contacts {
        max-width: inherit;
        width: 100%;
        flex-direction: row;
        gap: 16px;
        box-sizing: border-box;
    }
    .footer__item:first-child {
        width: calc(50% - 8px);
        box-sizing: border-box;
    }
}
@media screen and (max-width: 820px) {
    .bot__inner {
        width: auto;
    }
    .contacts__address br {
        display: block;
    }
    .partnership-company {
        gap: 16px;
    }
    .partnership-company__item:not(:first-child) {
        width: calc(33.33% - 10.7px);
        font-size: 16px;
        line-height: 20px;
    }
    .partnership-company__img {
        width: 100px;
    }
    .contacts iframe,
    .contacts__map {
        height: auto;
        height: 400px;
        max-height: inherit;
    }
    .head__img-desktop {
        display: none;
    }
    .head__img-mob {
        width: 100%;
        display: block;
        margin-right: 20px !important;
    }
}
@media screen and (max-width: 812px), screen and (max-width: 960px) and (max-height: 480px) {
    body {
        font-size: 14px;
    }
    .h1, .h2 {
        font-size: 32px;
    }
    .h1:not(:last-child),
    .h2:not(:last-child) {
        margin-bottom: 24px;
    }
    .h3 {
        font-size: 24px;
    }
    .button__descr {
        height: 48px;
        padding: 0 48px;
    }
    .form .button[disabled] {
        height: 48px;
    }
    .wrapper {
        padding: 32px 16px;
    }
    .wrapper .section:not(:last-child) {
        margin-bottom: 60px;
    }
    .bg-azure .wrapper {
        margin-bottom: 0;
    }
    .header {
        box-shadow: none;
    }
    .header__topLine {
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    }
    .header__topLine .wrapper {
        height: 64px;
    }
    .logo {
        margin-left: 8px;
    }
    .header .logo {
        width: auto;
    }
    .logo__img-desktop {
        display: none;
    }
    .logo__img-mob {
        min-width: 40px;
        max-height: 48px;
        display: block;
    }
    .nav-icon {
        width: 32px;
        min-width: 32px;
        height: 32px;
        border: 8px transparent solid;
        cursor: pointer;
        position: relative;
        margin-left: -8px;
        box-sizing: content-box;
    }
    .nav-icon:before,
    .nav-icon i,
    .nav-icon i:before,
    .nav-icon i:after {
        width: 32px;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all 0.2s ease;
    }
    .nav-icon:before,
    .nav-icon i:before,
    .nav-icon i:after {
        content: '';
        background: var(--black);
    }
    .nav-icon:before,
    .nav-icon i {
        top: 15px;
    }
    .nav-icon i:before {
        top: -11px;
    }
    .nav-icon i:after {
        bottom: -11px;
    }
    .nav-icon.active:before {
        opacity: 0;
    }
    .nav-icon.active i:before {
        top: 0;
        transform: rotate(45deg);
    }
    .nav-icon.active i:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .header__labels {
        gap: 2px;
    }
    .header__support {
        height: 24px;
        border-radius: 12px;
    }
    .header__bottomLine {
        height: calc(100vh - 64px);
        display: none;
        border-top: none;
        overflow-y: scroll;
    }
    .header__bottomLine {
        background: rgba(0, 0, 0, 0.04);
    }
    .header__bottomLine .wrapper {
        height: auto;
        flex-direction: column;
        align-items: normal;
        padding-bottom: 124px;
    }
    .nav__list {
        flex-direction: column;
        justify-content: left;
        gap: inherit;
        margin-bottom: 16px;
    }
    .nav__item {
        border-bottom: 1px rgba(0, 0, 0, 0.08) solid;
    }
    .nav__gag {
        height: 50px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .nav__list-sub {
        background: none;
        width: auto;
        border-radius: 0;
        display: block !important;
        position: relative;
        top: auto;
        left: auto;
        right: auto !important;
        padding-bottom: 12px;
        box-shadow: none;
    }
    .nav__list-sub:before {
        display: none;
    }
    .nav__item-sub {
        margin: 0 -16px;
    }
    .nav__span,
    .nav__span-active,
    .nav__link,
    .nav__link-arrowed,
    .nav__link-arrowed-active {
        font-weight: 600;
        font-size: 18px;
        line-height: 18px;
        padding: 16px 0;
    }
    .nav__span {
        color: var(--black) !important;
    }
    .nav__span-active {
        color: var(--blue) !important;
    }
    .nav__link-sub,
    .nav__span-sub {
        font-size: 16px;
        line-height: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 32px;
    }
    .nav__span:after,
    .nav__link-arrowed:after {
        display: none;
    }
    .footer .logo {
        margin-left: 0;
    }
    .footer .nav__link,
    .footer .nav__span {
        color: inherit !important;
        font-weight: 500;
        font-size: 14px;
        line-height: inherit;
    }
    .footer .nav__item-sub {
         margin: 0;
    }
    .head-index__text {
        margin-top: 16px;
        padding-top: 16px;
    }
    .breadcrumbs {
        margin-top: -8px;
        margin-bottom: 24px;
    }
    .breadcrumbs__item {
        font-size: 12px;
        line-height: 14px;
    }
    .text ul li:before {
        top: 9px !important;
    }
    .text .list-checked li:before {
        top: 4px !important;
    }
    .imgWrapper:not(:last-child) {
        margin-bottom: 24px;
    }
    .faq__item {
        font-size: 14px;
        line-height: 18px;
    }
    .faq__question {
        padding: 12px 46px 14px 16px;
    }
    .faq__arrow {
        width: 24px;
        height: 24px;
        top: 10px;
    }
    .faq__arrow:before {
        content: '';
        width: 8px;
        height: 8px;
        top: 6px;
    }
    .faq__answer {
        padding: 16px 16px 20px;
    }
    .faq__item.active .faq__arrow:before {
        top: 9px;
    }
    .request {
        padding: 24px 24px 24px 96px;
    }
    .request:before {
        width: 48px;
        height: 36px;
        top: 29px;
        left: 24px;
    }
    .request .text {
        font-size: 18px;
        line-height: 22px;
    }
    .scheme__col:first-child {
        position: relative;
        z-index: 2;
        margin-right: -20px;
    }
    .scheme-descr__item {
        width: 80px;
        height: 80px;
    }
    .descrList__title br {
        display: none;
    }
    .contacts .h5,
    .contacts__office {
        font-size: 16px;
        line-height: 20px;
    }
    .contacts .h5 {
        width: 100%;
        margin-bottom: -8px;
    }
    .contacts__address:before {
        top: 0;
    }
    .contacts__address br {
        display: none;
    }
    .contacts__schedule:before {
        top: 1px;
    }
    .telemed {
        margin-bottom: 8px;
    }
    .howStart-notice {
        font-size: 18px;
        line-height: 22px;
    }
    .equip-assembling__row:first-child {
        width: 100%;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .equip-assembling__row:first-child .equip-assembling__col {
        width: 100%;
    }
    .solution__col:last-child:before {
        min-width: 48px;
        min-height: 48px;
    }
    .account__col .h4 {
        font-size: 18px;
        line-height: 22px;
    }
    .services__link {
        font-size: 16px;
        line-height: 20px;
    }
    .services__item .services__img {
        transform: none !important;
    }
    .algorithm__notice:before {
        min-width: 40px;
        min-height: 40px;
    }
    .medicon-features {
        flex-direction: column;
    }
    .medicon-features__col {
        width: 100%;
    }
    .medicon-features__col:first-child {
        padding: 40px;
    }
    .legal-framework__item {
        flex-direction: column;
    }
    .legal-framework__col {
        width: 100%;
    }
    .list-dimensions {
        font-size: inherit;
    }
    .page-404__col {
        width: 100%;
    }
    .row {
        flex-direction: column;
    }
    .row__col50 {
        width: 100%;
    }
}
@media screen and (max-width: 730px) {
    .scheme__imgWrapper {
        margin-left: -40px;
    }
}
@media screen and (max-width: 690px) {
    .scheme__row {
        flex-direction: column;
        gap: 16px;
    }
    .scheme__col:first-child {
        position: relative;
        z-index: 2;
        margin-right: 0;
    }
    .scheme .text ul {
        columns: 2;
    }
    .scheme__imgWrapper {
        margin: auto;
    }
    .scheme .button__descr {
        margin: auto;
    }
}
@media screen and (max-width: 680px) {
    .partners__list {
        margin-bottom: 16px;
    }
    .partners__item {
        width: calc(50% - 8px);
    }
    .partners__img {
        margin-bottom: 8px;
    }
}
@media screen and (max-width: 660px) {
    .bot__inner {
        padding: 40px 20px;
    }
    .bot__logo {
        margin-bottom: 20px;
    }
    .account-adv .h5 {
        font-size: 18px;
        line-height: 22px;
    }
}
@media screen and (max-width: 640px) {
    .form-main {
        max-width: inherit;
    }
    .scheme__row {
        margin-bottom: 16px;
    }
    .scheme-descr {
        gap: 4px;
    }
    .scheme-descr__item {
        width: 68px;
        height: 68px;
    }
    .scheme-descr__item:before {
        width: 32px;
        height: 32px;
    }
    .scheme-descr__notice {
        font-size: 11px;
        line-height: 12px;
        top: -32px;
        padding-top: 7px;
        padding-bottom: 8px;
    }
    .scheme-descr__notice:after {
        height: 6px;
        bottom: -6px;
    }
    .scheme-descr__notice.active {
        top: -50px;
    }
    .descrList {
        width: 100%;
    }
    .descrList__descr:not(:last-child) {
        margin-bottom: 16px;
    }
    .partnership-company {
        gap: 8px;
    }
    .partnership-company__item:not(:first-child) {
        width: calc(33.33% - 6px);
    }
    .solution__item {
        width: calc(50% - 8px);
    }
    .solution__item:last-child {
        width: 100%;
    }
    .algorithm__list {
        flex-direction: column;
    }
    .algorithm__item {
        width: 100%;
    }
    @keyframes schemeDescrIn {
        0% {
            top: -32px;
            opacity: 0;
        }
        100% {
            top: -50px;
            opacity: 1;
        }
    }
    @keyframes schemeDescrOut {
        0% {
            top: -50px;
            opacity: 1;
        }
        100% {
            top: -32px;
            opacity: 0;
        }
    }
}
@media screen and (max-width: 600px) {
    .header__logo {
        flex: auto;
        margin-right: 16px;
    }
    .header__misc {
        margin-left: 0;
    }
    .index-top__item {
        font-size: 12px;
    }
    .terminal-gallery__item {
        width: 100%;
    }
}
@media screen and (max-width: 590px) {
    .footer__descr:before {
        top: 50%;
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 580px) {
    .form-main .h4,
    .head-index .form__content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .form-main .h4 {
        font-size: 20px;
        line-height: 24px;
    }
    .equipment br {
        display: block;
    }
}
@media screen and (max-width: 560px) {
    .footer__main,
    .footer__nav {
        width: 100%;
    }
    .footer .nav__list {
        gap: 8px;
    }
    .footer__contacts {
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer__item {
        width: 100% !important;
    }
    .partnership-company {
        gap: 8px;
    }
    .partnership-company__item:not(:first-child) {
        width: calc(50% - 4px);
    }
    .account__row,
    .account-adv__item {
        padding: 16px;
    }
    .account-adv,
    .account-screen__inner {
        width: 100%;
    }
    .account__banner {
        padding-bottom: 8px;
    }
    .account__inner {
        overflow: visible;
        padding-bottom: 16px;
    }
    .account-screen__monitor {
        z-index: inherit;
    }
    .account-screen__list {
        padding: 19px 16px 0;
    }
    .account__banner .slick-dots {
        bottom: -20px;
    }
    .account__banner .arrows {
        display: none;
    }
    .terminal-tech .h3 br {
        display: block;
    }
}
@media screen and (max-width: 540px) {
    .header .logo {
        margin-right: auto;
    }
    .header__labels {
        display: none;
    }
    .form-main .form__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-main .field {
        width: 100%;
    }
    .popup__closeIcon {
        top: 8px;
        right: 8px;
    }
    .telemed__row {
        gap: 16px;
        padding: 16px;
    }
    .equip-assembling__row:last-child {
        gap: 8px;
    }
    .equip-assembling__row:last-child:before {
        min-width: 48px;
        min-height: 48px;
    }
}
@media screen and (max-width: 520px) {
    .footer__main {
        width: 100%;
    }
    .footer__nav {
        width: 100%;
    }
    .scheme-descr__item {
        width: 60px;
        height: 60px;
    }
    .account-screen__list {
        padding: 17px 15px 0;
    }
}
@media screen and (max-width: 480px) {
    .h1, .h2 {
        font-size: 24px;
    }
    .h1:not(:last-child),
    .h2:not(:last-child) {
        margin-bottom: 16px;
    }
    .h3 {
        font-size: 20px;
    }
    .h4 {
        font-size: 18px;
    }
    .h5 {
        font-size: 16px;
    }
    .bot__checkBlock {
        padding: 16px;
    }
    .cookie {
        width: calc(100% - 32px);
    }
    .button__descr {
        width: 100%;
    }
    .popup .form {
        width: calc(100% - 32px);
    }
    .form__gift {
        height: 32px;
        padding: 0 8px 0 6px;
    }
    .head .button {
        width: 100%;
    }
    .head-index .h3 {
        text-align: center;
    }
    .headIcons__item {
        width: 50%;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }
    .request {
        padding: 16px;
    }
    .request:before {
        width: 32px;
        height: 24px;
        top: 16px;
        left: auto;
        right: 16px;
    }
    .request .text {
        font-size: 16px;
        line-height: 20px;
        padding-right: 48px;
    }
    .scheme .text ul {
        columns: auto;
    }
    .scheme .button__descr {
        width: auto;
        margin: auto;
    }
    .scheme-descr__item {
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }
    .scheme-descr__item:before {
        width: 20px;
        height: 20px;
    }
    .scheme-descr__notice {
        border-radius: 4px;
    }
    .partnership-company__img {
        width: 60px;
    }
    .partnership-company__item:not(:first-child) {
        font-size: 12px;
        line-height: 14px;
    }
    .howStart__item {
        flex: 1 1 100%;
    }
    .howStart__item .h5 {
        padding-left: 32px;
    }
    .howStart__item .h5:before {
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 14px;
        top: -4px;
    }
    .howStart-notice {
        font-size: 16px;
        line-height: 20px;
    }
    .equipment__item {
        width: 100%;
    }
    .equipment br {
        display: none;
    }
    .arrows {
        display: none;
    }
    .equip-assembling__row:last-child {
        flex-direction: column;
    }
    .solution__col:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .solution__item {
        flex: 1 1 100%;
    }
    .equip-assembling__icon {
        width: 48px;
    }
    .account__col .h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .adv-medicon__list {
        background: var(--lightblue);
        border-radius: 8px;
        margin-bottom: 22px;
    }
    .adv-medicon__item {
        background: none;
        height: fit-content;
        border-radius: 0;
    }
    .adv-medicon .slick-list {
        margin: 0;
    }
    .adv-medicon .slick-slide {
        margin: 0;
    }
    .adv-medicon .slick-list,
    .adv-medicon .slick-track {
        display: block;
    }
    .index-top {
        flex-direction: column;
        gap: 8px;
    }
    .index-top__item {
        font-size: 14px;
        text-align: left;
        flex-direction: row;
        flex: 1 1 100%;
        gap: 8px;
        padding: 8px;
    }
    .legal-safety__list,
    .services__list {
        background: var(--lightblue);
        border-radius: 8px;
        margin-bottom: 48px;
    }
    .legal-safety__list-v2 {
        background: var(--lightblue);
        border-radius: 8px;
        margin-bottom: 24px;
    }
    .legal-safety__item,
    .services__item {
        background: none;
        border-radius: 0;
    }
    .legal-safety .slick-list,
    .legal-safety .slick-track,
    .services .slick-list,
    .services .slick-track {
        display: block;
    }
    .legal-safety .slick-list,
    .legal-safety .slick-slide,
    .services .slick-list,
    .services .slick-slide {
        margin: 0;
    }
    .services__item {
        height: inherit;
    }
    .slick-dots {
        position: absolute;
        left: 0;
        right: 0;
    }
    .algorithm__item .text {
        padding-left: 32px;
    }
    .algorithm__item .text:before {
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 14px;
    }
    .algorithm__notice {
        flex-direction: column;
        align-items: flex-start;
    }
    .algorithm__icon {
        width: 48px;
    }
    .medicon-features__col:first-child {
        padding: 16px;
    }
    .terminal-tech .h3 {
        font-size: 20px;
    }
    .terminal-tech .h3 br {
        display: none;
    }
    .terminal-tech__col-sub {
        flex-direction: column;
    }
    .terminal-tech__colSub {
        width: 100%;
    }
    .terminal-tech__colSub:not(:last-child) {
         margin-bottom: 0;
    }
    .legal-safety__item {
        font-size: 16px;
        line-height: 18px;
    }
    .howStart-by-2 .howStart__item {
        flex: 1 1 100%;
    }
    .informer .wrapper {
        font-size: 12px;
    }
    .adv-medicon__col:last-child {
        flex-direction: column;
        gap: 8px;
    }
}
@media screen and (max-width: 460px) {
    .scheme-nums__item:nth-child(1) {
        top: 135px;
        right: 65px;
    }
    .scheme-nums__item:nth-child(2) {
        top: 17px;
        left: 103px;
    }
    .scheme-nums__item:nth-child(3) {
        top: 58px;
        right: 68px;
    }
    .scheme-nums__item:nth-child(4) {
        top: 199px;
        right: 79px;
    }
    .scheme-nums__item:nth-child(5) {
        top: 22px;
        right: 111px;
    }
    .scheme-nums__item:nth-child(6) {
        top: 130px;
        left: 92px;
    }
    .scheme-nums__item:nth-child(7) {
        top: 190px;
        right: 17px;
    }
    .scheme__img {
        width: 330px;
        min-width: 330px;
    }
    .account-screen__list {
        padding: 15px 13px 0;
    }
}
@media screen and (max-width: 440px) {
    .solution__item {
        width: 100%;
    }
    .account-screen__list {
        padding: 14px 12px 0;
    }
}
@media screen and (max-width: 420px) {
    .form .h4 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .form-main .h4 br {
        display: block !important;
    }
    .form__gift {
        height: 24px;
    }
    .scheme-descr__item:nth-child(4) .scheme-descr__notice {
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 400px) {
    .scheme-descr__item {
        width: 40px;
        height: 40px;
    }
    .algorithm__notice {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 390px) {
    .account-screen__list {
        padding: 13px 11px 0;
    }
}
@media screen and (max-width: 380px) {
    .header__phone {
        font-size: 16px;
        line-height: 18px;
    }
    .header__email {
        font-size: 12px;
        line-height: 12px;
    }
    .button__descr {
        width: auto;
    }
    .form__content {
        padding-left: 16px;
        padding-right: 16px;
    }
    .adv-medicon .slick-dots li {
        width: 8px;
        height: 8px;
    }
}
@media screen and (max-width: 370px) {
    .cookie .button__descr {
        padding: 0 24px;
    }
    .scheme-nums__item:nth-child(1) {
        top: 123px;
        right: 59px;
    }
    .scheme-nums__item:nth-child(2) {
        left: 93px;
    }
    .scheme-nums__item:nth-child(3) {
        right: 55px;
    }
    .scheme-nums__item:nth-child(4) {
        top: 175px;
        right: 70px;
    }
    .scheme-nums__item:nth-child(5) {
        right: 96px;
    }
    .scheme-nums__item:nth-child(6) {
        top: 117px;
        left: 83px;
    }
    .scheme-nums__item:nth-child(7) {
        top: 173px;
        right: 13px;
    }
    .scheme__img {
        width: 300px;
        min-width: 300px;
    }
    .account-screen__list {
        padding: 11px 10px 0;
    }
}
@media screen and (max-width: 360px) {
    .header__topLine .wrapper {
        height: 56px;
    }
    .header__logoImg-mob {
        max-height: 48px;
    }
    .header .button__descr {
        width: 36px;
        height: 36px;
    }
    .header .button__descr:before {
        width: 20px;
        height: 19px;
    }
    .header__bottomLine {
        height: calc(100vh - 56px);
    }
    .h1, .h2 {
        font-size: 22px;
    }
    .h3 {
        font-size: 18px;
    }
    .h4 {
        font-size: 16px;
    }
    .partners__item {
        width: 100%;
    }
    .telemed__row {
        font-size: 14px;
    }
    .account-screen__list {
        padding: 11px 9px 0;
    }
    .terminal-tech .h3 {
        font-size: 18px;
    }
}
@media screen and (max-width: 340px) {
    .wrapper {
        padding-left: 8px;
        padding-right: 8px;
    }
    .nav__item-sub {
        margin: 0 -8px;
    }
    .form-main .h4,
    .head-index .form__content {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .cookie {
        width: calc(100% - 16px);
        left: 8px;
        padding: 8px;
    }
    .popup .form {
        width: calc(100% - 16px);
    }
    .imgWrapper,
    .request,
    .telemed__row,
    .services__item,
    .legal-safety__item,
    .equipment__item,
    .equip-assembling__row,
    .solution__item,
    .solution__col:last-child,
    .account__inner,
    .adv-medicon__col:last-child,
    .adv-medicon__item,
    .howStart__item,
    .algorithm__notice,
    .algorithm__item,
    .medicon-features__col:first-child,
    .medicon-features__notice,
    .legal-framework__item,
    .terminal-tech__col:last-child,
    .terminal-gallery__item,
    .row__col50-azure,
    .row__notice,
    .account__row,
    .account-adv__item {
        padding: 8px;
    }
    .terminal-gallery__img,
    .legal-safety__imgWrapper,
    .equipment__imgW,
    .services__imgWrapper {
        margin-bottom: 8px;
    }
    .request {
        gap: 8px;
    }
    .equip-assembling__row:last-child:before {
        top: 6px;
        right: 8px;
    }
    .legal-framework__item {
        gap: 8px;
    }
    .informer .wrapper {
        gap: 8px;
    }
}