@keyframes stickyHeader {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.modal-form__wrapper {
    position: fixed;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(64, 64, 64, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.modal-form__content {
    background: #E9E9E9;

    position: relative;

    padding: calc(30 / 1920 * 100vw);

    width: calc(500 / 1920 * 100vw);

    border-radius: calc(10 / 1920 * 100vw);

    /* padding-left: calc(60 / 1920 * 100vw);
    padding-right: calc(60 / 1920 * 100vw); */
}

.modal-form__content>h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(24 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);
    text-align: center;
    margin-bottom: calc(15 / 1920 * 100vw);
}

.modal-form__content>#modal-close {
    background: none;
    outline: none;
    border: none;

    background: var(--fill-red);
    border-radius: 50%;

    position: absolute;
    right: calc(16 / 1920 * -100vw);
    top: calc(16 / 1920 * -100vw);

    width: calc(32 / 1920 * 100vw);
    height: calc(32 / 1920 * 100vw);

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-form__content>#modal-close>svg {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.modal-form__content>form {
    display: flex;
    flex-direction: column;
}

.modal-form__content>form>input,
.modal-form__content>form>textarea {
    background: none;
    outline: none;
    border: none;

    border-radius: calc(5 / 1920 * 100vw);

    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
    width: 100%;
    height: calc(60 / 1920 * 100vw);
    background: var(--fill-white);

    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--text-grey);

    margin-top: calc(10 / 1920 * 100vw);
}

.modal-form__content>form>textarea {
    height: calc(150 / 1920 * 100vw);
}

.modal-form__content>form>textarea {
    resize: vertical;
}

.modal-form__content>form>input:first-of-type {
    margin-top: 0;
}

.modal-form__content>form>button {
    background: none;
    outline: none;
    border: none;

    border-radius: calc(8 / 1920 * 100vw);
    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw) calc(22 / 1920 * 100vw);
    width: 100%;
    height: calc(60 / 1920 * 100vw);

    background: var(--fill-red);

    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: var(--fill-white);

    margin-top: calc(15 / 1920 * 100vw);
}


#open-mobile-header {
    display: none;

    background: none;
    outline: none;
    border: none;

    margin-left: auto;

    width: calc(49 / 768 * 100vw);
    height: calc(49 / 768 * 100vw);
}

#open-mobile-header>svg {

    width: calc(49 / 768 * 100vw);
    height: calc(49 / 768 * 100vw);
}

#open-mobile-header>svg>rect {
    fill: #000;
}

.header-mobile__wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 15;

    display: none;
}

.header-mobile__body {
    padding-top: calc(10 / 768 * 100vw);
    padding-right: calc(20 / 768 * 100vw);
    padding-left: calc(20 / 768 * 100vw);
}

.header-mobile__head {
    display: flex;
    align-items: center;
}

.header-mobile__logo {
    width: calc(124 / 768 * 100vw);
    height: calc(36 / 768 * 100vw);
}

.header-mobile__logo>img {
    width: calc(124 / 768 * 100vw);
    height: calc(36 / 768 * 100vw);
}

.header-mobile__close {
    margin-left: auto;

    background: none;
    outline: none;
    border: none;

    width: calc(49 / 768 * 100vw);
    height: calc(49 / 768 * 100vw);
}

.header-mobile__close>svg {
    width: calc(49 / 768 * 100vw);
    height: calc(49 / 768 * 100vw);
}

.header-mobile__body>nav {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-top: calc(155 / 768 * 100vw);
    margin-left: 0;
}

.header-mobile__body>nav>a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(16 / 768 * 100vw);
    line-height: 100%;
    text-align: center;
    color: var(--fill-white);
}

.header-mobile__body>nav>.nav__item {
    margin-left: 0;
    margin-bottom: calc(25 / 768 * 100vw);
}

.header-mobile__body>nav>.nav__item:last-child {
    margin-bottom: 0;
}

.header-mobile__body>nav>.nav__item--select>p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(16 / 768 * 100vw);
    line-height: 100%;
    text-align: center;
    color: var(--fill-white);
}

.header-mobile__body>nav>.nav__item--select {
    display: flex;
    justify-content: center;
}

.header-mobile__body>nav>.nav__item--select p:after {
    background: url("../media/how-buy/select_arrow_white.svg") no-repeat;
    background-size: calc(16 / 768 * 100vw);
    width: calc(16 / 768 * 100vw);
    height: calc(16 / 768 * 100vw);
}

@media screen and (max-width: 1024px) {
    #open-mobile-header {
        display: block;
    }

    .modal-form__wrapper {
        position: fixed;
        top: 0;

        width: 100%;
        height: 100%;

        background: rgba(64, 64, 64, 0.5);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-form__content {
        background: #E9E9E9;

        position: relative;

        padding: calc(30 / 768 * 100vw);

        width: calc(500 / 768 * 100vw);

        border-radius: calc(10 / 768 * 100vw);

        /* padding-left: calc(60 / 1920 * 100vw);
    padding-right: calc(60 / 1920 * 100vw); */
    }

    .modal-form__content>h3 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(24 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
        text-align: center;
        margin-bottom: calc(15 / 768 * 100vw);
    }

    .modal-form__content>#modal-close {
        background: none;
        outline: none;
        border: none;

        background: var(--fill-red);
        border-radius: 50%;

        position: absolute;
        right: calc(16 / 768 * -100vw);
        top: calc(16 / 768 * -100vw);

        width: calc(32 / 768 * 100vw);
        height: calc(32 / 768 * 100vw);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-form__content>#modal-close>svg {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .modal-form__content>form {
        display: flex;
        flex-direction: column;
    }

    .modal-form__content>form>input,
    .modal-form__content>form>textarea {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(5 / 768 * 100vw);

        padding: calc(18 / 768 * 100vw) calc(20 / 768 * 100vw);
        padding-right: calc(20 / 768 * 100vw);
        width: 100%;
        height: calc(60 / 768 * 100vw);
        background: var(--fill-white);

        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(10 / 768 * 100vw);
    }

    .modal-form__content>form>textarea {
        height: calc(150 / 768 * 100vw);
    }

    .modal-form__content>form>textarea {
        resize: vertical;
    }

    .modal-form__content>form>input:first-of-type {
        margin-top: 0;
    }

    .modal-form__content>form>button {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(8 / 768 * 100vw);
        padding: calc(18 / 768 * 100vw) calc(20 / 768 * 100vw) calc(22 / 768 * 100vw);
        width: 100%;
        height: calc(60 / 768 * 100vw);

        background: var(--fill-red);

        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-white);

        margin-top: calc(15 / 768 * 100vw);
    }
}

