@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Jura:wght@300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
    font-family: "Golos";
    src: url("https://platform.crosshub.ru/newdesign/font/GolosText-VariableFont_wght.ttf") format('truetype');
}

@font-face {
    font-family: "ABCFavoritCROSSHUB";
    src: url("https://platform.crosshub.ru/newdesign/font/ABCFavoritCROSSHUB.ttf") format('truetype');
}


:root {
    --background-color: #fff;
    --border: 1px solid #eee;
    --white: #FFFFFF;
    --black: #3D4043;
    --grey-medium: #616C72;
    --grey-regular: #D3D9D7;
    --grey-light: #F5F5F5;
    --grey-proto: #E8E8EC;
    --lime: #EFFE7D;
    --white-lime: #FDFDF1;
    --background-grey: #E1E8EB;
    --red: #ff6767;
    --font-display: "ABCFavoritCROSSHUB", "Golos", "Golos Text", sans-serif;
    --font-text: "Golos Text", "Golos", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    font-weight: 500;
    line-height: 1.3;
    -webkit-tap-highlight-color: transparent;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* a[href] {
    transition: opacity 0.2s ease-in-out;
} */

a[href]:hover {
    text-decoration: underline;
    /* opacity: 0.9; */
}

button,
input,
textarea,
select,
hr {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    user-select: text;
    -webkit-user-select: text;
}

button {
    cursor: pointer;
    user-select: none;
}

hr {
    height: 1px;
    background-color: var(--grey-regular);
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.success-page__title {
    font-family: var(--font-display);
}

.field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 9px;
}

.field>label {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.field>input[type="text"] {
    padding: 17px 14px;
    background-color: var(--grey-light);
    border-radius: 8px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    width: 100%;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    width: fit-content;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--grey-medium);

}

input[type="checkbox"]+label a {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 18px;
    text-decoration: underline;
    color: var(--black);
}

input[type="checkbox"]+label a:hover {
    text-decoration: none;
}

input[type="checkbox"]:checked+label {
    background: none;
}

input[type="checkbox"]+label::after,
input[type="checkbox"]:checked+label::after {
    background: none;
    border: none;
}

input[type="checkbox"]+label::before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    background: unset;
    background-color: var(--lime);
}

input[type="checkbox"]:checked+label::before {
    background-image: url('data:image/svg+xml,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 5L5.32941 8.5L12 1.5" stroke="%233D4043" stroke-width="2" stroke-linecap="square" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.field--button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.field--button p {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--grey-medium);
}

button[type="submit"] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 40px;
    width: 100%;
    height: 57px;
    background-color: var(--lime);
    border-radius: 10px;
    color: var(--grey-medium);
    font-weight: 500;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
}

input[type="checkbox"]+label::before,
button[type="submit"],
.fourth-section__card-button,
a.fifth-section__button {
    transition: background-color 0.2s ease-out;
}

input[type="checkbox"]+label:hover::before,
button[type="submit"]:hover,
.fourth-section__card-button:hover,
a.fifth-section__button:hover {
    background-color: var(--grey-proto);
    text-decoration: none;
}

input[type="checkbox"]+label:active::before,
button[type="submit"]:active,
.fourth-section__card-button:active,
a.fifth-section__button:active {
    background-color: var(--grey-regular);
}

.ch-logo img,
.aszh-logo img,
.clients__item {
    display: block;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.footer .ch-logo img,
.footer .aszh-logo img {
    height: 100%;
    width: auto;
    max-height: 100%;
}

svg[aria-hidden="true"] {
    display: block;
    flex: none;
    width: auto;
    height: auto;
}

html::selection {
    background-color: var(--lime);
    color: var(--black);
}

body {
    margin: 0;
    background-color: var(--background-grey);
    color: var(--grey-medium);
    font-family: var(--font-text);
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

#CrossHub-AM {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1294px;
}

.row {
    display: flex;
}

.col {
    display: flex;
    flex-direction: column;
}

.col-50 {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
}

.aszh-logo {
    display: flex;
}

.aszh-logo p {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}

.header {
    padding-top: 30px;
    background-color: var(--background-grey);
}

.header>.container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.header__left {
    display: flex;
    gap: 20px;
    height: 59px;
    align-items: center;
}

.header .aszh-logo {
    flex-direction: column;
    gap: 4px;
}

.header__menu>ul {
    display: flex;
    gap: 20px;
    /* width: 417; */
    padding: 15px 20px;
    border-radius: 8px;
    background-color: var(--grey-medium);
    /* max-height: 47px; */
}

.header__menu a {
    color: var(--white-lime);
    line-height: 17px;
    font-size: 14px;
}

.footer {
    background-color: var(--grey-light);
}

.success-page+.footer {
    /* background-color: unset; */
    padding-top: 50px;
}

.footer>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28px;
    margin-bottom: 30px;
}

