@font-face {
    font-family: 'Suisse Int\'l Condensed';
    src: url("../fonts/SuisseIntlCond-Medium.woff2") format("woff2"), url("../fonts/SuisseIntlCond-Medium.woff") format("woff"), url("../fonts/SuisseIntlCond-Medium.eot") format("eot"), url("../fonts/SuisseIntlCond-Medium.ttf") format("ttf"), url("../fonts/SuisseIntlCond-Medium.svg") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Int\'l Condensed';
    src: url("../fonts/SuisseIntlCond-Bold.woff2") format("woff2"), url("../fonts/SuisseIntlCond-Bold.woff") format("woff"), url("../fonts/SuisseIntlCond-Bold.eot") format("eot"), url("../fonts/SuisseIntlCond-Bold.ttf") format("ttf"), url("../fonts/SuisseIntlCond-Bold.svg") format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: "Suisse Int'l Condensed", sans-serif;
    --content-width: 85rem;
    --container-offset: 2.5rem;
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --white-color: #fff;
    --black-color: #000;
    --background-color: #080014;
    --background-color-light: #C9C3D1;
    --text-color-light: #BFB9C7;
    --text-color-dark: #080014;
    --text-color-gray: #7C7585;
    --accent-color: #FF00E5;
    --accent-color-dark: #571157;
    --accent-color-button: #3D0C3D;
    --error-color: #B00000;
    --dividers-for-dark-bg: #574D66;
    --line-on-white: #A29CAB;
    --cubic-bezier: cubic-bezier(.25, .1, .25, 1);
    --cubic-main: cubic-bezier(.36, .3, 0, 1);
}

@media screen and (min-width: 90.0625rem) {
    :root {
        --content-width: calc(1360 / 1440 * 100 * 1vw);
        --container-offset: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    :root {
        --container-offset: 1.25rem;
    }
}

html {
    box-sizing: border-box;
}

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

.page {
    height: 100%;
    font-family: var(--font-primary);
    -webkit-text-size-adjust: 100%;
}

.main {
    margin-top: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 90.0625rem) {
    .main {
        margin-top: calc(64 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .main {
        margin-top: 3.5rem;
    }
}

::selection {
    background: var(--accent-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--white-color);
}

.page__body {
    margin: 0;
    min-width: 320px;
    min-height: 100%;
    font-size: 1rem;
    background-color: var(--background-color);
}

@media screen and (min-width: 90.0625rem) {
    .page__body {
        font-size: calc(16 / 1440 * 100 * 1vw);
    }
}

.disable-scroll {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
}

.wrapper__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.footer {
    margin-top: auto;
}

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

.input {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: var(--white-color);
}

.input::-webkit-search-decoration, .input::-webkit-search-cancel-button, .input::-webkit-search-results-button, .input::-webkit-search-results-decoration {
    display: none;
}

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

.container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: var(--container-width);
}

.container_col-2 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

@media screen and (min-width: 90.0625rem) {
    .container_col-2 {
        gap: calc(32 / 1440 * 100 * 1vw);
    }
}

.container_line {
    position: relative;
}

.container_line::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 1px;
    background-color: var(--background-color-light);
    opacity: 0.3;
}

@media screen and (min-width: 90.0625rem) {
    .container_line::before {
        width: calc(1 / 1440 * 100 * 1vw);
    }
}

.container__column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    flex-basis: 50%;
    height: auto;
}

.reset-styles {
    padding: 0;
    margin: 0;
}

.text,
.link {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
}

.text_extra-large,
.link_extra-large {
    font-size: calc(min(max(2.25rem, 5.5vw), 4.5rem));
    line-height: 0.944;
    letter-spacing: -2.16px;
}