@media screen and (max-width: 768px) {
    #open-mobile-header {
        width: calc(49 / 390 * 100vw);
        height: calc(49 / 390 * 100vw);
    }

    #open-mobile-header>svg {
        width: calc(49 / 390 * 100vw);
        height: calc(49 / 390 * 100vw);
    }

    .header-mobile__body {
        padding-top: calc(10 / 390 * 100vw);
        padding-right: calc(20 / 390 * 100vw);
        padding-left: calc(20 / 390 * 100vw);
    }

    .header-mobile__head {
        display: flex;
        align-items: center;
    }

    .header-mobile__logo {
        width: calc(124 / 390 * 100vw);
        height: calc(36 / 390 * 100vw);
    }

    .header-mobile__logo>img {
        width: calc(124 / 390 * 100vw);
        height: calc(36 / 390 * 100vw);
    }

    .header-mobile__close {
        margin-left: auto;

        background: none;
        outline: none;
        border: none;

        width: calc(49 / 390 * 100vw);
        height: calc(49 / 390 * 100vw);
    }

    .header-mobile__close>svg {
        width: calc(49 / 390 * 100vw);
        height: calc(49 / 390 * 100vw);
    }

    .header-mobile__body>nav {
        display: flex;
        flex-direction: column;
        justify-content: center;

        margin-top: calc(155 / 390 * 100vw);
        margin-left: 0;
    }

    .header-mobile__body>nav>a {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-white);
    }

    .header-mobile__body>nav>.nav__item {
        margin-left: 0;
        margin-bottom: calc(25 / 390 * 100vw);
    }

    .header-mobile__body>nav>.nav__item:last-child {
        margin-bottom: 0;
    }

    .header-mobile__body>nav>.nav__item--select>p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-white);
    }

    .header-mobile__body>nav>.nav__item--select {
        display: flex;
        justify-content: center;
    }

    .header-mobile__body>nav>.nav__item--select p:after {
        background: url("../media/how-buy/select_arrow_white.svg") no-repeat;
        background-size: calc(16 / 390 * 100vw);
        width: calc(16 / 390 * 100vw);
        height: calc(16 / 390 * 100vw);
    }

    .modal-form__wrapper {
        position: fixed;
        top: 0;

        width: 100%;
        height: 100%;

        background: rgba(64, 64, 64, 0.5);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-form__content {
        background: #E9E9E9;

        position: relative;

        padding: calc(30 / 390 * 100vw);

        width: calc(500 / 390 * 100vw);

        border-radius: calc(10 / 390 * 100vw);

        /* padding-left: calc(60 / 1920 * 100vw);
    padding-right: calc(60 / 1920 * 100vw); */
    }

    .modal-form__content>h3 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(24 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
        text-align: center;
        margin-bottom: calc(12 / 390 * 100vw);
    }

    .modal-form__content>#modal-close {
        background: none;
        outline: none;
        border: none;

        background: var(--fill-red);
        border-radius: 50%;

        position: absolute;
        right: calc(16 / 390 * 100vw);
        top: calc(16 / 390 * -100vw);

        width: calc(32 / 390 * 100vw);
        height: calc(32 / 390 * 100vw);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-form__content>#modal-close>svg {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .modal-form__content>form {
        display: flex;
        flex-direction: column;
    }

    .modal-form__content>form>input,
    .modal-form__content>form>textarea {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(5 / 390 * 100vw);

        padding: calc(18 / 390 * 100vw) calc(20 / 390 * 100vw);
        padding-right: calc(20 / 390 * 100vw);
        width: 100%;
        height: calc(45 / 390 * 100vw);
        background: var(--fill-white);

        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(6 / 390 * 100vw);
    }

    .modal-form__content>form>textarea {
        height: calc(150 / 390 * 100vw);
    }

    .modal-form__content>form>textarea {
        resize: vertical;
    }

    .modal-form__content>form>input:first-of-type {
        margin-top: 0;
    }

    .modal-form__content>form>button {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(8 / 390 * 100vw);
        padding: calc(13 / 390 * 100vw) calc(20 / 390 * 100vw) calc(22 / 390 * 100vw);
        width: 100%;
        height: calc(45 / 390 * 100vw);

        background: var(--fill-red);

        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-white);

        margin-top: calc(12 / 390 * 100vw);
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Inter Tight";
    background: #F5F5F5;
}

a {
    text-decoration: none;
}

button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.nav__item-dropdown-item:first-child {
    border-top-left-radius: calc(4 / 1920 * 100vw);
    border-top-right-radius: calc(4 / 1920 * 100vw);
}

.nav__item-dropdown-item:last-child {
    border-bottom-left-radius: calc(4 / 1920 * 100vw);
    border-bottom-right-radius: calc(4 / 1920 * 100vw);
}

.header__localization-select .nav__item-dropdown {
    left: calc(13 / 1920 * -100vw);
    width: calc(80 / 1920 * 100vw);
}

.header__localization-select .nav__item-dropdown .nav__item-dropdown-item {
    display: flex;
}

.header__localization-select .nav__item-dropdown .nav__item-dropdown-item>img {
    margin-right: calc(4 / 1920 * 100vw);
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 0.25rem #d00000;
}

input:active,
select:active,
textarea:focus {
    filter: brightness(90%);
}

.nav__item-dropdown {
    z-index: 10;
}

input,
select,
textarea {
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.footer--mobile {
    display: none;
}

.offer__mobile-group-text {
    margin-top: calc(44 / 1920 * 100vw);
}

.header {
    padding-top: calc(28 / 1920 * 100vw);
}

.container {
    width: calc(1820 / 1920 * 100vw);
    margin: 0 auto;
}

.header .container {
    display: flex;
    align-items: center;

    padding-bottom: calc(32 / 1920 * 100vw);

    border-bottom: calc(15 / 1920 * 100vw) solid #ED2828;
}

.header__logo {
    display: flex;

    width: calc(124 / 1920 * 100vw);
    height: calc(36 / 1920 * 100vw);
}

.header__logo img {
    width: calc(124 / 1920 * 100vw);
    height: calc(36 / 1920 * 100vw);
}

.header__location {
    display: flex;

    margin-left: calc(35 / 1920 * 100vw);
}

.header__select:last-of-type {
    margin-left: calc(8 / 1920 * 100vw);
}

.header__select-visible {
    display: flex;
    align-items: center;
}

.header__select-visible img:first-of-type {
    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);

    margin-right: calc(2 / 1920 * 100vw);
}

.header__select-visible p {
    font-family: "Inter";
    font-weight: 400;
    font-size: calc(15 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #0B1518;

    display: flex;
}

.header__select-visible p::after {
    content: "";

    display: flex;

    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);

    background: url("../media/select_arrow.svg") no-repeat;
    background-size: calc(16 / 1920 * 100vw);

    margin-left: calc(2 / 1920 * 100vw);
}

.nav {
    display: flex;
    margin-left: calc(154.5 / 1920 * 100vw);
}

.nav__item {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #0B1518;

    text-decoration: none;

    margin-left: calc(24 / 1920 * 100vw);
}

.nav__item:first-child {
    margin-left: 0;
}

.nav__item--select p:hover {
    cursor: pointer;
}

.nav__item--select {
    position: relative;
}

.nav__item--select--close>.nav__item-dropdown {
    display: none;
}

.nav__item--select--open>.nav__item-dropdown {
    display: flex;
}

.nav__item--select--open > p:after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);
    background: url(../media/select_arrow.svg) no-repeat;
    background-size: calc(16 / 1920 * 100vw);
    margin-left: calc(4 / 1920 * 100vw);

    transform: scaleY(-1);
}

.nav__item-dropdown {
    flex-direction: column;

    width: calc(180 / 1920 * 100vw);

    position: absolute;
    top: calc(100% + calc(10 / 1920 * 100vw));

    background: var(--fill-white);
    border-radius: calc(4 / 1920 * 100vw);
}

.nav__item-dropdown-item {
    text-align: left!important;

    padding-right: calc(18 / 1920 * 100vw);
    padding-left: calc(18 / 1920 * 100vw);
    padding-top: calc(10 / 1920 * 100vw);
    padding-bottom: calc(10 / 1920 * 100vw);
}

.nav__item-dropdown-item:hover {
    background: var(--fill-light-grey);
}

.nav__item-dropdown-item:hover>a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);
}

.nav__item-dropdown-item>a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);
    text-align: left;
}

.nav__item--select p {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #0B1518;

    display: flex;
    user-select: none;
}

.nav__item--select p {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #0B1518;

    display: flex;
}

.nav__item--select > p:after {
    content: "";

    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);

    background: url("../media/select_arrow.svg") no-repeat;
    background-size: calc(16 / 1920 * 100vw);

    margin-left: calc(4 / 1920 * 100vw);
}

.header__auth {
    display: flex;
    align-items: center;

    margin-left: auto;
}

.header__auth a {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #0B1518;
}

.header__auth a:last-of-type {
    margin-left: calc(32 / 1920 * 100vw);
}


.header__localization {
    margin-left: calc(39 / 1920 * 100vw);
    margin-right: calc(14 / 1920 * 100vw);
}

.header__localization-select {
    display: flex;
}

.header__auth>.nav__item>.nav__item-dropdown>.nav__item-dropdown-item>a {
    margin-left: 0;
}

.header__localization-select img {
    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);
}