.footer .ch-logo {
    height: 20px;
}

.footer .ch-logo img {
    margin: 0 auto;
}

.footer .aszh-logo {
    height: 28px;
    justify-content: flex-end;
    gap: 10px;
}

.footer .aszh-logo p {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: right;
    width: 100px;
}

.footer>.container>div {
    width: 100%;
    font-size: 14px;
}

.section--first {
    background-color: var(--background-grey);
    background-repeat: no-repeat;
    /* height: 930px; */
    /* width: 1530px;
    height: 800px; */

    /* background-image: url("../img/first-section__banner.jpg");
    background-position: 130px 167px;
    background-size: 1530px 800px; */

    background-image: url("../img/First block.jpg");
    background-position: center;
    background-size: cover;
}

.section--second {
    background-color: var(--grey-light);
}

.section--third {
    background-color: var(--grey-medium);
}

.section--fourth {
    background-color: var(--lime);
}

.section--fifth {
    background-color: var(--grey-medium);
    padding-top: 60px;
}

.section--sixth {
    background-color: var(--grey-light);
}

.section--first>.container {
    padding-top: 80px;
    gap: 60px;
    margin-bottom: 72px;
}

.section--second>.container {
    padding-top: 50px;
    gap: 80px;
    margin-bottom: 80px;
}

.section--third>.container {
    padding-top: 50px;
    gap: 60px;
    margin-bottom: 50px;
}

.section--fourth>.container {
    padding-top: 60px;
    gap: 40px;
    margin-bottom: 60px;
}

.section--fifth>.container {
    gap: 10px;
    align-items: center;
}

.section--sixth>.container {
    padding-top: 80px;
    gap: 80px;
    margin-bottom: 80px;
}


.section--first h1 {
    font-weight: 350;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -4%;
    text-align: center;
    color: var(--black);
    margin: 0 auto;
}

.section--first .row {
    display: flex;
    gap: 60px;
}

.first-section__right-block {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 16px;

    width: 597px;
    /* height: 598px; */

    background-color: var(--white);
    box-shadow: 0px 5px 15px rgba(61, 64, 67, 0.1), 0px -9px 0px var(--black);
    border-radius: 8px;

    order: 1;
    flex-grow: 1;
}

.first-section__left-block {
    display: flex;
    flex-direction: column;
    padding: 0px;
    width: 597px;
    height: 368px;
    order: 0;
    flex-grow: 1;
}

.first-section__left-block-title {
    font-weight: 350;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.first-section__left-block-title::before {
    content: '';
    display: block;
    height: 60px;
    min-width: 80px;
    background-image: url('../img/Icons-Medics.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.first-section__left-block-text {
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
    margin-bottom: 20px;
}

.first-section__left-block-subtext {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
    margin-top: 20px;
}

.first-section__right-block-title h2 {
    font-weight: 350;
    font-size: 38px;
    line-height: 38px;
    text-align: center;
    letter-spacing: -0.04em;
    color: var(--black);
}

.first-section__right-block-title p {
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
}

.first-section__right-block-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    isolation: isolate;
    align-items: center;
}

.second-section__cards,
.second-section__cards>.row {
    gap: 40px;
}

.second-section__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 40px;

    /* width: 607px; */
    /* height: 140px; */
    min-height: 120px;
    background: var(--grey-regular);
    border-radius: 8px;

    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
}