@media screen and (min-width: 90.0625rem) {

    .text_extra-large,
    .link_extra-large {
        font-size: calc(72 / 1440 * 100 * 1vw);
        letter-spacing: calc(-2.16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text_extra-large,
    .link_extra-large {
        line-height: 0.888;
        letter-spacing: -0.72px;
    }
}

.text_large,
.link_large {
    font-size: calc(min(max(1.75rem, 3.1vw), 2.75rem));
    line-height: 1;
    letter-spacing: -0.44px;
}

@media screen and (min-width: 90.0625rem) {

    .text_large,
    .link_large {
        font-size: calc(44 / 1440 * 100 * 1vw);
        letter-spacing: calc(-0.44 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text_large,
    .link_large {
        line-height: 1.143;
        letter-spacing: -0.56px;
    }
}

.text_medium,
.link_medium {
    font-size: 1.75rem;
    line-height: 1.14;
}

@media screen and (min-width: 90.0625rem) {

    .text_medium,
    .link_medium {
        font-size: calc(28 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text_medium,
    .link_medium {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: -0.2px;
    }
}

.text_small,
.link_small {
    font-size: 1.25rem;
    line-height: 1.2;
}

@media screen and (min-width: 90.0625rem) {

    .text_small,
    .link_small {
        font-size: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text_small,
    .link_small {
        font-size: 1rem;
        line-height: 1;
    }
}

.link {
    padding: 0;
    margin: 0;
    text-decoration: none;
    border: none;
    background: none;
    transition: color 0.4s var(--cubic-bezier);
    cursor: pointer;
}

@media (any-hover: hover) {
    .link:hover, .link:focus {
        outline: none;
        color: var(--accent-color);
    }
}

.link_medium {
    line-height: 1;
}

.link_underline {
    background-image: linear-gradient(var(--dividers-for-dark-bg), var(--dividers-for-dark-bg));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    transition: color 0.4s var(--cubic-bezier), background-size 0.3s var(--cubic-bezier) 0.1s;
}

@media screen and (min-width: 90.0625rem) {
    .link_underline {
        background-size: 100% calc(1 / 1440 * 100 * 1vw);
    }
}

@media (any-hover: hover) {
    .link_underline:hover, .link_underline:focus {
        outline: none;
        color: var(--accent-color);
        background-position: 100% 100%;
        background-size: 0% 1px;
    }
}

@media screen and (any-hover: hover) and (min-width: 90.0625rem) {
    .link_underline:hover, .link_underline:focus {
        background-size: 0% calc(1 / 1440 * 100 * 1vw);
    }
}

.button {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.button_small {
    padding: 0.375rem 0.5rem;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    border: 2px solid var(--background-color-light);
    background-color: transparent;
    transition: color 0.4s var(--cubic-bezier), border-color 0.4s var(--cubic-bezier), background-color 0.4s var(--cubic-bezier);
}

@media (any-hover: hover) {
    .button_small:hover, .button_small:focus {
        outline: none;
        color: var(--accent-color);
        background-color: var(--accent-color-dark);
        border-color: var(--accent-color-dark);
    }
}

@media screen and (min-width: 90.0625rem) {
    .button_small {
        padding: calc(6 / 1440 * 100 * 1vw) calc(8 / 1440 * 100 * 1vw);
        font-size: calc(20 / 1440 * 100 * 1vw);
        border: calc(2 / 1440 * 100 * 1vw) solid var(--background-color-light);
    }
}

.button_large {
    position: relative;
    right: 1rem;
    padding: 1.875rem 2rem;
    width: calc(100% + var(--container-offset) + 1rem);
    gap: 1.25rem;
    justify-content: space-between;
    background-color: var(--accent-color-button);
}

@media screen and (min-width: 90.0625rem) {
    .button_large {
        right: calc(16 / 1440 * 100 * 1vw);
        padding: calc(30 / 1440 * 100 * 1vw) calc(32 / 1440 * 100 * 1vw);
        width: calc(100% + var(--container-offset) + calc(16 / 1440 * 100 * 1vw));
        gap: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .button_large {
        right: var(--container-offset);
        width: calc(100% + var(--container-offset) * 2);
    }
}

@media screen and (max-width: 57.5rem) {
    .button_large {
        padding: 1.125rem 1.25rem;
    }
}

@media (any-hover: hover) {
    .button_large:hover, .button_large:focus {
        outline: none;
    }

    .button_large:hover::before, .button_large:focus::before {
        left: 0;
        width: 100%;
    }
}

.button_large::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    z-index: 0;
    background-color: var(--accent-color-dark);
    transition: width 0.6s var(--cubic-bezier);
}

.button_large .button__arrow {
    position: relative;
    z-index: 1;
    width: 4rem;
    height: 4rem;
    stroke: var(--accent-color);
    stroke-width: 2px;
}

@media screen and (min-width: 90.0625rem) {
    .button_large .button__arrow {
        width: calc(64 / 1440 * 100 * 1vw);
        height: calc(64 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .button_large .button__arrow {
        width: 3rem;
        height: 3rem;
    }
}

.button_large .button__text {
    position: relative;
    z-index: 1;
    color: var(--accent-color);
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.44px;
    text-transform: uppercase;
    text-align: start;
}

@media screen and (min-width: 90.0625rem) {
    .button_large .button__text {
        font-size: calc(44 / 1440 * 100 * 1vw);
        letter-spacing: calc(-0.44 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .button_large .button__text {
        font-size: 1.75rem;
        letter-spacing: -0.56px;
    }
}

.button.button_background {
    position: relative;
    padding: 1rem 1.25rem;
    border: none;
}

@media screen and (min-width: 90.0625rem) {
    .button.button_background {
        padding: calc(16 / 1440 * 100 * 1vw) calc(20 / 1440 * 100 * 1vw);
    }
}

.button.button_background::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-color-dark);
    transition: width 0.6s var(--cubic-bezier);
}

.button.button_background .button__text {
    position: relative;
    z-index: 1;
}

@media (any-hover: hover) {
    .button.button_background:hover {
        background: var(--background-color);
    }

    .button.button_background:hover::before {
        width: 100%;
        right: unset;
        left: 0;
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.hero-title {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-title {
    text-align: center;
    font-size: calc(min(max(6.25rem, 17.5vw), 15.75rem));
    line-height: 0.7778;
    letter-spacing: -10.08px;
}

@media screen and (min-width: 90.0625rem) {
    .hero-title {
        font-size: calc(252 / 1440 * 100 * 1vw);
        letter-spacing: calc(-10.08 / 1440 * 100 * 1vw);
    }
}

@media screen and (min-width: 160.0625rem) {
    .hero-title {
        font-size: 28rem;
        letter-spacing: -22.6px;
    }
}

@media screen and (max-width: 57.5rem) {
    .hero-title {
        line-height: 0.8;
        letter-spacing: -4px;
    }
}

@media screen and (max-width: 22.5rem) {
    .hero-title {
        font-size: 5.625rem;
    }
}

.h1,
h1 {
    font-size: calc(min(max(3.25rem, 11.4vw), 10.25rem));
    line-height: 0.8;
    letter-spacing: -1.64px;
}

@media screen and (min-width: 90.0625rem) {

    .h1,
    h1 {
        font-size: calc(164 / 1440 * 100 * 1vw);
        letter-spacing: calc(-1.64 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .h1,
    h1 {
        line-height: 0.846;
        letter-spacing: -1.04px;
    }
}

.h2,
h2 {
    font-size: calc(min(max(2.75rem, 7vw), 6.25rem));
    line-height: 0.84;
    letter-spacing: -1px;
}

@media screen and (min-width: 90.0625rem) {

    .h2,
    h2 {
        font-size: calc(100 / 1440 * 100 * 1vw);
        letter-spacing: calc(-1 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .h2,
    h2 {
        line-height: 0.909;
        letter-spacing: -0.46px;
    }
}

.h3,
h3 {
    font-size: calc(min(max(2.25rem, 5vw), 4.5rem));
    font-weight: 500;
    line-height: 0.944;
    letter-spacing: -2.16px;
}

@media screen and (min-width: 90.0625rem) {

    .h3,
    h3 {
        font-size: calc(72 / 1440 * 100 * 1vw);
        letter-spacing: calc(-2.16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .h3,
    h3 {
        line-height: 1;
        letter-spacing: -0.72px;
    }
}

.h4,
h4,
h5,
h6 {
    font-size: calc(min(max(1.75rem, 2.5vw), 2.75rem));
    line-height: 1;
    letter-spacing: -0.44px;
}

@media screen and (min-width: 90.0625rem) {

    .h4,
    h4,
    h5,
    h6 {
        font-size: calc(44 / 1440 * 100 * 1vw);
        letter-spacing: calc(-0.44 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .h4,
    h4,
    h5,
    h6 {
        line-height: 1.142;
        letter-spacing: -0.56px;
    }
}

.section-background {
    background-color: var(--background-color-light);
}

.section-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 21.1875rem;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    fill: none;
    stroke: var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .section-arrow {
        width: calc(339 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .section-arrow {
        display: none;
    }
}

.to-top {
    width: 2.5rem;
    height: 2.5rem;
}

@media (any-hover: hover) {
    .to-top:hover svg {
        fill: var(--accent-color);
    }
}

@media screen and (min-width: 90.0625rem) {
    .to-top {
        width: calc(40 / 1440 * 100 * 1vw);
        height: calc(40 / 1440 * 100 * 1vw);
    }
}

.to-top__icon {
    display: flex;
    width: 100%;
    height: 100%;
    fill: var(--text-color-gray);
    transition: 0.4s var(--cubic-bezier);
}

.tag {
    padding: 0.125rem 0.5rem;
    display: flex;
    color: var(--background-color-light);
    text-transform: uppercase;
    border-radius: 48px;
    border: 2px solid var(--background-color-light);
    user-select: none;
}

@media screen and (min-width: 90.0625rem) {
    .tag {
        padding: calc(2 / 1440 * 100 * 1vw) calc(8 / 1440 * 100 * 1vw);
        border-radius: calc(48 / 1440 * 100 * 1vw);
        border: calc(2 / 1440 * 100 * 1vw) solid var(--background-color-light);
    }
}

@media screen and (max-width: 57.5rem) {
    .tag {
        padding: 0.25rem 0.375rem;
    }
}

.num-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 0.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .num-list {
        margin-top: calc(20 / 1440 * 100 * 1vw);
        column-gap: calc(32 / 1440 * 100 * 1vw);
        row-gap: calc(12 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .num-list {
        margin-top: 1rem;
        column-gap: 1rem;
        row-gap: 1rem;
    }
}

.num-list__item {
    flex-basis: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .num-list__item {
        flex-basis: calc(50% - calc(16 / 1440 * 100 * 1vw));
        gap: calc(8 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .num-list__item {
        flex-basis: calc(50% - 0.5rem);
    }
}

.num-list__name {
    color: var(--background-color-light);
}

.close-modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 7;
    width: 4rem;
    height: 4rem;
    background-color: var(--background-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease,
    visibility 1s ease;
}

@media screen and (min-width: 90.0625rem) {
    .close-modal {
        width: calc(64 / 1440 * 100 * 1vw);
        height: calc(64 / 1440 * 100 * 1vw);
    }
}

@media (any-hover: hover) {
    .close-modal:hover, .close-modal:focus {
        outline: none;
    }

    .close-modal:hover .close-modal__image, .close-modal:focus .close-modal__image {
        stroke: var(--accent-color);
    }
}

@media screen and (max-width: 57.5rem) {
    .close-modal {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.close-modal_active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.close-modal__image {
    width: 100%;
    height: 100%;
    stroke: var(--background-color-light);
    stroke-width: 2px;
    transition: stroke 0.4s var(--cubic-bezier);
}

#wpadminbar {
    display: none;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
    transform: opacity 0.3s var(--cubic-bezier);
}

.total-error {
    margin-top: auto;
    margin-bottom: 0.75rem;
    display: none;
    color: var(--error-color);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (min-width: 90.0625rem) {
    .total-error {
        margin-bottom: calc(12 / 1440 * 100 * 1vw);
        font-size: calc(20 / 1440 * 100 * 1vw);
    }
}

.current {
    position: fixed;
    z-index: 5;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    user-select: none;
    pointer-events: none;
}

@media screen and (min-width: 90.0625rem) {
    .current {
        bottom: calc(40 / 1440 * 100 * 1vw);
    }
}

.current__container {
    position: relative;
    width: 100%;
}

.current__to-top {
    margin-left: auto;
    box-sizing: content-box;
    pointer-events: all;
    transform: translateY(18.75rem);
    transition: transform 0.6s var(--cubic-bezier);
}

@media screen and (min-width: 90.0625rem) {
    .current__to-top {
        transform: translateY(calc(300 / 1440 * 100 * 1vw));
    }
}

.current__to-top_active {
    transform: translateY(0);
}

@media screen and (max-width: 57.5rem) {
    .current__to-top {
        margin-left: 0;
    }
}

.full-screen {
    min-height: calc(100vh - 4rem);
}

@media screen and (min-width: 90.0625rem) {
    .full-screen {
        min-height: calc(100vh - calc(64 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 57.5rem) {
    .full-screen {
        min-height: calc(100vh - 3.5rem);
    }
}

.preloader {
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    padding-bottom: 7.5rem;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    background-color: var(--background-color);
    transition: opacity 0.5s var(--cubic-main);
}

.preloader__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__text {
    position: relative;
    color: var(--text-color-light);
}

.preloader__text_hidden {
    position: relative;
    opacity: 0;
}

.preloader__image {
    width: 74px;
    height: 76px;
    stroke: var(--dividers-for-dark-bg);
    stroke-width: 1.5;
    transform-origin: bottom;
    transform: scale(1);
    transition: transform 1s cubic-bezier(0.18, 1.06, 0.42, 0.96);
    will-change: transform, stroke-width;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

@media screen and (min-width: 90.0625rem) {
    .preloader__image {
        width: calc(47 / 1440 * 100 * 1vw);
        height: calc(76 / 1440 * 100 * 1vw);
    }
}

.error-page {
    margin-top: -4rem;
    height: 100vh;
    background-image: url(../img/svg/error-page.svg);
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 90.0625rem) {
    .error-page {
        margin-top: calc(-64 / 1440 * 100 * 1vw);
    }
}

.error-page__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 90.0625rem) {
    .error-page__container {
        gap: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .error-page__container {
        gap: 0.75rem;
    }
}

.error-page__background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: var(--dividers-for-dark-bg);
}

.error-page__title {
    color: var(--background-color-light);
    font-weight: 500;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (any-hover: hover) {
    .logo:hover, .logo:focus {
        outline: none;
    }

    .logo:hover .logo__image, .logo:focus .logo__image {
        fill: var(--accent-color);
    }
}

.logo__image {
    display: flex;
    width: 10.375rem;
    height: 2.5rem;
    fill: var(--background-color-light);
    transition: fill 0.4s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .logo__image {
        width: calc(166 / 1440 * 100 * 1vw);
        height: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .logo__image {
        height: 2rem;
        width: 8.25rem;
    }
}

.nav {
    flex-shrink: 0;
}

.nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.3125rem;
}

@media screen and (min-width: 90.0625rem) {
    .nav__list {
        gap: calc(37 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .nav__list {
        gap: 0.875rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .nav__list {
        margin-top: 17.6vh;
        flex-direction: column;
        gap: 1rem;
        align-items: start;
    }
}

.nav__item_active .nav__link {
    color: var(--background-color-light);
}

@media (any-hover: hover) {
    .nav__item_active .nav__link:hover, .nav__item_active .nav__link:focus {
        outline: none;
        color: var(--accent-color);
    }
}

.nav__link {
    color: var(--text-color-gray);
}

@media screen and (max-width: 57.5rem) {
    .nav__link {
        display: flex;
        height: 2.75rem;
        font-size: 2.75rem;
        line-height: 1;
        letter-spacing: -0.44px;
        font-weight: 700;
    }
}

.home .nav__link {
    color: var(--background-color-light);
}

@media (any-hover: hover) {
    .home .nav__link:hover, .home .nav__link:focus {
        outline: none;
        color: var(--accent-color);
    }
}

@media screen and (max-width: 57.5rem) {
    .burger-menu {
        position: absolute;
        right: 0;
        top: 100%;
        padding: 1rem var(--container-offset) 3rem;
        display: flex;
        flex-direction: column;
        height: calc(100vh - 3.5rem);
        width: 100%;
        background-color: var(--background-color);
        overflow-y: auto;
        overflow-x: hidden;
        transition: opacity 0.6s var(--cubic-main), visibility 0.6s var(--cubic-main), transform 0.6s var(--cubic-main);
        transform: translateX(100%);
    }

    .burger-menu_active {
        transform: translateY(0);
    }
}

.burger-menu__item {
    display: none;
}

@media screen and (max-width: 57.5rem) {
    .burger-menu__item {
        display: flex;
    }
}

.burger-menu__coordinate {
    color: var(--text-color-gray);
    text-decoration: none;
}

.burger-menu__button {
    margin-top: 1.75rem;
    margin-bottom: auto;
    padding: 0.75rem 1.25rem;
    width: 100%;
    max-width: 23.125rem;
    color: var(--background-color-light);
}

@media screen and (max-width: 57.5rem) {
    .burger-menu__bottom {
        margin-top: 2.5rem;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
}

.burger-menu__link {
    white-space: nowrap;
    color: var(--text-color-gray);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 0.75rem 0;
    background-color: var(--background-color);
}

@media screen and (min-width: 90.0625rem) {
    .header {
        padding: calc(12 / 1440 * 100 * 1vw) 0;
    }
}

.header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

@media screen and (min-width: 90.0625rem) {
    .header__container {
        gap: calc(16 / 1440 * 100 * 1vw);
    }
}

.header__block {
    display: flex;
    align-items: center;
}

.header__block_common {
    flex-basis: 50%;
    flex-shrink: 0;
    gap: 4.15625rem;
}

@media screen and (min-width: 90.0625rem) {
    .header__block_common {
        gap: calc(66.5 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .header__block_common {
        gap: 1.875rem;
    }
}

.header__block_secondary {
    width: 100%;
    justify-content: end;
}

.header__coordinate {
    color: var(--text-color-gray);
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 57.5rem) {
    .header__coordinate {
        display: none;
    }
}

.header__button {
    color: var(--background-color-light);
}

@media screen and (max-width: 57.5rem) {
    .header__button {
        display: none;
    }
}

.header__burger {
    position: relative;
    display: none;
    color: var(--background-color-light);
}

@media screen and (max-width: 57.5rem) {
    .header__burger {
        display: block;
    }
}

.header__burger::before {
    content: '';
    position: absolute;
    top: -0.625rem;
    left: -0.625rem;
    width: calc(100% + 1.25rem);
    height: calc(100% + 1.25rem);
}

@media screen and (min-width: 90.0625rem) {
    .header__burger::before {
        top: calc(-10 / 1440 * 100 * 1vw);
        left: calc(-10 / 1440 * 100 * 1vw);
        width: calc(100% + calc(20 / 1440 * 100 * 1vw));
        height: calc(100% + calc(20 / 1440 * 100 * 1vw));
    }
}

.footer {
    --footerTopLine: 0%;
    --footerCenterLine: 0%;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: var(--footerTopLine);
    height: 2px;
    background-color: var(--background-color-light);
}

@media screen and (min-width: 90.0625rem) {
    .footer::before {
        height: calc(2 / 1440 * 100 * 1vw);
    }
}

.footer__container {
    padding-top: 1.625rem;
    padding-bottom: 2.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .footer__container {
        padding-top: calc(26 / 1440 * 100 * 1vw);
        padding-bottom: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .footer__container {
        padding-top: 0.875rem;
        padding-bottom: 2.25rem;
        gap: 1rem;
    }
}

.footer__container::before {
    height: var(--footerCenterLine);
}

@media screen and (max-width: 31.875rem) {
    .footer__container::before {
        display: none;
    }
}

.footer__to-top {
    position: absolute;
    top: 1.5rem;
    right: var(--container-offset);
}

@media screen and (min-width: 90.0625rem) {
    .footer__to-top {
        top: calc(24 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .footer__to-top {
        top: unset;
        right: unset;
        bottom: 2.25rem;
        left: var(--container-offset);
    }
}

.footer__column {
    justify-content: space-between;
    gap: 1.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .footer__column {
        gap: calc(28 / 1440 * 100 * 1vw);
    }
}

.footer__button {
    margin-top: auto;
    color: var(--background-color-light);
    text-align: start;
}

@media screen and (max-width: 57.5rem) {
    .footer__button {
        margin-top: 0;
    }
}

@media screen and (max-width: 22.5rem) {
    .footer__button {
        font-size: 1.875rem;
    }
}

.footer__nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    row-gap: 0.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .footer__nav {
        column-gap: calc(32 / 1440 * 100 * 1vw);
        row-gap: calc(12 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 88.75rem) {
    .footer__nav {
        flex-direction: column;
    }
}

@media screen and (max-width: 57.5rem) {
    .footer__nav {
        display: none;
    }
}

.footer__nav_mobile {
    display: none;
}

@media screen and (max-width: 57.5rem) {
    .footer__nav_mobile {
        display: flex;
    }
}

.footer__nav_mobile .nav__link {
    height: auto;
    width: fit-content;
    font-size: 1rem;
    line-height: 1;
}

@media screen and (min-width: 90.0625rem) {
    .footer__nav_mobile .nav__link {
        font-size: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 22.5rem) {
    .footer__nav_mobile .nav__link {
        font-size: 0.875rem;
        white-space: normal;
    }
}

.footer__nav .nav__item {
    flex-basis: 30%;
}

@media screen and (max-width: 88.75rem) {
    .footer__nav .nav__item {
        flex-basis: 100%;
    }
}

.footer__nav .nav__link {
    color: var(--text-color-gray);
}

@media (any-hover: hover) {
    .footer__nav .nav__link:hover, .footer__nav .nav__link:focus {
        outline: none;
        color: var(--accent-color);
    }
}

.social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .social {
        gap: calc(8 / 1440 * 100 * 1vw);
    }
}

.social__link {
    display: flex;
    width: fit-content;
    height: 100%;
    color: var(--background-color-light);
}

@media screen and (max-width: 22.5rem) {
    .social__link {
        font-size: 1.875rem;
    }
}

.error404 .footer {
    display: none;
}

.hero {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    height: auto;
}

@media screen and (min-width: 90.0625rem) {
    .hero {
        padding-top: calc(16 / 1440 * 100 * 1vw);
        padding-bottom: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .hero {
        padding-bottom: 1.5rem;
        padding-top: 0.5625rem;
    }
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: var(--text-color-light);
}

.hero__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__subtitle {
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    width: 100%;
    max-width: 27.5rem;
    display: block;
    text-align: center;
}

@media screen and (min-width: 90.0625rem) {
    .hero__subtitle {
        margin-top: calc(8 / 1440 * 100 * 1vw);
        margin-bottom: calc(28 / 1440 * 100 * 1vw);
        font-size: calc(28 / 1440 * 100 * 1vw);
        max-width: calc(440 / 1440 * 100 * 1vw);
    }
}

@media screen and (min-width: 160.0625rem) {
    .hero__subtitle {
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .hero__subtitle {
        margin-bottom: 1.25rem;
    }
}

.hero__arrow {
    margin: auto;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8.25rem;
    width: auto;
}

@media screen and (min-width: 90.0625rem) {
    .hero__arrow {
        margin-bottom: calc(40 / 1440 * 100 * 1vw);
        height: calc(132 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .hero__arrow {
        margin-bottom: 1.5rem;
        height: 6.25rem;
    }
}

.hero__image {
    display: flex;
    width: 12.5rem;
    height: 100%;
    stroke-width: 1px;
    stroke: var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .hero.full-screen .hero__image {
        display: none;
    }
}

.get-do {
    position: relative;
    z-index: 1;
    padding: 3.25rem 0;
}

@media screen and (min-width: 90.0625rem) {
    .get-do {
        padding: calc(52 / 1440 * 100 * 1vw) 0;
    }
}

@media screen and (max-width: 57.5rem) {
    .get-do {
        padding: 1.25rem 0 2.25rem;
    }
}

.get-do__container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

@media screen and (min-width: 90.0625rem) {
    .get-do__container {
        gap: calc(32 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .get-do__container {
        flex-direction: column-reverse;
        gap: 1.125rem;
    }

    .get-do__container::before {
        display: none;
    }
}

.get-do__container::before {
    background-color: var(--line-on-white);
}

.get-do__tag {
    color: var(--text-color-dark);
    border-color: var(--text-color-dark);
}

.get-do__column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .get-do__column {
        gap: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .get-do__column {
        width: 100%;
        gap: 0.75rem;
    }

    .get-do__column:nth-child(2) {
        padding-bottom: 1.125rem;
        border-bottom: solid 1px var(--line-on-white);
    }
}

.get-do__title, .get-do__text {
    color: var(--text-color-dark);
}

.get-do__text {
    max-width: 34.125rem;
}

@media screen and (min-width: 90.0625rem) {
    .get-do__text {
        max-width: calc(546 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .get-do__text {
        max-width: unset;
    }
}

.get-do__button {
    padding: 0.875rem 1.125rem;
    background-color: var(--background-color);
    border-color: var(--background-color);
    color: var(--background-color-light);
    font-size: 1.75rem;
    line-height: 1;
}

@media screen and (min-width: 90.0625rem) {
    .get-do__button {
        padding: calc(14 / 1440 * 100 * 1vw) calc(18 / 1440 * 100 * 1vw);
        font-size: calc(28 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .get-do__button {
        margin-top: 0.5rem;
        padding: 0.75rem 1.125rem;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 31.875rem) {
    .get-do__button {
        width: 100%;
    }
}

.services {
    padding: 3.75rem 0 10rem;
    color: var(--text-color-light);
}

@media screen and (min-width: 90.0625rem) {
    .services {
        padding: calc(60 / 1440 * 100 * 1vw) 0 calc(160 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .services {
        padding: 2rem 0 5rem;
    }
}

.services_front {
    padding: 7.5rem 0 8.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .services_front {
        padding: calc(120 / 1440 * 100 * 1vw) 0 calc(140 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .services_front {
        padding: 4.25rem 0 4.125rem;
    }
}

.services__container {
    display: flex;
    flex-direction: column;
    gap: 2.1875rem;
}

@media screen and (min-width: 90.0625rem) {
    .services__container {
        gap: calc(35 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .services__container {
        gap: 1rem;
    }
}

.services__title {
    text-align: center;
}

.services__more {
    color: var(--text-color-light);
    margin-top: auto;
}

@media screen and (max-width: 31.875rem) {
    .services__more {
        margin-top: 2rem;
    }
}

.services__list {
    --leftLineHeight: 100%;
    --middleLineHeight: 100%;
    --rightLineHeight: 100%;
    position: relative;
    padding: 0 6.25rem;
    display: flex;
    flex-direction: row;
    min-height: 29rem;
}

@media screen and (min-width: 90.0625rem) {
    .services__list {
        padding: 0 calc(100 / 1440 * 100 * 1vw);
        min-height: calc(464 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 79.375rem) {
    .services__list {
        padding: 0 1.875rem;
        min-height: 25rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .services__list {
        padding: 0;
        min-height: 20rem;
    }
}

@media screen and (max-width: 31.875rem) {
    .services__list {
        flex-direction: column;
        gap: 0;
    }
}

.services__list::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: var(--middleLineHeight);
    background: var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .services__list::before {
        width: calc(1 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .services__list::before {
        display: none;
    }
}

.services__num {
    transition: color 0.4s var(--cubic-main), border 0.4s var(--cubic-main);
}

.services__item {
    position: relative;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    flex-basis: 50%;
    gap: 1rem;
    color: var(--text-color-light);
    background-image: linear-gradient(var(--accent-color-dark), var(--accent-color-dark));
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: color 0.4s var(--cubic-main), background-size 0.6s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .services__item {
        padding: calc(20 / 1440 * 100 * 1vw) calc(16 / 1440 * 100 * 1vw);
        gap: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .services__item {
        padding: 0.875rem 0;
        gap: 0.5rem;
    }
}

@media (any-hover: hover) {
    .services__item:hover, .services__item:focus {
        outline: none;
        color: var(--accent-color);
        background-position: 0% 100%;
        background-size: 100% 100%;
    }

    .services__item:hover .services__more, .services__item:focus .services__more {
        color: var(--accent-color);
        background-position: 100% 100%;
        background-size: 0% 1px;
    }
}

@media screen and (any-hover: hover) and (min-width: 90.0625rem) {
    .services__item:hover .services__more, .services__item:focus .services__more {
        background-size: 0% calc(1 / 1440 * 100 * 1vw);
    }
}

@media (any-hover: hover) {
    .services__item:hover .services__num, .services__item:focus .services__num {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
}

@media screen and (max-width: 31.875rem) {
    .services__item:nth-child(2) {
        border-top: solid 1px var(--dividers-for-dark-bg);
    }
}

.services__item:nth-child(2)::before {
    left: unset;
    right: 0;
    height: var(--rightLineHeight);
}

@media screen and (max-width: 31.875rem) {
    .services__item:nth-child(2)::before {
        top: unset;
        bottom: 0;
        height: 2px;
        width: 100%;
    }
}

.services__item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: var(--leftLineHeight);
    width: 2px;
    background-color: var(--background-color-light);
}

@media screen and (min-width: 90.0625rem) {
    .services__item::before {
        width: calc(2 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .services__item::before {
        top: 0;
        bottom: unset;
        height: 2px;
        width: 100%;
    }
}

.about {
    position: relative;
    padding-bottom: 15rem;
}

@media screen and (min-width: 90.0625rem) {
    .about {
        padding-bottom: calc(240 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .about {
        padding-bottom: 7.5rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .about {
        padding-bottom: 4rem;
    }
}

.about__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .about__container {
        gap: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .about__container {
        align-items: start;
    }
}

@media screen and (max-width: 57.5rem) {
    .about__container {
        gap: 0.75rem;
    }
}

.about__title {
    color: var(--background-color-light);
}

.about__tag {
    letter-spacing: 0;
    line-height: 1.2;
}

.about__content {
    padding-top: 1.625rem;
    border-top: solid 2px var(--background-color-light);
    border-radius: 0;
}

@media screen and (min-width: 90.0625rem) {
    .about__content {
        padding-top: calc(26 / 1440 * 100 * 1vw);
        border-top: solid calc(2 / 1440 * 100 * 1vw) var(--background-color-light);
    }
}

.about__content::before {
    width: 1.5px;
    height: calc(100% + 14.9375rem);
    opacity: 0.5;
    background: var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .about__content::before {
        width: calc(1.5 / 1440 * 100 * 1vw);
        height: calc(100% + calc(239 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .about__content::before {
        display: none;
    }
}

@media screen and (max-width: 70.625rem) {
    .about__content {
        padding-top: 0;
        flex-direction: column;
        border-top: none;
    }
}

@media screen and (max-width: 57.5rem) {
    .about__content {
        gap: 1rem;
    }
}

@media screen and (max-width: 70.625rem) {
    .about__column:nth-child(1) {
        padding-bottom: 2rem;
        width: 100%;
        border-bottom: solid 1px var(--dividers-for-dark-bg);
    }
}

@media screen and (max-width: 57.5rem) {
    .about__column:nth-child(1) {
        padding-bottom: 1rem;
    }
}

.about-page {
    position: relative;
    padding: 3.25rem 0 17.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .about-page {
        padding: calc(52 / 1440 * 100 * 1vw) 0 calc(284 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .about-page {
        padding: 3.25rem 0 12.5rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page {
        padding: 2.5rem 0 3.75rem;
    }
}

@media screen and (max-width: 31.875rem) {
    .about-page {
        padding: 1.25rem 0 2.25rem;
    }
}

.about-page__arrow {
    stroke: var(--line-on-white);
}

@media screen and (max-width: 70.625rem) {
    .about-page__arrow {
        display: block;
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__arrow {
        display: none;
    }
}

.about-page__title {
    text-align: center;
}

.about-page__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media screen and (min-width: 90.0625rem) {
    .about-page__head {
        gap: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .about-page__head {
        gap: 0.5rem;
    }
}

.about-page__subtitle {
    width: 100%;
    max-width: 41.5rem;
    text-align: center;
}

@media screen and (min-width: 90.0625rem) {
    .about-page__subtitle {
        max-width: calc(664 / 1440 * 100 * 1vw);
    }
}

.about-page__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .about-page__container {
        gap: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__container {
        gap: 1.25rem;
    }
}

.about-page__content {
    padding-top: 1.875rem;
    border-top: solid 2px var(--background-color);
    border-radius: 0;
}

@media screen and (min-width: 90.0625rem) {
    .about-page__content {
        padding-top: calc(30 / 1440 * 100 * 1vw);
        border-top: solid calc(2 / 1440 * 100 * 1vw) var(--background-color);
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__content {
        padding-top: 1.375rem;
        flex-direction: column;
        gap: 1rem;
    }
}

.about-page__content::before {
    background: var(--line-on-white);
    width: 1.5px;
    height: calc(100% + 17.6875rem);
}

@media screen and (min-width: 90.0625rem) {
    .about-page__content::before {
        width: calc(1.5 / 1440 * 100 * 1vw);
        height: calc(100% + calc(283 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .about-page__content::before {
        height: calc(100% + 12.5rem);
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__content::before {
        display: none;
    }
}

.about-page__column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .about-page__column {
        gap: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__column:nth-child(1) {
        padding-bottom: 1rem;
        border-bottom: solid 1px var(--line-on-white);
    }
}

.about-page__button {
    padding: 0.875rem 1.125rem;
    color: var(--background-color-light);
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0;
    background: var(--background-color);
    border-color: var(--background-color);
}

@media screen and (min-width: 90.0625rem) {
    .about-page__button {
        padding: calc(14 / 1440 * 100 * 1vw) calc(18 / 1440 * 100 * 1vw);
        font-size: calc(28 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .about-page__button {
        font-size: 1.25rem;
        letter-spacing: -0.2px;
    }
}

@media screen and (max-width: 31.875rem) {
    .about-page__button {
        width: 100%;
    }
}

.contact-page {
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 29.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .contact-page {
        height: calc(472 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .contact-page {
        height: 24rem;
    }
}

.contact-page__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .contact-page__container {
        gap: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .contact-page__container {
        gap: 0.75rem;
    }
}

.contact-page__tag {
    line-height: 1.2;
    letter-spacing: 0;
}

.contact-page__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    color: var(--background-color-light);
    text-align: center;
}

@media screen and (max-width: 57.5rem) {
    .contact-page__title {
        background-image: none;
    }
}

.text-page {
    padding: 1rem 0 7.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .text-page {
        padding: calc(16 / 1440 * 100 * 1vw) 0 calc(120 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .text-page {
        padding-bottom: 4rem;
    }
}

.text-page__container {
    display: flex;
    flex-direction: row;
    gap: 1.875rem;
}

@media screen and (min-width: 90.0625rem) {
    .text-page__container {
        gap: calc(30 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .text-page__container {
        flex-direction: column;
        gap: 1rem;
    }
}

.text-page__title {
    flex-basis: 50%;
    display: block;
    max-height: 100%;
    color: var(--background-color-light);
}

.text-page__article {
    flex-basis: 50%;
    color: var(--background-color-light);
    text-transform: uppercase;
}

.text-page__article p,
.text-page__article span {
    padding: 0;
    margin: 0;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article p,
    .text-page__article span {
        font-size: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article p,
    .text-page__article span {
        font-size: 1rem;
        line-height: 1.25;
    }
}

.text-page__article strong,
.text-page__article b {
    font-weight: 700;
}

.text-page__article a {
    color: var(--background-color-light);
    text-decoration: underline;
    transition: color 0.4s var(--cubic-main);
}

@media (any-hover: hover) {
    .text-page__article a:hover {
        color: var(--accent-color);
    }
}

.text-page__article h2,
.text-page__article h3,
.text-page__article h4 {
    padding: 0;
    margin: 0;
    margin-top: 2.5rem;
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article h2,
    .text-page__article h3,
    .text-page__article h4 {
        margin-top: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article h2,
    .text-page__article h3,
    .text-page__article h4 {
        margin-top: 1.5rem;
    }
}

.text-page__article h5,
.text-page__article h6 {
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    font-size: 1.75rem;
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: 0;
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article h5,
    .text-page__article h6 {
        margin-top: calc(16 / 1440 * 100 * 1vw);
        font-size: calc(28 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article h5,
    .text-page__article h6 {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: -0.2px;
    }
}

.text-page__article ul,
.text-page__article ol {
    padding: 0;
    margin: 0;
    margin-top: 0.5rem;
    padding-left: 1.875rem;
    list-style: none;
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article ul,
    .text-page__article ol {
        margin-top: calc(8 / 1440 * 100 * 1vw);
        padding-left: calc(30 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article ul,
    .text-page__article ol {
        padding-left: 1.5625rem;
    }
}

.text-page__article ul li,
.text-page__article ol li {
    position: relative;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: calc(20 / 1440 * 100 * 1vw);
}

@media screen and (max-width: 57.5rem) {

    .text-page__article ul li,
    .text-page__article ol li {
        font-size: 1rem;
        line-height: 1.25;
    }
}

.text-page__article ul li::before,
.text-page__article ol li::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 8px;
    width: 7px;
    height: 7px;
    background: var(--background-color-light);
    border-radius: 50px;
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article ul li::before,
    .text-page__article ol li::before {
        left: calc(-21 / 1440 * 100 * 1vw);
        top: calc(8 / 1440 * 100 * 1vw);
        width: calc(7 / 1440 * 100 * 1vw);
        height: calc(7 / 1440 * 100 * 1vw);
        border-radius: calc(50 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article ul li::before,
    .text-page__article ol li::before {
        left: -15px;
        top: 7px;
        width: 5px;
        height: 5px;
    }
}

.text-page__article p {
    margin-top: 0.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .text-page__article p {
        margin-top: calc(12 / 1440 * 100 * 1vw);
    }
}

.text-page__article blockquote {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.14;
}

@media screen and (min-width: 90.0625rem) {
    .text-page__article blockquote {
        font-size: calc(28 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .text-page__article blockquote {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: -0.2px;
    }
}

.text-page__article img {
    width: 100%;
    height: auto;
}

.text-page__article table {
    margin-top: 0.75rem;
    width: 100%;
    border-collapse: collapse;
}

@media screen and (min-width: 90.0625rem) {
    .text-page__article table {
        margin-top: calc(12 / 1440 * 100 * 1vw);
    }
}

.text-page__article table th,
.text-page__article table td {
    padding: 0.625rem;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-align: start;
    border: solid 1px var(--background-color-light);
}

@media screen and (min-width: 90.0625rem) {

    .text-page__article table th,
    .text-page__article table td {
        padding: calc(20 / 1440 * 100 * 1vw);
        font-size: calc(20 / 1440 * 100 * 1vw);
        border: solid calc(1 / 1440 * 100 * 1vw) var(--background-color-light);
    }
}

@media screen and (max-width: 57.5rem) {

    .text-page__article table th,
    .text-page__article table td {
        font-size: 1rem;
        line-height: 1.25;
    }
}

@media screen and (max-width: 31.875rem) {

    .text-page__article table th,
    .text-page__article table td {
        padding: 0;
    }
}

.text-page__article table th {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.text-page__article table td .bt-content {
    width: 100%;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-align: start;
}

@media screen and (min-width: 90.0625rem) {
    .text-page__article table td .bt-content {
        font-size: calc(20 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .text-page__article table td .bt-content {
        font-size: 1rem;
        line-height: 1.25;
    }
}

@media screen and (max-width: 31.875rem) {
    .text-page__article table td .bt-content {
        padding: 0.625rem;
        border: solid 1px var(--background-color-light);
    }
}

.text-page__article table td::before {
    padding: 0.625rem;
    color: var(--white-color);
    background-color: var(--accent-color);
    border: solid 1px var(--background-color-light);
}

@media screen and (min-width: 90.0625rem) {
    .text-page__article table td::before {
        padding: calc(10 / 1440 * 100 * 1vw);
        border: solid calc(1 / 1440 * 100 * 1vw) var(--background-color-light);
    }
}

.text-page__article p:first-child,
.text-page__article h2:first-child,
.text-page__article h3:first-child,
.text-page__article h4:first-child,
.text-page__article h5:first-child,
.text-page__article h6:first-child,
.text-page__article table:first-child,
.text-page__article img:first-child {
    margin-top: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    z-index: 6;
    color: var(--background-color-light);
    overflow: auto;
    visibility: hidden;
    scrollbar-width: 0;
    justify-content: flex-end;
    transition: background 0s ease 0s;
    pointer-events: none;
}

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

.modal::-webkit-scrollbar-track {
    display: none;
}

.modal::-webkit-scrollbar-thumb {
    display: none;
}

@media screen and (max-width: 70.625rem) {
    .modal {
        padding-top: 4.625rem;
        height: 100vh;
        flex-direction: column;
        justify-content: normal;
        gap: 1.875rem;
        background-color: var(--background-color);
        overflow: auto;
    }
}

.modal::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: var(--modal-before-width);
    height: 100%;
    background: var(--background-color);
}

.modal__wrap-animation-title {
    position: absolute;
    left: var(--container-offset);
    bottom: 0;
    will-change: bottom;
}

@media screen and (max-width: 70.625rem) {
    .modal__wrap-animation-title {
        position: static;
    }
}

.modal__title {
    position: relative;
    z-index: 1;
}

.modal__title_mobile {
    display: none;
}

@media screen and (max-width: 70.625rem) {
    .modal__title_mobile {
        display: block;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 70.625rem) {
    .modal_form {
        padding-top: 2.5rem;
        max-height: 100vh;
        overflow: auto;
    }
}

@media screen and (max-width: 57.5rem) {
    .modal_form {
        padding-top: 2rem;
    }
}

@media screen and (max-width: 70.625rem) {
    .modal_form .modal-content {
        height: 100%;
    }
}

.modal_form .modal-part:first-child {
    position: relative;
}

.modal_form .modal-part:first-child::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .modal_form .modal-part:first-child::before {
        width: calc(1 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal_form .modal-part:first-child {
        display: none;
    }
}

.modal_form .modal-part:first-child:not(.modal-content) .container {
    height: calc(100vh - 5rem);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

@media screen and (min-width: 90.0625rem) {
    .modal_form .modal-part:first-child:not(.modal-content) .container {
        height: calc(100vh - calc(80 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .modal_form .modal-part:first-child:not(.modal-content) .container {
        height: auto;
    }
}

.modal_show {
    background-color: var(--background-color);
    transition: background 0s ease 0.7s;
}

.modal_show .modal-part:first-child {
    transform: translateX(0);
}

.modal_show .modal-part:last-child {
    transform: translateX(0);
}

.modal_open {
    pointer-events: all;
}

.modal-part {
    padding-top: 2.5rem;
    height: 100%;
    flex-basis: 50%;
    flex-shrink: 0;
    background-color: var(--background-color);
    transition: transform 0.7s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .modal-part {
        padding-top: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-part {
        padding-top: 0;
        flex-basis: unset;
        height: auto;
        max-height: unset;
        background-color: unset;
        overflow: hidden;
    }
}

.modal-part:first-child {
    transform: translateX(-100%);
}

@media screen and (max-width: 70.625rem) {
    .modal-part:first-child {
        transform: translateX(0);
    }
}

.modal-part:first-child .container {
    margin-right: 0;
    padding-right: 1rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-part:first-child .container {
        padding-right: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-part:first-child .container {
        margin: 0 auto;
        padding: 0 var(--container-offset);
    }
}

.modal-part:last-child {
    transform: translateX(100%);
}

@media screen and (max-width: 70.625rem) {
    .modal-part:last-child {
        transform: translateX(0);
    }
}

.modal-part:last-child .container {
    margin-left: 0;
    padding-left: 1rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-part:last-child .container {
        padding-left: calc(16 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-part:last-child .container {
        margin: 0 auto;
        padding: 0 var(--container-offset);
    }
}

.modal-part:not(.modal-content) .container {
    height: calc(100vh - 5rem);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}

@media screen and (min-width: 90.0625rem) {
    .modal-part:not(.modal-content) .container {
        height: calc(100vh - calc(80 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-part:not(.modal-content) .container {
        height: auto;
    }
}

.modal-part__background {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 50%;
    pointer-events: none;
    user-select: none;
}

.modal-part .container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: calc(var(--content-width) / 2 + var(--container-offset));
    position: relative;
}

@media screen and (max-width: 70.625rem) {
    .modal-part .container {
        max-width: calc(var(--content-width) + var(--container-offset) * 2);
        height: auto;
    }
}

.modal-part[data-modal-left] {
    position: fixed;
    left: 0;
    top: 0;
    width: 50%;
    pointer-events: none;
}

@media screen and (max-width: 70.625rem) {
    .modal-part[data-modal-left] {
        position: static;
        width: 100%;
        pointer-events: all;
    }
}

.modal-content__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content__container {
        gap: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-content__container {
        gap: 1.5625rem;
    }
}

.modal-content__block {
    padding-top: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: solid 2px var(--background-color-light);
}

@media screen and (min-width: 90.0625rem) {
    .modal-content__block {
        padding-top: calc(18 / 1440 * 100 * 1vw);
        border-top: solid calc(2 / 1440 * 100 * 1vw) var(--background-color-light);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-content__block {
        padding-top: 0.625rem;
    }
}

@media screen and (max-width: 57.5rem) {
    .modal-content__block {
        gap: 0.75rem;
    }
}

.modal-content__block:first-child {
    padding-top: 0;
    border-top: 0;
}

@media screen and (max-width: 70.625rem) {
    .modal-content__block:first-child {
        padding-top: 0.625rem;
        border-top: solid 2px var(--background-color-light);
    }
}

.modal-content .num-list {
    margin-top: 0;
    column-gap: 2rem;
    row-gap: 0.6875rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content .num-list {
        column-gap: calc(32 / 1440 * 100 * 1vw);
        row-gap: calc(11 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .modal-content .num-list {
        column-gap: 1rem;
    }
}

.modal-content .num-list__item {
    padding-bottom: 0.5rem;
    border-bottom: solid 1px var(--dividers-for-dark-bg);
}

@media screen and (min-width: 90.0625rem) {
    .modal-content .num-list__item {
        padding-bottom: calc(8 / 1440 * 100 * 1vw);
        border-bottom: solid calc(1 / 1440 * 100 * 1vw) var(--dividers-for-dark-bg);
    }
}

@media screen and (max-width: 57.5rem) {
    .modal-content .num-list__item {
        flex-basis: calc(50% - 1rem);
    }
}

@media screen and (max-width: 31.875rem) {
    .modal-content .num-list__item {
        padding-bottom: 0.75rem;
        flex-basis: calc(50% - 0.5rem);
    }
}

.modal-content .num-list__item_line {
    border-bottom: none;
}

.modal-content .num-list_modal {
    row-gap: 0.4375rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content .num-list_modal {
        row-gap: calc(7 / 1440 * 100 * 1vw);
    }
}

.modal-content .num-list_modal .num-list__item {
    padding-bottom: 0.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content .num-list_modal .num-list__item {
        padding-bottom: calc(4 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .modal-content .num-list_modal .num-list__item {
        padding-bottom: 0.5rem;
    }
}

.modal-content__image {
    margin-top: 0.4375rem;
    width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content__image {
        margin-top: calc(7 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-content__image {
        margin-top: 0;
    }
}

.modal-content__text_accent {
    color: var(--accent-color);
}

.modal-content__title {
    width: 100%;
    max-width: 33.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-content__title {
        max-width: calc(536 / 1440 * 100 * 1vw);
    }
}

.modal__subtitle {
    margin-top: 0.75rem;
    max-width: 34rem;
    color: var(--text-color-gray);
}

@media screen and (min-width: 90.0625rem) {
    .modal__subtitle {
        margin-top: calc(12 / 1440 * 100 * 1vw);
        max-width: calc(544 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .modal__button {
        margin-bottom: 5rem;
    }
}

.modal-services {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2.75rem;
}

@media screen and (min-width: 90.0625rem) {
    .modal-services {
        column-gap: calc(32 / 1440 * 100 * 1vw);
        row-gap: calc(44 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .modal-services {
        row-gap: 2rem;
    }
}

@media screen and (max-width: 31.875rem) {
    .modal-services {
        column-gap: 1rem;
        row-gap: 1rem;
    }
}

.modal-services__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    flex-basis: calc(33.33% - 1.5rem);
}

@media screen and (min-width: 90.0625rem) {
    .modal-services__item {
        gap: calc(8 / 1440 * 100 * 1vw);
        flex-basis: calc(33.33% - calc(24 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .modal-services__item {
        flex-basis: calc(25% - 1.5rem);
    }
}

@media screen and (max-width: 57.5rem) {
    .modal-services__item {
        flex-basis: calc(33.33% - 1.5rem);
    }
}

@media screen and (max-width: 31.875rem) {
    .modal-services__item {
        flex-basis: calc(50% - 0.5rem);
    }
}

.modal-services__item:nth-child(1) {
    order: 1;
}

.modal-services__item:nth-child(2) {
    order: 2;
}

.modal-services__item:nth-child(3) {
    order: 3;
}

.modal-services__item:nth-child(4) {
    order: 6;
}

.modal-services__item:nth-child(5) {
    order: 5;
}

.modal-services__item:nth-child(6) {
    order: 3;
}

.modal-services__item:nth-child(7) {
    order: 7;
}

@media screen and (max-width: 79.375rem) {
    .modal-services__item:nth-child(1n+1) {
        order: unset;
    }
}

.modal-services__item_right::before {
    content: '';
    position: absolute;
    top: 5.125rem;
    right: -2rem;
    width: 2rem;
    height: 1.875rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M0 16L32 16' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3Cpath d='M17.7307 1.27075L32.4619 16.002L17.7307 30.7332' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width: 90.0625rem) {
    .modal-services__item_right::before {
        top: calc(82 / 1440 * 100 * 1vw);
        right: calc(-32 / 1440 * 100 * 1vw);
        width: calc(32 / 1440 * 100 * 1vw);
        height: calc(30 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 79.375rem) {
    .modal-services__item_right::before {
        display: none;
    }
}

.modal-services__item_left::before {
    content: '';
    position: absolute;
    top: 5.125rem;
    left: -2rem;
    width: 2rem;
    height: 1.875rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='31' viewBox='0 0 34 31' fill='none'%3E%3Cpath d='M33.4629 15.2695L1.46289 15.2695' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3Cpath d='M15.7322 0.53833L1.00098 15.2695L15.7322 30.0007' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width: 90.0625rem) {
    .modal-services__item_left::before {
        top: calc(82 / 1440 * 100 * 1vw);
        left: calc(-32 / 1440 * 100 * 1vw);
        width: calc(32 / 1440 * 100 * 1vw);
        height: calc(30 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 79.375rem) {
    .modal-services__item_left::before {
        display: none;
    }
}

.modal-services__item_bottom::before {
    content: '';
    position: absolute;
    bottom: -2.75rem;
    right: 0;
    left: 0;
    margin: auto;
    width: 1.75rem;
    height: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='41' viewBox='0 0 30 41' fill='none'%3E%3Cpath d='M15 0L15 40' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3Cpath d='M0.999465 26.143L15.1416 40.2852L29.2837 26.143' stroke='%23574D66' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width: 90.0625rem) {
    .modal-services__item_bottom::before {
        bottom: calc(-44 / 1440 * 100 * 1vw);
        width: calc(28 / 1440 * 100 * 1vw);
        height: calc(40 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 79.375rem) {
    .modal-services__item_bottom::before {
        display: none;
    }
}

.modal-services__icon {
    padding: 2.9375rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--dividers-for-dark-bg);
    border-radius: 300px;
    pointer-events: none;
    user-select: none;
}

@media screen and (min-width: 90.0625rem) {
    .modal-services__icon {
        padding: calc(47 / 1440 * 100 * 1vw);
        border: solid calc(1 / 1440 * 100 * 1vw) var(--dividers-for-dark-bg);
        border-radius: calc(300 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 43.75rem) {
    .modal-services__icon {
        padding: 2.1875rem;
    }
}

.modal-services__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.modal-services__name {
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 70.625rem) {
    .form {
        height: 100% !important;
    }
}

.form__step {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.form__step_back {
    margin-top: -1.5rem;
    height: calc(100% + 1.5rem);
}

@media screen and (min-width: 90.0625rem) {
    .form__step_back {
        margin-top: calc(-24 / 1440 * 100 * 1vw);
        height: calc(100% + calc(24 / 1440 * 100 * 1vw));
    }
}

@media screen and (max-width: 70.625rem) {
    .form__step_back {
        margin-top: 0;
        height: 100%;
    }
}

.form__block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

@media screen and (min-width: 90.0625rem) {
    .form__block {
        gap: calc(32 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .form__block {
        gap: 0.625rem;
        overflow: auto;
        scrollbar-width: 0;
    }
}

@media screen and (max-width: 70.625rem) and (min-width: 90.0625rem) {
    .form__block {
        gap: calc(10 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 70.625rem) {
    .form__block::-webkit-scrollbar {
        display: none;
    }

    .form__block::-webkit-scrollbar-track {
        display: none;
    }

    .form__block::-webkit-scrollbar-thumb {
        display: none;
    }
}

.form__input-list {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
}

@media screen and (min-width: 90.0625rem) {
    .form__input-list {
        gap: calc(15 / 1440 * 100 * 1vw);
        margin-bottom: calc(20 / 1440 * 100 * 1vw);
    }
}

.form__label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-image: linear-gradient(var(--dividers-for-dark-bg), var(--dividers-for-dark-bg));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
}

@media screen and (min-width: 90.0625rem) {
    .form__label {
        gap: calc(8 / 1440 * 100 * 1vw);
        background-size: 100% calc(1 / 1440 * 100 * 1vw);
    }
}

.form__label_error {
    background-image: none;
}

.form__label_error .form__error {
    display: inline;
}

.form__label_error .form__input {
    background-image: linear-gradient(var(--error-color), var(--error-color));
    background-position: 0% 100%;
    background-size: 100% 1px;
}

@media screen and (min-width: 90.0625rem) {
    .form__label_error .form__input {
        background-size: 100% calc(1 / 1440 * 100 * 1vw);
    }
}

.form__label_other {
    display: none;
}

.form__error {
    display: none;
    color: var(--error-color);
}

.form__input {
    margin: 0;
    padding: 0;
    padding: 0.5rem 0;
    color: var(--background-color-light);
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.143;
    text-transform: uppercase;
    background: none;
    border: none;
    outline: none;
    background-image: linear-gradient(var(--background-color-light), var(--background-color-light));
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.5s var(--cubic-main);
    resize: none;
}

@media screen and (min-width: 90.0625rem) {
    .form__input {
        padding: calc(8 / 1440 * 100 * 1vw) 0;
        font-size: calc(28 / 1440 * 100 * 1vw);
        background-size: 0% calc(1 / 1440 * 100 * 1vw);
    }
}

@media (any-hover: hover) {
    .form__input:hover, .form__input:focus {
        outline: none;
        background-position: 0% 100%;
        background-size: 100% 1px;
    }
}

@media screen and (any-hover: hover) and (min-width: 90.0625rem) {
    .form__input:hover, .form__input:focus {
        background-size: 100% calc(1 / 1440 * 100 * 1vw);
    }
}

.form__input::placeholder {
    color: var(--text-color-gray);
}

.form__back {
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    color: var(--background-color-light);
    transition: color 0.4s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .form__back {
        gap: calc(8 / 1440 * 100 * 1vw);
    }
}

@media (any-hover: hover) {
    .form__back:hover, .form__back:focus {
        outline: none;
        color: var(--accent-color);
    }

    .form__back:hover .button__arrow, .form__back:focus .button__arrow {
        stroke: var(--accent-color);
    }
}

.form__back .button__arrow {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--background-color-light);
    stroke-width: 2px;
    transition: stroke 0.4s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .form__back .button__arrow {
        width: calc(24 / 1440 * 100 * 1vw);
        height: calc(24 / 1440 * 100 * 1vw);
    }
}

.form-successful {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
    min-height: 80vh;
    width: 100%;
}

@media screen and (min-width: 90.0625rem) {
    .form-successful {
        gap: calc(8 / 1440 * 100 * 1vw);
    }
}

.form-successful__text {
    width: 100%;
    max-width: 27rem;
    text-align: center;
}

@media screen and (min-width: 90.0625rem) {
    .form-successful__text {
        max-width: calc(432 / 1440 * 100 * 1vw);
    }
}

.form-successful__image {
    width: 12.5rem;
    height: 12.5rem;
}

@media screen and (min-width: 90.0625rem) {
    .form-successful__image {
        width: calc(200 / 1440 * 100 * 1vw);
        height: calc(200 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 57.5rem) {
    .form-successful__image {
        width: 10rem;
        height: 10rem;
    }
}

.form .button::before {
    transition: width 0.5s var(--cubic-main);
}

.select {
    position: relative;
}

.select__current {
    padding-right: 20px;
    display: block;
    color: var(--text-color-gray);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
    transition: color 0.4s var(--cubic-main), background-size 0.5s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .select__current {
        padding-right: calc(20 / 1440 * 100 * 1vw);
    }
}

.select__current_active {
    color: var(--background-color-light);
}

.select__current::before {
    content: '';
    position: absolute;
    top: 0.8125rem;
    right: 0;
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 8L12 16.0718L20 8' stroke='%23C9C3D1' stroke-width='2' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.4s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .select__current::before {
        top: calc(13 / 1440 * 100 * 1vw);
        width: calc(24 / 1440 * 100 * 1vw);
        height: calc(24 / 1440 * 100 * 1vw);
    }
}

@media screen and (max-width: 31.875rem) {
    .select__current::before {
        top: 0;
        bottom: 0;
    }
}

.select__item {
    padding: 0.3125rem 0;
    display: flex;
    flex-direction: row;
    color: var(--background-color-light);
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.143;
    text-transform: uppercase;
    text-align: start;
    background: none;
    border: none;
    border-bottom: solid 1px var(--dividers-for-dark-bg);
    transition: color 0.4s var(--cubic-main);
    cursor: pointer;
    user-select: none;
}

@media screen and (min-width: 90.0625rem) {
    .select__item {
        padding: calc(5 / 1440 * 100 * 1vw) 0;
        font-size: calc(28 / 1440 * 100 * 1vw);
        border-bottom: solid calc(1 / 1440 * 100 * 1vw) var(--dividers-for-dark-bg);
    }
}

@media (any-hover: hover) {
    .select__item:hover, .select__item:focus {
        outline: none;
        color: var(--accent-color);
    }
}

.select__item_active {
    color: var(--accent-color);
}

.select__item:nth-last-child(1) {
    border-bottom: none;
}

.select__item-list {
    position: absolute;
    z-index: 3;
    top: 100%;
    left: 0;
    margin-top: 1.25rem;
    padding: 0.625rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 40vh;
    background-color: var(--background-color);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: opacity 0.4s var(--cubic-main), visibility 0.4s var(--cubic-main), margin 0.4s var(--cubic-main);
}

@media screen and (min-width: 90.0625rem) {
    .select__item-list {
        margin-top: calc(20 / 1440 * 100 * 1vw);
        padding: calc(10 / 1440 * 100 * 1vw) 0;
    }
}

.select__item-list_top {
    top: unset;
    bottom: 100%;
}

.select__checkbox:checked~.select__item-list {
    margin-top: 0rem;
    opacity: 1 !important;
    visibility: visible;
}

.select__checkbox:checked~.select__current::before {
    transform: rotate(180deg);
}