.header__localization-select p {
    font-family: "Inter";
    font-weight: 400;
    font-size: calc(15 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #0B1518;

    display: flex;

    margin-left: calc(4 / 1920 * 100vw);
}

.header__localization-select > p:after {
    content: "";

    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);

    background: url("../media/select_arrow.svg") no-repeat;
    background-size: calc(16 / 1920 * 100vw);

    margin-left: calc(4 / 1920 * 100vw);
}






.offer {
    margin-top: calc(10 / 1920 * 100vw);
}

.container {}

.offer>.container>h5 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #000;
}

.offer__content {
    margin-top: calc(10 / 1920 * 100vw);

    background: url("../media/contact/bg_offer.png") no-repeat, var(--fill-black);
    background-size: calc(1052 / 1920 * 100vw) calc(620 / 1920 * 100vw);
    background-position: center right calc(50 / 1920 * 100vw);

    padding-top: calc(40 / 1920 * 100vw);
    padding-left: calc(50 / 1920 * 100vw);
    padding-bottom: calc(50 / 1920 * 100vw);

    position: relative;
    height: calc(715 / 1920 * 100vw);
}

.offer__content>.container>h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    color: var(--fill-white);
}

.offer__content>.container>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-white);

    margin-top: calc(15 / 1920 * 100vw);

    width: calc(431 / 1920 * 100vw);
}

.offer__info {
    padding-top: calc(20 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
    padding-bottom: calc(20 / 1920 * 100vw);

    background: rgba(64, 64, 64, 0.5);

    border-radius: calc(10 / 1920 * 100vw);
    width: calc(654 / 1920 * 100vw);

    margin-top: calc(194 / 1920 * 100vw);
}

.offer__info-head {
    display: flex;

    align-items: center;

    padding-bottom: calc(9 / 1920 * 100vw);

    border-bottom: calc(7 / 1920 * 100vw) solid var(--fill-red);
}

.offer__info-head>img {
    width: calc(32 / 1920 * 100vw);
    height: calc(21 / 1920 * 100vw);
}

.offer__info-head>h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: calc(24 / 1920 * 100vw);
    color: var(--fill-white);

    margin-left: calc(12 / 1920 * 100vw);
}

.offer__info-adress {
    display: flex;
}

.offer__info-adress>img {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.offer__info-adress>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-white);

    margin-left: calc(8 / 1920 * 100vw);
}

.offer__info-adress:nth-of-type(2) {
    margin-top: calc(44 / 1920 * 100vw);
}

.offer__info-adress:nth-of-type(3) {
    margin-top: calc(20 / 1920 * 100vw);
}

.offer__mobile-group-text>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(13 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--fill-white);

    margin-left: calc(32 / 1920 * 100vw);
    margin-top: calc(5 / 1920 * 100vw);
}

.offer__info-btn {
    margin-top: calc(20 / 1920 * 100vw);

    display: flex;
}

.offer__info-btn>button {
    background: none;
    outline: none;
    border: none;

    width: 50%;
    height: calc(60 / 1920 * 100vw);

    border-radius: calc(8 / 1920 * 100vw);
    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw);

    font-family: var(--second-family);
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
}

.offer__info-btn>button:first-of-type {
    background: var(--fill-black);
    color: var(--fill-white);

    margin-right: calc(10 / 1920 * 100vw);
}

.offer__info-btn>button:last-of-type {
    background: var(--fill-white);
    color: var(--fill-black);

    margin-right: calc(20 / 1920 * 100vw);
}

.offer__location {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: absolute;
}

.offer__location:hover {
    transform: scale(1.1);
    translate: all 0.3s ease;

    cursor: pointer;
}

.offer__location>img {
    width: calc(64 / 1920 * 100vw);
    height: calc(64 / 1920 * 100vw);
}

.offer__location>p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    color: var(--fill-white);

    margin-top: calc(6 / 1920 * 100vw);
}

.offer__location-1 {
    top: calc(284 / 1920 * 100vw);
    left: calc(980 / 1920 * 100vw);
}

.offer__location-2 {
    top: calc(293 / 1920 * 100vw);
    left: calc(1394 / 1920 * 100vw);
}

.offer__info-2 {}




.steps {
    margin-top: calc(75 / 1920 * 100vw);
}

.container {}

.steps>.container {
    display: flex;
    justify-content: center;
}

.steps__item {
    position: relative;

    display: flex;
    flex-direction: column;

    padding-left: calc(50 / 1920 * 100vw);
    padding-top: calc(50 / 1920 * 100vw);
    padding-bottom: calc(20 / 1920 * 100vw);

    border-radius: calc(4 / 1920 * 100vw);
    width: calc(445 / 1920 * 100vw);

    background: var(--fill-white);

    margin-right: calc(20 / 1920 * 100vw);
}

.steps__item:last-of-type {
    margin-right: 0;
}

.steps__item>img {
    position: absolute;
    top: calc(10 / 1920 * 100vw);
    left: calc(10 / 1920 * 100vw);

    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.steps__item>h4 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(20 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);
}

.steps__item>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--text-grey);

    margin-top: calc(12 / 1920 * 100vw);
}

.steps__item>button {
    background: none;
    outline: none;
    border: none;

    border: calc(1 / 1920 * 100vw) solid var(--fill-red);
    border-radius: calc(8 / 1920 * 100vw);
    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    width: calc(280 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);

    font-family: var(--second-family);
    font-weight: 500;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: var(--fill-red);

    margin-top: calc(30 / 1920 * 100vw);
}




.offices {
    margin-top: calc(75 / 1920 * 100vw);
}

.container {}

.offices>.container>h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--fill-black);

    text-align: center;
}

.offices__table {
    width: calc(1360 / 1920 * 100vw);
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    margin-top: calc(30 / 1920 * 100vw);
}

.offices__table-head {
    display: flex;

    background: var(--fill-black);

    padding-top: calc(2 / 1920 * 100vw);
    padding-bottom: calc(2 / 1920 * 100vw);
    padding-left: calc(18 / 1920 * 100vw);
}

.offices__table-head>p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: calc(20 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-white);
}

.offices__table-head>p:nth-child(1) {
    width: calc(571 / 1920 * 100vw);
}

.offices__table-head>p:nth-child(2) {
    width: calc(506 / 1920 * 100vw);
}

.offices__table-head>p:nth-child(3) {
    margin-right: calc(124 / 1920 * 100vw);
    margin-left: auto;
}

.offices__table-row {
    display: flex;
    flex-direction: column;
}

.offices__table-row--open {
    margin-top: calc(7 / 1920 * 100vw);

    background: var(--fill-light-grey);
}

.offices__table-row-head {
    display: flex;
    align-items: center;

    height: calc(36 / 1920 * 100vw);

    border-bottom: calc(1 / 1920 * 100vw) solid var(--fill-light-red);
}

.offices__table-row-head>img {
    width: calc(22 / 1920 * 100vw);
    height: calc(22 / 1920 * 100vw);

    margin-left: calc(18 / 1920 * 100vw);
}

.offices__table-row-head>h4 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--fill-black);

    margin-left: calc(5 / 1920 * 100vw);
    width: calc(544 / 1920 * 100vw);
}

.offices__table-row-head>p:first-of-type {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);

    width: calc(508 / 1920 * 100vw);
}

.offices__table-row-head>p:last-of-type {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);

}

.offices__table-row-head>button {
    background: none;
    outline: none;
    border: none;

    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);

    background: url("../media/contact/table-close.svg");
    background-size: 100%;

    margin-left: auto;
    margin-right: calc(8 / 1920 * 100vw);
}

.offices__table-row-content {
    display: flex;

    padding-bottom: calc(11.5 / 1920 * 100vw);
}

.offices__shedule {
    width: calc(587 / 1920 * 100vw);
}

.offices__shedule>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);

    margin-top: calc(16 / 1920 * 100vw);
    margin-left: calc(18 / 1920 * 100vw);
}

.offices___contact {
    margin-top: calc(11.5 / 1920 * 100vw);

    width: calc(508 / 1920 * 100vw);
}