.second-section__card::after {
    content: '';
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60px;
    width: 60px;
}

.second-section__card--1::after {
    background-image: url('../img/card_icon1.svg');
}

.second-section__card--2::after {
    background-image: url('../img/card_icon2.svg');
}

.second-section__card--3::after {
    background-image: url('../img/card_icon3.svg');
}

.second-section__card--4::after {
    background-image: url('../img/card_icon4.svg');
}

.second-section__block {
    gap: 40px;
}

.second-section__title {
    font-style: normal;
    font-weight: 350;
    font-size: 38px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
    color: var(--black);
}

.second-section__items {
    display: flex;
    height: 344px;
    width: 100%;
    background-image: url('../img/Items-list02.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.second-section__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    flex: 1;
}

.second-section__item-title {
    font-weight: 400;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
}

.second-section__item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.04em;
    color: var(--black);
}

.second-section__item:nth-child(3) .second-section__item-title,
.second-section__item:nth-child(3) .second-section__item-text {
    color: var(--white);
}

.third-section__left-block {
    gap: 20px;
}

.third-section__left-block::after {
    content: '';
    background-image: url('../img/cba88abb79bf89dc6ffe741db9a3bb03f38c7d92.png');
    background-repeat: no-repeat;
    background-size: 150%;
    height: 597px;
    height: 100%;
    background-position-x: 55%;
    background-position-y: -20px;
}

.third-section__left-block-title,
.fifth-section__title {
    font-weight: 350;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--white);
}

.third-section__left-block-text,
.fifth-section__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--white);
}

.third-section__right-block {
    gap: 20px;
}

.third-section__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--white);
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--grey-medium);
}

.third-section__card-title {
    display: flex;
    gap: 10px;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--black);
    align-items: center;
}

.third-section__card-title::before {
    content: '';
    display: block;
    height: 40px;
    width: 40px;
    background-image: url('../img/Icons-Medics (1).svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.third-section__card:last-child {
    background-color: var(--lime);
}

.third-section__card:last-child .third-section__card-title::before {
    background-image: url('../img/Icons-Medics (2).svg');
}

.fourth-section__title {
    font-size: 38px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
}

.fourth-section__cards {
    gap: 20px;
}

.fourth-section__card {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px;
    gap: 10px;
    background-color: var(--grey-medium);
    border-radius: 8px;
}

.fourth-section__card-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    letter-spacing: -0.04em;
}

.fourth-section__card-button {
    display: block;
    width: 80px;
    min-width: 80px;
    height: 42px;
    border-radius: 20px;
    background-color: var(--lime);
    background-image: url('../img/arrow-left1.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 26px;
    pointer-events: none;
}

.fifth-section__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 20px;
    width: 320px;
    height: 58px;
    background-color: var(--lime);
    border-radius: 10px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: var(--grey-medium);
    margin-bottom: 50px;
}

.first-section__highlight {
    position: relative;
    margin: 0 9px;
    user-select: none;
}