.offices__contact-row {
    display: flex;
    align-items: center;

    margin-bottom: calc(4 / 1920 * 100vw);
}

.offices__contact-row>img {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.offices__contact-row>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--text-grey);

    margin-left: calc(8 / 1920 * 100vw);
}

.offices__adress {}

.offices__adress>p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--text-grey);

    width: calc(241 / 1920 * 100vw);

    margin-top: calc(16 / 1920 * 100vw);
}


.offices__table-row>.offices__table-row--open {
    display: none;
}

.offices__table-row>.offices__table-row--close {
    display: flex;
}


.offices__table-row--opened>.offices__table-row--open {
    display: block !important;
}

.offices__table-row--opened>.offices__table-row--close {
    display: none !important;
}


.offices__table-row--close {
    align-items: center;

    padding-top: calc(16 / 1920 * 100vw);
    padding-bottom: calc(16 / 1920 * 100vw);

    border-bottom: calc(1 / 1920 * 100vw) solid #dcdcdc;
}

.offices__table-row--close>img {
    width: calc(22 / 1920 * 100vw);
    height: calc(22 / 1920 * 100vw);

    margin-left: calc(18 / 1920 * 100vw);
}

.offices__table-row--close>h4 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    text-transform: uppercase;
    color: var(--fill-black);

    margin-left: calc(5 / 1920 * 100vw);
    width: calc(544 / 1920 * 100vw);
}

.offices__table-row--close>p:first-of-type {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);

    width: calc(508 / 1920 * 100vw);
}

.offices__table-row--close>p:last-of-type {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: var(--fill-black);
}

.offices__table-row--close>button {
    background: none;
    outline: none;
    border: none;

    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);

    background: url("../media/contact/table-open.svg");
    background-size: 100%;

    margin-left: auto;
    margin-right: calc(8 / 1920 * 100vw);
}



.footer {}

.footer .container {
    margin-top: calc(30 / 1920 * 100vw);
    padding-top: calc(35 / 1920 * 100vw);
    padding-bottom: calc(50 / 1920 * 100vw);

    border-top: calc(15 / 1920 * 100vw) solid #0B1518;
}

.footer__first-row {
    display: flex;
}

.footer__social {}

.footer__social>a {
    display: flex;

    width: calc(237 / 1920 * 100vw);
    height: calc(69 / 1920 * 100vw);
}

.footer__social>a>img {
    width: calc(237 / 1920 * 100vw);
    height: calc(69 / 1920 * 100vw);
}

.footer__inline-social {
    margin-top: calc(26 / 1920 * 100vw);
    display: flex;
}

.footer__inline-social>a {
    display: flex;

    width: calc(40 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);

    margin-right: calc(10 / 1920 * 100vw);
}

.footer__inline-social>a:last-of-type {
    margin-right: 0;
}

.footer__inline-social>a>img {
    width: calc(40 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
}

.footer__schedule {
    margin-left: calc(222 / 1920 * 100vw);
    ;
}

.footer__schedule-item {}

.footer__schedule-item:last-of-type {
    margin-top: calc(66 / 1920 * 100vw);
    ;
}

.footer__schedule-item>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;

    opacity: 0.5;

    margin-top: calc(10 / 1920 * 100vw);
    ;
}

.footer__schedule-head {
    display: flex;
    align-items: center;
}

.footer__schedule-head>img {
    width: calc(32 / 1920 * 100vw);
    height: calc(32 / 1920 * 100vw);
}

.footer__schedule-head>h3 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(24 / 1920 * 100vw);
    color: #595959;

    margin-left: calc(12 / 1920 * 100vw);
}

.footer__contact {
    margin-left: calc(45 / 1920 * 100vw);
}

.footer__contant-row {
    display: flex;
    align-items: center;

    margin-top: calc(8 / 1920 * 100vw);
}

.footer__contant-row:first-of-type {
    margin-top: 0;
}

.footer__contant-row:nth-child(4) {
    margin-top: calc(38 / 1920 * 100vw);
}

.footer__contant-row>img {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.footer__contant-row>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;

    margin-left: calc(8 / 1920 * 100vw);
}

.footer__adress {
    margin-left: calc(69 / 1920 * 100vw);
    ;
}

.footer__adress-row {
    display: flex;
    align-self: center;

    margin-bottom: calc(85 / 1920 * 100vw);
}

.footer__adress-row:last-of-type {
    margin-bottom: 0;
}

.footer__adress-row>img {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.footer__adress-row>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;

    margin-left: calc(8 / 1920 * 100vw);

    width: calc(395 / 1920 * 100vw);
    ;
}

.footer__second-row {
    display: flex;

    margin-top: calc(44 / 1920 * 100vw);
    ;
}

.footer__agreement {
    display: flex;
}

.footer__agreement>a {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    color: #595959;
}

.footer__agreement>a:last-of-type {
    margin-left: calc(24 / 1920 * 100vw);
}

.footer__nav {
    margin-left: calc(640 / 1920 * 100vw);

    display: flex;
}

.footer__nav>nav {
    display: flex;
}

.footer__nav>nav>a {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0B1518;

    margin-right: calc(32 / 1920 * 100vw);
}

.footer__nav>nav>a:last-of-type {
    margin-right: 0;
}
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 13;

    animation: stickyHeader 0.3s ease-in-out;

    background: #E2E2E2;
}


@media screen and (max-width: 1024px) {
    .header {
        padding-top: calc(10 / 768 * 100vw);
    }

    .container {
        width: calc(728 / 768 * 100vw);
    }

    .header .container {
        display: flex;
        align-items: center;

        padding-bottom: calc(15 / 768 * 100vw);

        border-bottom: calc(15 / 768 * 100vw) solid #ED2828;
    }

    .header__logo {
        display: flex;

        width: calc(124 / 768 * 100vw);
        height: calc(36 / 768 * 100vw);
    }

    .header__logo img {
        width: calc(124 / 768 * 100vw);
        height: calc(36 / 768 * 100vw);
    }

    .header__location {
        display: none;
    }

    .nav {
        display: none;
    }

    .header__auth {
        display: none;
    }

    .header__localization {
        display: none;
    }


    .offer {
        margin-top: calc(14 / 768 * 100vw);
    }

    .container {}

    .offer>.container>h5 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #000;
    }

    .offer__content {
        margin-top: calc(19 / 768 * 100vw);

        background: url("../media/contact/bg_offer.png") no-repeat, var(--fill-black);
        background-size: calc(726 / 768 * 100vw) calc(427 / 768 * 100vw);
        background-position: center top calc(110 / 768 * 100vw);

        padding-top: calc(20 / 768 * 100vw);
        padding-left: calc(20 / 768 * 100vw);
        padding-right: calc(20 / 768 * 100vw);
        padding-bottom: calc(20 / 768 * 100vw);

        height: calc(860 / 768 * 100vw);
    }

    .offer__content>.container>h3 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(44 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-white);
    }

    .offer__content>.container>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-white);

        margin-top: calc(15 / 768 * 100vw);

        width: calc(431 / 768 * 100vw);
    }

    .offer__info {
        padding-top: calc(20 / 768 * 100vw);
        padding-left: calc(20 / 768 * 100vw);
        padding-bottom: calc(20 / 768 * 100vw);

        background: rgba(64, 64, 64, 0.5);

        border-radius: calc(10 / 768 * 100vw);
        width: 100%;

        margin-top: calc(465 / 768 * 100vw);
    }

    .offer__mobile-group-text {
        margin-top: 0;
    }

    .offer__mobile-group-btn {
        width: calc(344 / 768 * 100vw);
        margin-left: auto;
    }

    .offer__mobile-group {
        display: flex;
        padding-right: calc(20 / 768 * 100vw);
        margin-top: calc(30 / 768 * 100vw);
    }

    .offer__info-head {
        display: flex;

        align-items: center;

        padding-bottom: calc(9 / 768 * 100vw);

        border-bottom: calc(7 / 768 * 100vw) solid var(--fill-red);
    }

    .offer__info-head>img {
        width: calc(32 / 768 * 100vw);
        height: calc(21 / 768 * 100vw);
    }

    .offer__info-head>h4 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(24 / 768 * 100vw);
        color: var(--fill-white);

        margin-left: calc(12 / 768 * 100vw);
    }

    .offer__info-adress {
        display: flex;
    }

    .offer__info-adress>img {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .offer__info-adress>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-white);

        margin-left: calc(8 / 768 * 100vw);
    }

    .offer__info-adress:last-of-type>p {
        width: calc(305 / 768 * 100vw);
    }

    .offer__info-adress:nth-of-type(2) {
        margin-top: calc(15 / 768 * 100vw);
    }

    .offer__info-adress:nth-of-type(3) {
        margin-top: calc(20 / 768 * 100vw);
    }

    .offer__mobile-group-text>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(13 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        text-decoration: underline;
        text-decoration-skip-ink: none;
        color: var(--fill-white);

        margin-left: calc(32 / 768 * 100vw);
        margin-top: calc(5 / 768 * 100vw);
    }

    .offer__info-btn {
        margin-top: 0;

        display: flex;
        flex-direction: column;
    }

    .offer__info-btn>button {
        background: none;
        outline: none;
        border: none;

        width: 100%;
        height: calc(60 / 768 * 100vw);

        border-radius: calc(8 / 768 * 100vw);
        padding: calc(18 / 768 * 100vw) calc(20 / 768 * 100vw);

        font-family: var(--second-family);
        font-weight: 500;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        text-align: center;
    }

    .offer__info-btn>button:first-of-type {
        background: var(--fill-black);
        color: var(--fill-white);

        margin-right: 0;
        margin-bottom: calc(15 / 768 * 100vw);
    }

    .offer__info-btn>button:last-of-type {
        background: var(--fill-white);
        color: var(--fill-black);

        margin-right: calc(20 / 768 * 100vw);
    }

    .offer__location {
        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        position: absolute;
    }

    .offer__location:hover {
        transform: scale(1.1);
        translate: all 0.3s ease;

        cursor: pointer;
    }

    .offer__location>img {
        width: calc(64 / 768 * 100vw);
        height: calc(64 / 768 * 100vw);
    }

    .offer__location>p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 768 * 100vw);
        color: var(--fill-white);

        margin-top: calc(6 / 768 * 100vw);
    }

    .offer__location-1 {
        top: calc(262 / 768 * 100vw);
        left: calc(135 / 768 * 100vw);
    }

    .offer__location-2 {
        top: calc(254 / 768 * 100vw);
        left: calc(420 / 768 * 100vw);
    }





    .steps {
        margin-top: calc(40 / 768 * 100vw);
    }

    .container {}

    .steps>.container {
        display: flex;
        justify-content: center;
    }

    .steps__item {
        position: relative;

        display: flex;
        flex-direction: column;

        padding-left: calc(10 / 768 * 100vw);
        padding-top: calc(50 / 768 * 100vw);
        padding-bottom: calc(10 / 768 * 100vw);
        padding-right: calc(10 / 768 * 100vw);

        border-radius: calc(4 / 768 * 100vw);
        width: calc(236 / 768 * 100vw);

        background: var(--fill-white);

        margin-right: calc(10 / 768 * 100vw);
    }

    .steps__item:last-of-type {
        margin-right: 0;
    }

    .steps__item>img {
        position: absolute;
        top: calc(10 / 768 * 100vw);
        left: calc(10 / 768 * 100vw);

        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .steps__item>h4 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(20 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
    }

    .steps__item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(7 / 768 * 100vw);
    }

    .steps__item>button {
        background: none;
        outline: none;
        border: none;

        border: calc(1 / 768 * 100vw) solid var(--fill-red);
        border-radius: calc(8 / 768 * 100vw);
        padding: calc(18 / 768 * 100vw) calc(20 / 768 * 100vw);
        width: 100%;
        height: calc(60 / 768 * 100vw);

        font-family: var(--second-family);
        font-weight: 500;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-red);

        margin-top: calc(30 / 768 * 100vw);
    }




    .offices {
        margin-top: calc(90 / 768 * 100vw);
    }

    .container {}

    .offices>.container>h2 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(32 / 768 * 100vw);
        line-height: 110%;
        letter-spacing: -0.03em;
        color: var(--fill-black);

        text-align: center;
    }

    .offices__table {
        width: calc(728 / 768 * 100vw);
        margin: 0 auto;

        display: flex;
        flex-direction: column;

        margin-top: calc(30 / 768 * 100vw);
    }

    .offices__table-head {
        display: none;

        background: var(--fill-black);

        padding-top: calc(2 / 768 * 100vw);
        padding-bottom: calc(2 / 768 * 100vw);
        padding-left: calc(18 / 768 * 100vw);
    }

    .offices__table-head>p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(20 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-white);
    }

    .offices__table-head>p:nth-child(2) {
        margin-left: calc(504 / 768 * 100vw);
    }

    .offices__table-head>p:nth-child(3) {
        margin-right: calc(124 / 768 * 100vw);
        margin-left: auto;
    }

    .offices__table-row {
        display: flex;
        flex-direction: column;
    }

    .offices__table-row--open {
        margin-top: calc(7 / 768 * 100vw);

        background: var(--fill-light-grey);
    }

    .offices__table-row-head {
        display: flex;
        align-items: center;

        height: calc(53 / 768 * 100vw);

        border-bottom: calc(1 / 768 * 100vw) solid var(--fill-light-red);
    }

    .offices__table-row-head>img {
        width: calc(22 / 768 * 100vw);
        height: calc(22 / 768 * 100vw);

        margin-left: calc(18 / 768 * 100vw);
    }

    .offices__table-row-head>h4 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        text-transform: uppercase;
        color: var(--fill-black);

        margin-left: calc(5 / 768 * 100vw);
        width: calc(181 / 768 * 100vw);
    }

    .offices__table-row-head>p:first-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        width: calc(274 / 768 * 100vw);
        margin-left: 0;
    }

    .offices__table-row-head>p:last-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: calc(0 / 768 * 100vw);
    }

    .offices__table-row-head>button {
        background: none;
        outline: none;
        border: none;

        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);

        background: url("../media/contact/table-close.svg");
        background-size: 100%;

        margin-left: auto;
        margin-right: calc(8 / 768 * 100vw);
    }

    .offices__table-row-content {
        display: flex;

        padding-bottom: calc(11.5 / 768 * 100vw);
    }

    .offices__shedule {
        width: calc(222 / 768 * 100vw);
    }

    .offices__shedule>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-top: calc(16 / 768 * 100vw);
        margin-left: calc(18 / 768 * 100vw);
        width: calc(199 / 768 * 100vw);
    }

    .offices___contact {
        margin-top: calc(11.5 / 768 * 100vw);

        margin-left: 0;
        width: calc(269 / 768 * 100vw);
    }

    .offices__contact-row {
        display: flex;
        align-items: center;

        margin-bottom: calc(4 / 768 * 100vw);
    }

    .offices__contact-row>img {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .offices__contact-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-left: calc(8 / 768 * 100vw);
    }

    .offices__adress {

        margin-left: calc(9 / 768 * 100vw);
    }

    .offices__adress>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        width: calc(206 / 768 * 100vw);

        margin-top: calc(16 / 768 * 100vw);
    }


    .offices__table-row>.offices__table-row--open {
        display: none;
    }

    .offices__table-row>.offices__table-row--close {
        display: flex;
    }


    .offices__table-row--opened>.offices__table-row--open {
        display: block !important;
    }

    .offices__table-row--opened>.offices__table-row--close {
        display: none !important;
    }


    .offices__table-row--close {
        align-items: center;

        padding-top: calc(16 / 768 * 100vw);
        padding-bottom: calc(16 / 768 * 100vw);

        border-bottom: calc(1 / 768 * 100vw) solid #dcdcdc;
    }

    .offices__table-row--close>img {
        width: calc(22 / 768 * 100vw);
        height: calc(22 / 768 * 100vw);

        margin-left: calc(18 / 768 * 100vw);
    }

    .offices__table-row--close>h4 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        text-transform: uppercase;
        color: var(--fill-black);

        margin-left: calc(5 / 768 * 100vw);
        width: calc(180 / 768 * 100vw);
    }

    .offices__table-row--close>p:first-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: 0;
        width: calc(260 / 768 * 100vw);
    }

    .offices__table-row--close>p:last-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: calc(14 / 768 * 100vw);
    }

    .offices__table-row--close>button {
        background: none;
        outline: none;
        border: none;

        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);

        background: url("../media/contact/table-open.svg");
        background-size: 100%;

        margin-left: auto;
        margin-right: calc(8 / 768 * 100vw);
    }


    .footer {
        display: none;
    }

    .footer--mobile {
        display: block;
    }

    .footer--mobile>.container {
        display: flex;

        border-top: calc(15 / 768 * 100vw) solid #0B1518;
        margin-top: calc(30 / 768 * 100vw);
    }

    .footer--mobile__first-column>.footer__nav {
        display: none;
    }

    .footer__social>a>img {
        width: calc(120 / 768 * 100vw);
        height: calc(35 / 768 * 100vw);
    }

    .footer__inline-social {
        margin-top: calc(16 / 768 * 100vw);
    }

    .footer__inline-social>a {
        width: calc(32 / 768 * 100vw);
        height: calc(32 / 768 * 100vw);

        margin-right: calc(4 / 768 * 100vw);
    }

    .footer__inline-social>a:last-of-type {
        margin-right: 0;
    }

    .footer__inline-social>a>img {
        width: calc(32 / 768 * 100vw);
        height: calc(32 / 768 * 100vw);
    }

    .footer--mobile__second-column {
        display: flex;
        flex-direction: column;

        margin-left: calc(40 / 768 * 100vw);
    }

    .footer--mobile__group {
        display: flex;
    }

    .footer--mobile__group-1 {
        display: flex;
        flex-direction: column;
    }

    .footer__schedule-item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(2 / 768 * 100vw);

        width: calc(172 / 768 * 100vw);
    }


    .footer__schedule-head>img {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .footer__schedule-head h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);

        margin-left: calc(8 / 768 * 100vw);
    }

    .footer__contant-row {
        margin-top: calc(4 / 768 * 100vw);
    }

    .footer__contant-row:nth-child(4) {
        margin-top: calc(4 / 768 * 100vw);
    }

    .footer__contant-row>img {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .footer__contant-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);
    }

    .footer__adress-row {
        margin-left: 0;
        align-self: auto;

        margin-top: calc(4 / 768 * 100vw);
    }

    .footer__adress-row>img {
        width: calc(24 / 768 * 100vw);
        height: calc(24 / 768 * 100vw);
    }

    .footer__adress-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);

        width: calc(208 / 768 * 100vw);
    }

    .footer--mobile__group-2 {
        display: flex;
        flex-direction: column;

        margin-left: calc(40 / 768 * 100vw);
    }

    .footer--mobile__foo {
        display: flex;
        flex-direction: column;
    }

    .footer__nav {
        margin-left: 0;

        margin-top: calc(20 / 768 * 100vw);
    }

    .footer__nav>nav>a {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        text-align: center;
        color: var(--fill-black);

        margin-right: calc(14 / 768 * 100vw);
    }

    .footer__agreement {
        margin-top: calc(16 / 768 * 100vw);
    }

    .footer__agreement>a {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        color: var(--text-grey);
    }

    .footer__agreement>a:last-of-type {
        margin-left: calc(20 / 768 * 100vw);
    }
}