.first-section__highlight::after {
    content: '';
    position: absolute;
    background-color: var(--lime);
    border-radius: 20px;

    width: 153px;
    height: 38px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.am-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.field.field--invalid>label {
    color: var(--red);
}

.field.field--invalid>input[type="text"] {
    box-shadow: inset 0 0 0 1px var(--red);
}

.field--checkbox.field--invalid input[type="checkbox"]+label::before {
    box-shadow: inset 0 0 0 1px var(--red);
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.sixth-section__title {
    font-weight: 350;
    font-size: 38px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
}

.sixth-section__items {
    margin-top: 40px;
    gap: 10px;
}

.sixth-section__item {
    display: flex;
    flex-direction: column;
}

.sixth-section__item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.04em;
    min-height: 38px;
    padding: 0;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

.sixth-section__item-arrow {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 56px;
    min-width: 52px;
    height: 38px;
    background-color: var(--grey-proto);
    border-radius: 40px;
}

.sixth-section__item-arrow-icon {
    display: block;
    width: 18px;
    height: 16px;
    transition: transform 0.35s ease;
}

.sixth-section__item.is-open .sixth-section__item-arrow-icon {
    transform: rotate(90deg);
}

.sixth-section__item-text {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.sixth-section__item.is-open .sixth-section__item-text {
    grid-template-rows: 1fr;
}

.sixth-section__item-text-inner {
    overflow: hidden;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    padding-top: 10px;
}

.sixth-section__item-text-inner span {
    overflow: hidden;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
}

.sixth-section__bottom-block {
    display: flex;
    background-color: var(--grey-light);
    box-shadow: 0px 5px 15px rgba(61, 64, 67, 0.1), 0px -9px 0px var(--black);
    border-radius: 8px;
    margin: 0 77px;
}

.sixth-section__left-block {
    width: 520px;
    padding: 32px 32px 54px 32px;
    gap: 24px;
    flex: 1;
}

.sixth-section__left-block-title {
    font-weight: 350;
    font-size: 38px;
    line-height: 120%;
    color: var(--black);
    margin-bottom: 8px;
}

.sixth-section__left-block-text {
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
}

.sixth-section__left-block-button {
    font-weight: 350;
    font-size: 18px;
    line-height: 120%;
    padding: 10px;


    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-radius: 8px;
    background-color: var(--grey-proto);
}

.sixth-section__left-block-button::before {
    content: '';
    display: block;
    height: 40px;
    width: 60px;
    background-image: url('../img/Icons-Medics (3).svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sixth-section__right-block {
    padding: 32px;
    gap: 16px;
    width: 580px;
    /* height: 418px; */
    background-color: var(--white);
    border-radius: 8px;
}

.sixth-section__right-block .am-form {
    gap: 12px;
}

.sixth-section__right-block .am-form .field>label {
    font-weight: 500;
}

.clients__items {
    position: relative;
    overflow: hidden;
    margin: 50px 0;
}

.clients__items-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.clients__items-inner {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.clients__item {
    flex-shrink: 0;
    height: 2.6042vw;
    width: auto;
    max-width: none;
    min-height: 0;
    padding-inline: 1.5625vw;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.br--mobile {
    display: none;
}

/* .success-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 80px 0;
    background-color: var(--background-grey);
} */

.success-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.success-page__title {
    display: flex;
    gap: 20px;
    font-style: normal;
    font-weight: 350;
    font-size: 60px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
    color: var(--black);
}

.success-page__title::before {
    content: '';
    display: block;
    height: 60px;
    width: 80px;
    background-image: url('../img/Icons-Medics (4).svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.success-page__text {
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
}

.success-page__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 20px;
    background: var(--white);
    box-shadow: 0px 5px 15px rgba(61, 64, 67, 0.1), 0px -9px 0px #3D4043;
    border-radius: 8px;
    margin-top: 20px;
    width: 100%;
}

.success-page__card-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.04em;
}

h1.success-page__card-title {
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 38px;
    line-height: 100%;
    color: var(--black);
    letter-spacing: -0.04em;
}

.success-page .section--first {
    height: auto;
    min-height: calc(100vh - 120px);
    /* background-image: none; */
    padding: 80px 0 60px;
    background-image: url("../img/first-section__banner.jpg");
    background-position: 130px 167px;
    background-size: 1530px 800px;
}

.success-page .section--first>.container {
    padding-top: 0;
    margin-bottom: 150px;
    gap: 40px;
}

@media (max-width: 1089.98px) {
    .container {
        padding: 0 24px;
    }

    .header>.container {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .header__menu {
        width: 100%;
    }

    .header__menu>ul {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .section--first {
        height: auto;
        min-height: 0;
        padding-bottom: 60px;
        background-position: center 140px;
        background-size: 150% auto;
    }

    .section--first>.container,
    .section--second>.container,
    .section--third>.container,
    .section--fourth>.container,
    .section--sixth>.container {
        gap: 48px;
    }

    .section--first>.container {
        padding-top: 60px;
        margin-bottom: 32px;
    }

    .section--second>.container {
        margin-bottom: 60px;
    }

    .section--sixth>.container {
        padding-top: 60px;
        margin-bottom: 60px;
    }

    .section--first h1 {
        font-size: 48px;
    }

    .section--first .row,
    .section--third>.container {
        flex-direction: column;
        gap: 32px;
    }

    .section--first .col-50,
    .section--third .col-50 {
        flex: 1 1 100%;
        width: 100%;
    }

    .first-section__left-block,
    .first-section__right-block {
        width: 100%;
        height: auto;
    }

    .first-section__left-block-title,
    .first-section__right-block-title h2,
    .second-section__title,
    .third-section__left-block-title,
    .fifth-section__title,
    .fourth-section__title,
    .sixth-section__title,
    .sixth-section__left-block-title,
    .success-page__title {
        font-size: 32px;
    }

    .first-section__left-block-title::before,
    .success-page__title::before {
        height: 48px;
        width: 64px;
    }

    .first-section__left-block-text,
    .first-section__right-block-title p,
    .sixth-section__left-block-text {
        font-size: 22px;
        line-height: 120%;
    }

    .second-section__cards>.row {
        flex-wrap: wrap;
    }

    .second-section__card {
        padding: 28px;
        min-height: 100px;
        font-size: 18px;
    }

    .second-section__items {
        height: auto;
        min-height: 260px;
        background-size: cover;
        margin: 0 auto;
    }

    .second-section__item {
        padding: 24px;
        padding-right: 40px;
    }

    .second-section__item-title {
        font-size: 72px;
        line-height: 100%;
    }

    .second-section__item-text {
        font-size: 14px;
    }

    .third-section__left-block::after {
        height: 500px;
        background-size: 100%;
        background-position-y: center;
    }

    .fourth-section__cards {
        flex-wrap: wrap;
    }

    .fourth-section__card {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
        padding: 28px;
    }

    .sixth-section__bottom-block {
        flex-direction: column;
        margin: 0;
    }

    .sixth-section__left-block,
    .sixth-section__right-block {
        width: 100%;
    }

    .sixth-section__item-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {

    input[type="checkbox"]+label:hover::before,
    button[type="submit"]:hover,
    .fourth-section__card-button:hover,
    a.fifth-section__button:hover {
        background-color: var(--lime);
    }

    input[type="checkbox"]+label:active::before,
    button[type="submit"]:active,
    .fourth-section__card-button:active,
    a.fifth-section__button:active {
        background-color: var(--grey-proto);
    }


    .container {
        padding: 0 20px;
    }

    .header {
        padding-top: 20px;
    }

    .header>.container {
        flex-direction: column;
        align-items: stretch;
    }

    .header__left {
        justify-content: space-between;
        width: 100%;
        height: auto;
    }

    .header .ch-logo img {
        height: 25px;
    }

    .header .aszh-logo img {
        height: 26px;
    }

    .header__menu>ul {
        padding: 12px 16px;
    }

    .header__menu a {
        font-size: 13px;
    }

    .section--first {
        background-position: center 120px;
        background-size: 220% auto;
        padding-bottom: 48px;
    }

    .section--first>.container {
        padding-top: 40px;
        gap: 32px;
    }

    .section--first h1 {
        font-size: 36px;
    }

    .section--second>.container,
    .section--third>.container,
    .section--fourth>.container {
        gap: 30px;
    }

    .section--second>.container {
        padding-top: 30px;
        margin-bottom: 90px;
    }

    .section--third>.container {
        padding-top: 30px;
        margin-bottom: 30px;
        gap: 10px;
    }

    .section--fourth>.container {
        padding-top: 40px;
        margin-bottom: 70px;
    }

    .section--fifth {
        padding-top: 60px;
    }

    .section--sixth>.container {
        padding-top: 60px;
        margin-bottom: 60px;
        gap: 60px;
    }

    .first-section__left-block-title,
    .first-section__right-block-title h2,
    .second-section__title,
    .third-section__left-block-title,
    .fifth-section__title,
    .fourth-section__title,
    .sixth-section__title,
    .sixth-section__left-block-title,
    .success-page__title {
        font-size: 28px;
    }

    .first-section__left-block-title {
        margin-bottom: 24px;
        gap: 16px;
    }

    .first-section__left-block-text,
    .first-section__right-block-title p,
    .sixth-section__left-block-text,
    .success-page__text {
        font-size: 18px;
    }

    .first-section__left-block-subtext,
    .field>label,
    input[type="checkbox"]+label,
    input[type="checkbox"]+label a {
        font-size: 16px;
        line-height: 120%;
    }

    .first-section__right-block {
        padding: 28px 24px;
    }

    .first-section__right-block-title h2 {
        line-height: 110%;
    }

    .first-section__highlight::after {
        width: 120px;
        height: 30px;
    }

    button[type="submit"] {
        height: 52px;
        font-size: 22px;
        line-height: 26px;
        padding: 12px 24px;
    }

    .second-section__cards,
    .second-section__cards>.row {
        gap: 16px;
    }

    .second-section__cards>.row {
        flex-direction: column;
    }

    .second-section__card {
        padding: 24px;
        gap: 20px;
    }

    .second-section__block {
        margin-top: 28px;
        gap: 40px;
    }

    .second-section__items {
        flex-direction: column;
        min-height: 0;
        background-image: url('../img/Items-list02 (1).png');
        height: 906px;
        width: 336px;
        border-radius: 8px;
    }

    .second-section__item {
        min-height: 160px;
        padding: 20px 20px 60px 20px;
    }

    .second-section__item:nth-child(3) {
        border-radius: 8px;
    }

    .second-section__item-text {
        font-size: 18px;
        line-height: 100%;
    }

    .third-section__left-block::after {
        height: 420px;
        background-size: 120%;
    }

    .third-section__card {
        padding: 24px;
    }

    .third-section__card-title {
        font-size: 22px;
    }

    .fourth-section__cards {
        flex-direction: column;
        gap: 12px;
    }

    .fourth-section__card {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        padding: 24px;
    }

    .fourth-section__card-title {
        align-self: flex-start;
    }

    .fifth-section__title,
    .fifth-section__text {
        text-align: center;
    }

    .fifth-section__button {
        width: 100%;
        max-width: 320px;
        margin-bottom: 40px;
    }

    .clients__items {
        margin: 30px 0;
    }

    .clients__item {
        height: 60px;
        padding-inline: 20px;
    }

    .sixth-section__items {
        margin-top: 40px;
    }

    .sixth-section__item-title {
        font-size: 20px;
        gap: 12px;
    }

    .sixth-section__item-arrow {
        width: 48px;
        min-width: 44px;
        height: 34px;
    }

    .sixth-section__item-text-inner,
    .sixth-section__item-text-inner span {
        font-size: 16px;
        line-height: 120%;
    }

    .sixth-section__bottom-block {
        margin: 0;
    }

    .sixth-section__left-block {
        padding: 24px 24px 32px;
        gap: 16px;
    }

    .sixth-section__right-block {
        padding: 24px;
    }

    .sixth-section__left-block-button {
        font-size: 16px;
        gap: 12px;
    }

    .sixth-section__left-block-button::before {
        height: 32px;
        width: 48px;
    }

    .footer>.container>div {
        width: auto;
    }

    .footer>.container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: auto;
        margin-bottom: 24px;
    }

    .footer .aszh-logo {
        height: 40px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer .aszh-logo p {
        text-align: left;
        width: 100%;
    }

    .success-page+.footer {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .success-page .section--first {
        /* min-height: calc(100vh - 100px); */
        min-height: 100%;
        padding: 40px 0 90px;
        background-image: none;
    }

    .success-page .section--first>.container {
        margin-bottom: 0px;
        gap: 20px;
    }

    .success-page__content {
        gap: 24px;
    }

    .success-page__title {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .success-page__title::before {
        background-image: url('../img/Icons-Medics (5).svg');
        height: 42px;
        width: 72px;
    }

    .success-page__card {
        padding: 28px 24px;
    }

    h1.success-page__card-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .br--desktop {
        display: none;
    }

    .br--mobile {
        display: unset;
    }

    .container {
        padding: 0 12px;
    }

    .header__menu>ul {
        justify-content: space-around;
        gap: 13.5px;
        padding: 12px 10px;
    }

    .header__menu a {
        font-size: 12px;
        line-height: 16px;
    }

    .section--first {
        background-image: none;
        padding-bottom: 40px;
    }

    .section--first>.container {
        padding-top: 40px;
        gap: 20px;
    }

    .section--first h1 {
        font-size: 26px;
    }

    .section--first .row {
        gap: 24px;
    }

    .first-section__left-block-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .first-section__left-block-text,
    .first-section__left-block-subtext,
    .first-section__right-block-title h2 {
        display: none;
    }

    .second-section__title,
    .third-section__left-block-title,
    .fifth-section__title,
    .fourth-section__title,
    .sixth-section__title,
    .sixth-section__left-block-title,
    .success-page__title {
        font-size: 26px;
    }

    .first-section__left-block-title::before {
        min-width: 42px;
    }

    .first-section__left-block-text,
    .sixth-section__left-block-text {
        font-size: 16px;
    }

    .first-section__left-block-subtext,
    .third-section__left-block-text,
    .field--button p,
    .field>label,
    input[type="checkbox"]+label,
    input[type="checkbox"]+label a {
        font-size: 14px;
    }

    .first-section__right-block {
        padding: 20px;
        gap: 12px;
    }

    .first-section__right-block-title {
        gap: 12px;
    }

    .first-section__highlight {
        margin: 0 6px;
    }

    .first-section__highlight::after {
        width: 96px;
        height: 24px;
    }

    .field>input[type="text"] {
        padding: 14px 12px;
    }

    button[type="submit"] {
        height: 48px;
        font-size: 20px;
        line-height: 100%;
    }

    .second-section__card {
        padding: 20px;
        font-size: 18px;
        line-height: 120%;
    }

    .second-section__card::after {
        height: 60px;
        width: 60px;
        min-width: 60px;
    }

    .third-section__right-block {
        gap: 12px;
    }

    .third-section__left-block::after {
        height: 336px;
    }

    .third-section__card {
        padding: 20px;
        gap: 8px;
        font-size: 14px;
    }

    .third-section__card-title {
        font-size: 20px;
    }

    .third-section__card-title::before {
        height: 32px;
        width: 32px;
    }

    .fourth-section__card {
        padding: 20px;
        gap: 16px;
    }

    .fourth-section__card-button {
        width: 64px;
        min-width: 64px;
        height: 36px;
        background-size: 24px 20px;
    }

    .fifth-section__button {
        width: 100%;
        /* max-width: none; */
        height: 52px;
        font-size: 16px;
        padding: 14px 16px;
    }

    .first-section__right-block-title p,
    .fourth-section__card-title {
        font-size: 18px;
    }

    .sixth-section__items {
        gap: 10px;
    }

    .sixth-section__item-title {
        gap: 10px;
    }

    .sixth-section__item-text-inner,
    .sixth-section__item-text-inner span {
        font-size: 14px;
        line-height: 100%;
    }

    .sixth-section__item-arrow {
        width: 56px;
        min-width: 40px;
        height: 38px;
    }

    .sixth-section__item-arrow-icon {
        height: 14px;
    }

    .sixth-section__left-block {
        gap: 24px;
    }

    .sixth-section__left-block,
    .sixth-section__right-block {
        padding: 20px;
    }

    .sixth-section__left-block-button {
        padding: 8px;
    }

    .sixth-section__left-block-text {
        font-size: 20px;
        line-height: 120%;
    }

    .success-page__card {
        padding: 20px;
        gap: 6px;
    }

    h1.success-page__card-title {
        font-size: 26px;
        margin-top: 14px;
    }

    .success-page .section--first {
        padding: 40px 0 72px;
    }

    .success-page__card-text {
        font-size: 16px;
    }

}

@media (max-width: 400.98px) {
    .third-section__left-block::after {
        height: 276px;
        background-size: 130%;
        background-position-x: 57%;
    }
}