@media screen and (max-width: 768px) {
    .header {
        padding-top: calc(10 / 390 * 100vw);
    }

    .container {
        width: calc(358 / 390 * 100vw);
    }

    .header .container {
        display: flex;
        align-items: center;

        padding-bottom: calc(15 / 390 * 100vw);

        border-bottom: calc(15 / 390 * 100vw) solid #ED2828;
    }

    .header__logo {
        display: flex;

        width: calc(124 / 390 * 100vw);
        height: calc(36 / 390 * 100vw);
    }

    .header__logo img {
        width: calc(124 / 390 * 100vw);
        height: calc(36 / 390 * 100vw);
    }

    .header__location {
        display: none;
    }

    .nav {
        display: none;
    }

    .header__auth {
        display: none;
    }

    .header__localization {
        display: none;
    }



    .offer {
        margin-top: calc(10 / 390 * 100vw);
    }

    .container {}

    .offer>.container>h5 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: #000;
    }

    .offer__content {
        margin-top: calc(13 / 390 * 100vw);

        background: url("../media/contact/bg_offer.png") no-repeat, var(--fill-black);
        background-size: calc(391 / 390 * 100vw) calc(230 / 390 * 100vw);
        background-position: center top calc(170 / 390 * 100vw);

        padding-top: calc(20 / 390 * 100vw);
        padding-left: calc(16 / 390 * 100vw);
        padding-right: calc(16 / 390 * 100vw);
        padding-bottom: calc(16 / 390 * 100vw);

        height: calc(865 / 390 * 100vw);
    }

    .offer__content>.container>h3 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(32 / 390 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-white);
    }

    .offer__content>.container>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-white);

        margin-top: calc(18 / 390 * 100vw);

        width: calc(349 / 390 * 100vw);
    }

    .offer__info {
        padding-top: calc(20 / 390 * 100vw);
        padding-left: calc(20 / 390 * 100vw);
        padding-bottom: calc(20 / 390 * 100vw);

        background: rgba(64, 64, 64, 0.5);

        border-radius: calc(10 / 390 * 100vw);
        width: 100%;

        margin-top: calc(285 / 390 * 100vw);
    }

    .offer__mobile-group-text {
        margin-top: 0;
    }

    .offer__mobile-group-btn {
        width: calc(344 / 390 * 100vw);
        margin-left: 0;
        margin-top: calc(20 / 390 * 100vw);

        padding-right: calc(20 / 390 * 100vw);
    }

    .offer__mobile-group {
        display: flex;
        flex-direction: column;
        padding-right: calc(20 / 390 * 100vw);
        margin-top: calc(30 / 390 * 100vw);
    }

    .offer__info-head {
        display: flex;

        align-items: center;

        padding-bottom: calc(9 / 390 * 100vw);

        border-bottom: calc(7 / 390 * 100vw) solid var(--fill-red);
    }

    .offer__info-head>img {
        width: calc(32 / 390 * 100vw);
        height: calc(21 / 390 * 100vw);
    }

    .offer__info-head>h4 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(24 / 390 * 100vw);
        color: var(--fill-white);

        margin-left: calc(12 / 390 * 100vw);
    }

    .offer__info-adress {
        display: flex;
    }

    .offer__info-adress>img {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .offer__info-adress>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-white);

        margin-left: calc(8 / 390 * 100vw);
    }

    .offer__info-adress:last-of-type>p {
        width: calc(305 / 390 * 100vw);
    }

    .offer__info-adress:nth-of-type(2) {
        margin-top: calc(15 / 390 * 100vw);
    }

    .offer__info-adress:nth-of-type(3) {
        margin-top: calc(20 / 390 * 100vw);
    }

    .offer__mobile-group-text>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(13 / 390 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        text-decoration: underline;
        text-decoration-skip-ink: none;
        color: var(--fill-white);

        margin-left: calc(32 / 390 * 100vw);
        margin-top: calc(5 / 390 * 100vw);
    }

    .offer__info-btn {
        margin-top: 0;

        display: flex;
        flex-direction: column;
    }

    .offer__info-btn>button {
        background: none;
        outline: none;
        border: none;

        width: 100%;
        height: calc(60 / 390 * 100vw);

        border-radius: calc(8 / 390 * 100vw);
        padding: calc(18 / 390 * 100vw) calc(20 / 390 * 100vw);

        font-family: var(--second-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        text-align: center;
    }

    .offer__info-btn>button:first-of-type {
        background: var(--fill-black);
        color: var(--fill-white);

        margin-right: 0;
        margin-bottom: calc(15 / 390 * 100vw);
    }

    .offer__info-btn>button:last-of-type {
        background: var(--fill-white);
        color: var(--fill-black);

        margin-right: calc(20 / 390 * 100vw);
    }

    .offer__location {
        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        position: absolute;
    }

    .offer__location:hover {
        transform: scale(1.1);
        translate: all 0.3s ease;

        cursor: pointer;
    }

    .offer__location>img {
        width: calc(64 / 390 * 100vw);
        height: calc(64 / 390 * 100vw);
    }

    .offer__location>p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        color: var(--fill-white);

        margin-top: calc(6 / 390 * 100vw);
    }

    .offer__location-1 {
        top: calc(225 / 390 * 100vw);
        left: calc(45 / 390 * 100vw);
    }

    .offer__location-2 {
        top: calc(225 / 390 * 100vw);
        left: calc(180 / 390 * 100vw);
    }



    .steps {
        margin-top: calc(40 / 390 * 100vw);
    }

    .container {}

    .steps>.container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: calc(10 / 390 * 100vw);
    }

    .steps__item {
        position: relative;

        display: flex;
        flex-direction: column;

        padding-left: calc(10 / 390 * 100vw);
        padding-top: calc(50 / 390 * 100vw);
        padding-bottom: calc(10 / 390 * 100vw);
        padding-right: calc(10 / 390 * 100vw);

        border-radius: calc(4 / 390 * 100vw);
        width: auto;
        flex-basis: 100%;

        background: var(--fill-white);

        margin-right: 0;
    }

    .steps__item:last-of-type {
        margin-right: 0;
    }

    .steps__item>img {
        position: absolute;
        top: calc(10 / 390 * 100vw);
        left: calc(10 / 390 * 100vw);

        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .steps__item>h4 {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(20 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
    }

    .steps__item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(7 / 390 * 100vw);
    }

    .steps__item>button {
        background: none;
        outline: none;
        border: none;

        border: calc(1 / 390 * 100vw) solid var(--fill-red);
        border-radius: calc(8 / 390 * 100vw);
        padding: calc(18 / 390 * 100vw) calc(20 / 390 * 100vw);
        width: 100%;
        height: calc(60 / 390 * 100vw);

        font-family: var(--second-family);
        font-weight: 500;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        text-align: center;
        color: var(--fill-red);

        margin-top: calc(30 / 390 * 100vw);
    }




    .offices {
        margin-top: calc(67 / 390 * 100vw);
    }

    .offices .container {
        width: 100%;
    }

    .offices>.container>h2 {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: calc(24 / 390 * 100vw);
        line-height: 110%;
        letter-spacing: -0.03em;
        color: var(--fill-black);

        text-align: center;
    }

    .offices__table {
        width: 100%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;

        margin-top: calc(21 / 390 * 100vw);
    }

    .offices__table-head {
        display: none;

        background: var(--fill-black);

        padding-top: calc(2 / 390 * 100vw);
        padding-bottom: calc(2 / 390 * 100vw);
        padding-left: calc(18 / 390 * 100vw);
    }

    .offices__table-head>p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: calc(20 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-white);
    }

    .offices__table-head>p:nth-child(2) {
        margin-left: calc(504 / 390 * 100vw);
    }

    .offices__table-head>p:nth-child(3) {
        margin-right: calc(124 / 390 * 100vw);
        margin-left: auto;
    }

    .offices__table-row {
        display: flex;
        flex-direction: column;
    }

    .offices__table-row--open {
        margin-top: calc(7 / 390 * 100vw);

        background: var(--fill-light-grey);
    }

    .offices__table-row-head {
        display: flex;
        align-items: center;

        height: calc(53 / 390 * 100vw);

        border-bottom: calc(1 / 390 * 100vw) solid var(--fill-light-red);
    }

    .offices__table-row-head>img {
        width: calc(22 / 390 * 100vw);
        height: calc(22 / 390 * 100vw);

        margin-left: calc(18 / 390 * 100vw);
    }

    .offices__table-row-head>h4 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        text-transform: uppercase;
        color: var(--fill-black);

        margin-left: calc(5 / 390 * 100vw);
    }

    .offices__table-row-head>p:first-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        width: calc(245 / 768 * 100vw);
        margin-left: calc(143 / 768 * 100vw);

        display: none;
    }

    .offices__table-row-head>p:last-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: calc(0 / 390 * 100vw);

        display: none;
    }

    .offices__table-row-head>button {
        background: none;
        outline: none;
        border: none;

        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);

        background: url("../media/contact/table-close.svg");
        background-size: 100%;

        margin-left: auto;
        margin-right: calc(8 / 390 * 100vw);
    }

    .offices__table-row-content {
        display: flex;
        flex-direction: column;

        padding-bottom: calc(11.5 / 390 * 100vw);
    }

    .offices__shedule {
        width: calc(199 / 390 * 100vw);
    }

    .offices__shedule>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-top: calc(16 / 390 * 100vw);
        margin-left: calc(18 / 390 * 100vw);
        width: calc(199 / 390 * 100vw);
    }

    .offices___contact {
        margin-top: calc(11.5 / 390 * 100vw);

        margin-left: calc(18 / 390 * 100vw);
        width: 100%;
    }

    .offices__contact-row {
        display: flex;
        align-items: center;

        margin-bottom: calc(4 / 390 * 100vw);
    }

    .offices__contact-row>img {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .offices__contact-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-left: calc(8 / 390 * 100vw);
    }

    .offices__adress {

        margin-left: calc(18 / 390 * 100vw);
    }

    .offices__adress>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        width: calc(206 / 390 * 100vw);

        margin-top: calc(16 / 390 * 100vw);
    }


    .offices__table-row>.offices__table-row--open {
        display: none;
    }

    .offices__table-row>.offices__table-row--close {
        display: flex;
    }


    .offices__table-row--opened>.offices__table-row--open {
        display: block !important;
    }

    .offices__table-row--opened>.offices__table-row--close {
        display: none !important;
    }


    .offices__table-row--close {
        align-items: center;

        padding-top: calc(16 / 390 * 100vw);
        padding-bottom: calc(16 / 390 * 100vw);

        border-bottom: calc(1 / 390 * 100vw) solid #dcdcdc;
    }

    .offices__table-row--close>img {
        width: calc(22 / 390 * 100vw);
        height: calc(22 / 390 * 100vw);

        margin-left: calc(18 / 390 * 100vw);
    }

    .offices__table-row--close>h4 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        text-transform: uppercase;
        color: var(--fill-black);

        margin-left: calc(5 / 390 * 100vw);
    }

    .offices__table-row--close>p:first-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: calc(166 / 390 * 100vw);
        width: calc(234 / 390 * 100vw);

        display: none;
    }

    .offices__table-row--close>p:last-of-type {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        margin-left: calc(14 / 390 * 100vw);

        display: none;
    }

    .offices__table-row--close>button {
        background: none;
        outline: none;
        border: none;

        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);

        background: url("../media/contact/table-open.svg");
        background-size: 100%;

        margin-left: auto;
        margin-right: calc(8 / 390 * 100vw);
    }



    .footer--mobile {
        display: block;
    }

    .footer--mobile>.container {
        display: flex;
        flex-direction: column;

        border-top: calc(15 / 390 * 100vw) solid #0B1518;
        margin-top: calc(30 / 390 * 100vw);
        padding-top: calc(30 / 390 * 100vw);
        padding-bottom: calc(30 / 390 * 100vw);
    }

    .footer--mobile__first-column>.footer__nav {
        display: none;
    }

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

    .footer__social>a {
        width: calc(120 / 390 * 100vw);
        height: calc(35 / 390 * 100vw);
    }

    .footer__social>a>img {
        width: calc(120 / 390 * 100vw);
        height: calc(35 / 390 * 100vw);
    }

    .footer__inline-social {
        margin-top: 0;
        margin-left: auto;
    }

    .footer--mobile__first-column>.footer__nav {
        display: block;
    }

    .footer--mobile__first-column>.footer__nav>nav {
        display: flex;
        flex-wrap: wrap;

    }

    .footer--mobile__first-column>.footer__nav>nav>a {
        flex-basis: 33%;

        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        text-align: left;
        color: var(--fill-black);
    }

    .footer__inline-social>a {
        width: calc(32 / 390 * 100vw);
        height: calc(32 / 390 * 100vw);

        margin-right: calc(4 / 390 * 100vw);
    }

    .footer__inline-social>a:last-of-type {
        margin-right: 0;
    }

    .footer__inline-social>a>img {
        width: calc(32 / 390 * 100vw);
        height: calc(32 / 390 * 100vw);
    }

    .footer--mobile__second-column {
        display: flex;
        flex-direction: column;

        margin-left: 0;
    }

    .footer--mobile__group {
        display: flex;
        flex-direction: column;
    }

    .footer--mobile__group-1 {
        display: flex;
        flex-direction: column;
    }

    .footer__schedule-item {
        margin-bottom: calc(17 / 390 * 100vw);
    }

    .footer__schedule-item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);

        margin-top: calc(2 / 390 * 100vw);

        width: calc(172 / 390 * 100vw);
    }

    .footer__schedule-head>img {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .footer__schedule-head h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);

        margin-left: calc(8 / 390 * 100vw);
    }

    .footer__contant-row {
        margin-top: calc(4 / 390 * 100vw);
    }

    .footer__contant-row:nth-child(4) {
        margin-top: calc(4 / 390 * 100vw);
    }

    .footer__contant-row>img {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .footer__contant-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);
        margin-left: calc(8 / 390 * 100vw);
    }

    .footer__adress-row {
        margin-left: 0;
        align-self: auto;

        margin-top: calc(4 / 390 * 100vw);
    }

    .footer__adress-row>img {
        width: calc(24 / 390 * 100vw);
        height: calc(24 / 390 * 100vw);
    }

    .footer__adress-row>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        letter-spacing: -0.02em;
        color: var(--text-grey);

        width: calc(208 / 390 * 100vw);

        margin-left: calc(8 / 390 * 100vw);
    }

    .footer--mobile__group-2 {
        display: flex;
        flex-direction: column;

        margin-left: 0;

        margin-top: calc(28 / 390 * 100vw);
    }

    .footer--mobile__foo {
        display: flex;
        flex-direction: column;
    }

    .footer--mobile__group-1 {
        margin-top: 0;
    }

    .footer--mobile__foo>.footer__nav {
        display: none;
    }

    .footer__nav {
        margin-left: 0;
        margin-bottom: calc(20 / 390 * 100vw);
        margin-top: calc(20 / 390 * 100vw);
    }

    .footer__nav>nav>a {
        font-size: calc(14 / 390 * 100vw);
        text-align: center;

        margin-right: calc(14 / 390 * 100vw);
    }

    .footer__agreement {
        margin-top: calc(16 / 390 * 100vw);

        display: flex;
        flex-direction: column;
    }

    .footer__agreement>a {
        font-size: calc(14 / 390 * 100vw);
    }

    .footer__agreement>a:last-of-type {
        margin-left: 0;
        margin-top: calc(7 / 390 * 100vw);
    }
}

@media screen and (max-width: 1024px) {
    .nav__item-dropdown {
        flex-direction: column;

        width: calc(164 / 768 * 100vw);

        position: absolute;
        top: calc(100% + calc(10 / 768 * 100vw));

        background: var(--fill-white);
        border-radius: calc(4 / 768 * 100vw);
    }

    .nav__item-dropdown-item {
        text-align: left;

        padding-left: calc(18 / 768 * 100vw);
        padding-top: calc(10 / 768 * 100vw);
        padding-bottom: calc(10 / 768 * 100vw);
    }

    .nav__item-dropdown-item:hover {
        background: var(--fill-light-grey);
        border-radius: calc(4 / 768 * 100vw);
    }

    .nav__item-dropdown-item:hover>a {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
    }

    .nav__item-dropdown-item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .nav__item-dropdown {
        flex-direction: column;

        width: calc(164 / 390 * 100vw);

        position: absolute;
        top: calc(100% + calc(10 / 390 * 100vw));

        background: var(--fill-white);
        border-radius: calc(4 / 390 * 100vw);
    }

    .nav__item-dropdown-item {
        text-align: left;

        padding-left: calc(18 / 390 * 100vw);
        padding-top: calc(10 / 390 * 100vw);
        padding-bottom: calc(10 / 390 * 100vw);
    }

    .nav__item-dropdown-item:hover {
        background: var(--fill-light-grey);
        border-radius: calc(4 / 768 * 100vw);
    }

    .nav__item-dropdown-item:hover>a {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
    }

    .nav__item-dropdown-item>a {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
        text-align: left;
    }
}
.nav__item-dropdown-item > p {
    color: var(--fill-black);
    text-align: left;
}
.nav__item-dropdown-item > p {
    color: var(--fill-black);
    text-align: left;
}
.header-mobile__body > .header__localization {
    display: flex;

    justify-content: center;

    cursor: pointer;
}
@media screen and (max-width: 1024px) {
    .header-mobile__body > .header__localization {
        margin-top: calc(25 / 768 * 100vw);
    }
    .header-mobile__body .header__localization-select img {
        width: calc(16 / 768 * 100vw);
        height: calc(16 / 768 * 100vw);
    }
    .header-mobile__body .header__localization-select p {
        font-family: "Inter";
        font-weight: 400;
        font-size: calc(15 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-white);
        display: flex;
        margin-left: calc(4 / 768 * 100vw);
    }
    .header-mobile__body .header__localization-select > p:after {
        content: "";
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(16 / 768 * 100vw);
        height: calc(16 / 768 * 100vw);
        background: url("../media/how-buy/select_arrow_white.svg") no-repeat;
        background-size: calc(16 / 768 * 100vw);
        margin-left: calc(4 / 768 * 100vw);
    }
    .header-mobile__body .header__localization-select .nav__item-dropdown {
        left: calc(13 / 768 * -100vw);
        width: calc(80 / 768 * 100vw);
    }
    .header-mobile__body .nav__item-dropdown-item > p {
        color: var(--fill-black);
    }
    .header-mobile__body .header__localization-select .nav__item-dropdown .nav__item-dropdown-item > p {
        font-family: "Inter";
        font-weight: 400;
        font-size: calc(15 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-black);
        display: flex;
        margin-left: calc(4 / 768 * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .header-mobile__body > .header__localization {
        margin-top: calc(25 / 390 * 100vw);
    }
    .nav__item-dropdown-item>p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);
        text-align: left;
    }
    .header-mobile__body .header__localization-select img {
        width: calc(16 / 390 * 100vw);
        height: calc(16 / 390 * 100vw);
    }
    .header-mobile__body .header__localization-select p {
        font-family: "Inter";
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-white);
        display: flex;
        margin-left: calc(4 / 390 * 100vw);
    }
    .header-mobile__body .header__localization-select > p:after {
        content: "";
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(16 / 390 * 100vw);
        height: calc(16 / 390 * 100vw);
        background: url("../media/how-buy/select_arrow_white.svg") no-repeat;
        background-size: calc(16 / 390 * 100vw);
        margin-left: calc(4 / 390 * 100vw);
    }
    .header-mobile__body .header__localization-select .nav__item-dropdown {
        left: calc(13 / 390 * -100vw);
        width: calc(80 / 390 * 100vw);
    }
    .header-mobile__body .nav__item-dropdown-item > p {
        color: var(--fill-black);
    }
    .header-mobile__body .header__localization-select .nav__item-dropdown .nav__item-dropdown-item > p {
        font-family: "Inter";
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--fill-black);
        display: flex;
        margin-left: calc(4 / 390 * 100vw);
    }
}