@keyframes stickyHeader {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
#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;
    }
}

@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);
    }
}



* {
    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;
}

.footer--mobile {
    display: none;
}
.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 {
    box-shadow: 0 0 0 0.25rem #d00000;
}

input:active,
select:active {
    filter: brightness(90%);
}
.nav__item-dropdown {
    z-index: 10;
}
input,
select {
    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;
}

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

    background: #E2E2E2;
}

.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: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 > .nav__item > .nav__item-dropdown > .nav__item-dropdown-item > a {
    margin-left: 0;
}

.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__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 {
    padding-top: calc(20 / 1920 * 100vw);
    height: calc(899 / 1920 * 100vw);

    background: url("../media/bg_offer.png") center no-repeat, #E2E2E2;
    background-size: calc(1711 / 1920 * 100vw) calc(751 / 1920 * 100vw);
}

.offer .container {
    display: flex;
}

.offer__first-column {
    display: flex;
    flex-direction: column;
}

.offer__first-column h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(58 / 1920 * 100vw);
    line-height: calc(58 / 1920 * 100vw);
    letter-spacing: -0.02em;
    color: #0B1518;

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

.offer__first-column button {
    background: none;
    outline: none;
    border: none;

    border-radius: calc(4 / 1920 * 100vw);
    padding: calc(11 / 1920 * 100vw) calc(18 / 1920 * 100vw);
    width: calc(460 / 1920 * 100vw);
    height: calc(45 / 1920 * 100vw);

    background: #ED2828;

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(14 / 1920 * 100vw);
    line-height: 100%;
    color: #FFFFFF;

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

.offer__first-column>h5 {
    display: none;

    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(18 / 768 * 100vw);
    line-height: 120%;
    color: #0B1518;
}

.offer__second-column {
    margin-left: auto;
}

.offer__second-column h5 {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(18 / 1920 * 100vw);
    line-height: 120%;
    color: #0B1518;

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

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

.work {
    position: relative;
    top: calc(55 / 1920 * -100vw);
}

.work .container {
    display: flex;
}

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

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

    width: 25%;

    position: relative;

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

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

.work__text {
    border-radius: calc(10 / 1920 * 100vw);
    background: #FFFFFF;
    width: 100%;

}

.work__item img {
    width: calc(55 / 1920 * 100vw);
    height: calc(55 / 1920 * 100vw);

    position: absolute;
    top: calc(29 / 1920 * -100vw);
}

.work__item p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #595959;

    text-align: center;

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

.work__item h3 {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(20 / 1920 * 100vw);
    line-height: 120%;
    color: #0B1518;

    margin-top: calc(13 / 1920 * 100vw);
    margin-bottom: calc(29 / 1920 * 100vw);

    text-transform: uppercase;

    text-align: center;
}

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

.process .container {
    position: relative;
}

.process .container h5 {
    position: absolute;
    left: 0;
    top: 0;

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #595959;
}

.process .container h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #0B1518;

    text-align: center;
}

.process__stages {
    display: flex;

    position: relative;

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

.process__stages::after {
    content: "";

    position: absolute;
    top: calc(39 / 1920 * 100vw);
    width: 100%;
    border: calc(1 / 1920 * 100vw) solid #C4C4C4;
    z-index: 0;
}

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

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

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

.process__item:first-of-type {
    margin-left: 0;
}

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

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

    width: calc(29 / 1920 * 100vw);
    height: calc(29 / 1920 * 100vw);
    z-index: 1;
}

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

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

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

.about .container {
    position: relative;
}

.about .container>h5 {
    position: absolute;
    left: 0;
    top: 0;

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #595959;
}

.about .container>h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #0B1518;

    text-align: center;
}

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

    text-align: center;

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

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

.about__row {
    display: flex;
    justify-content: center;

    position: relative;

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

.about__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #FFFFFF;
    border-radius: calc(220 / 1920 * 100vw);

    padding: calc(153 / 1920 * 100vw) calc(54 / 1920 * 100vw);
    margin-right: calc(23 / 1920 * 100vw);

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

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

.about__item:first-of-type,
.about__item:last-of-type {
    position: relative;
    top: calc(101 / 1920 * -100vw);
}

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

.about__item>h4 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(24 / 1920 * 100vw);
    text-align: center;
    color: #0B1518;

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

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

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

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


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

.check .container {
    display: flex;
}

.check__photo {
    border-radius: calc(10 / 1920 * 100vw);
    width: calc(535 / 1920 * 100vw);
    height: calc(604 / 1920 * 100vw);

}

.check__photo>img {
    width: calc(535 / 1920 * 100vw);
    height: calc(604 / 1920 * 100vw);

}

.check__content {
    border-radius: calc(10 / 1920 * 100vw);
    background: #ED2828;

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

    margin-left: calc(20 / 1920 * 100vw);
    padding-left: calc(355 / 1920 * 100vw);

    position: relative;
}

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

    position: absolute;
    top: calc(20 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
}

.check__content>h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(40 / 1920 * 100vw);
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #FFFFFF;

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

.check__content>p {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(20 / 1920 * 100vw);
    line-height: 120%;
    color: #FFFFFF;

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

.check__content>form {
    display: flex;
    flex-direction: column;

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

.check__content>form>input {
    background: none;
    outline: none;
    border: none;

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

    background: #fefefe;

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

    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
}

.check__content>form>input::placeholder {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;
}

.check__content>form>button {
    background: none;
    outline: none;
    border: none;

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

    background: #0B1518;

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

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

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

.check__row {
    display: flex;

    position: absolute;
    left: calc(20 / 1920 * 100vw);
    bottom: calc(20 / 1920 * 100vw);
}

.check__item {
    width: calc(395 / 1920 * 100vw);
    height: calc(147 / 1920 * 100vw);

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

    padding-left: calc(25 / 1920 * 100vw);
    padding-top: calc(25 / 1920 * 100vw);
    margin-right: calc(20 / 1920 * 100vw);
}

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

.check__item>h4 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #0B1518;
}

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

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


.delivery {
    background: url("../media/bg_delivery.png") no-repeat, #0B1518;
    background-position: calc(6 / 1920 * 100vw) calc(100% - calc(11 / 1920 * 100vw));
    background-size: calc(1052 / 1920 * 100vw) calc(635 / 1920 * 100vw);

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

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

.delivery .container {
    position: relative;

    height: 100%;

    padding-left: calc(910 / 1920 * 100vw);
    padding-top: calc(44 / 1920 * 100vw);
}

.delivery .container>h5 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #FFFFFF;

    position: absolute;
    top: calc(44 / 1920 * 100vw);
    left: calc(50 / 1920 * 100vw);
}

.delivery .container>h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #FFFFFF;

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

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

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

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

.delivery__table {
    color: #FFFFFF;

    position: absolute;
    right: calc(50 / 1920 * 100vw);
    bottom: calc(56 / 1920 * 100vw);
}


table {
    all: unset;
    /* Полностью сбрасывает стили */
}

thead {
    background: #ED2828;
}

thead>tr>th {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #FFFFFF;

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

thead>tr>th:first-of-type {
    text-align: left;
}

thead>tr>th:last-of-type {
    text-align: right;
}

tbody>tr>td {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #FFFFFF;

    padding-top: calc(12 / 1920 * 100vw);
    padding-bottom: calc(12 / 1920 * 100vw);
    padding-left: calc(5 / 1920 * 100vw);
    padding-right: calc(5 / 1920 * 100vw);

    border-bottom: calc(1 / 1920 * 100vw) solid rgba(255, 255, 255, 0.5);
}

tbody>tr>td:last-of-type {
    text-align: right;
}

tbody>tr>td>img {
    width: calc(16 / 1920 * 100vw);
    height: calc(16 / 1920 * 100vw);
}

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

.post-delivery .container {
    display: flex;
}

.post-delivery__item {
    display: flex;
    flex-direction: column;

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

    border-left: calc(1 / 1920 * 100vw) solid rgba(0, 0, 0, 0.3);
    border-bottom: calc(1 / 1920 * 100vw) solid rgba(0, 0, 0, 0.3);

    height: calc(233 / 1920 * 100vw);
    width: 25%;
}

.post-delivery__item:last-of-type {
    border-left: calc(1 / 1920 * 100vw) solid rgba(0, 0, 0, 0.3);
    border-bottom: calc(1 / 1920 * 100vw) solid rgba(0, 0, 0, 0.3);
    border-right: calc(1 / 1920 * 100vw) solid rgba(0, 0, 0, 0.3);
}

.post-delivery__item>img {
    width: calc(45 / 1920 * 100vw);
    height: calc(45 / 1920 * 100vw);
}

.post-delivery__item:first-of-type>img {
    width: calc(40 / 1920 * 100vw);
    height: calc(45.35 / 1920 * 100vw);
}

.post-delivery__item>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: rgba(89, 89, 89, 1);

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


.about-us {
    margin-top: calc(130 / 1920 * 100vw);
}

.about-us .container {
    display: flex;
}

.about-us__first-column {
    display: flex;
    flex-direction: column;
}

.about-us__first-column>h5 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: rgba(89, 89, 89, 1);
}

.about-us__first-column>h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(50 / 1920 * 100vw);
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #0B1518;

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

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

.about-us__first-column>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: rgba(89, 89, 89, 1);

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

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

.about-us__second-column {
    margin-left: calc(252 / 1920 * 100vw);

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

    display: flex;
    flex-direction: column;
}

.about-us__second-column>img {
    border-radius: calc(10 / 1920 * 100vw);
    width: calc(544 / 1920 * 100vw);
    height: calc(413 / 1920 * 100vw);
}

.about-us__second-column>p {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: rgba(89, 89, 89, 1);

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

.about-us__second-column>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: #ED2828;

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

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

.feedback {
    margin-top: calc(130 / 1920 * 100vw);
}
.feedback .container {
    display: flex;
}

.feedback__first-column {
    border-radius: calc(10 / 1920 * 100vw);
    width: calc(900 / 1920 * 100vw);
    height: calc(519 / 1920 * 100vw);

    background: url("../media/feedback_img.png") no-repeat;
    background-size: 100%;
}

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

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

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

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

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

.feedback__second-column>h5 {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    color: #000;
}

.feedback__second-column>h2 {
    font-family: "Inter Tight";
    font-weight: 700;
    font-size: calc(44 / 1920 * 100vw);
    line-height: 110%;
    letter-spacing: -0.03em;
    color: #0B1518;

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

.feedback__second-column>h3 {
    font-family: "Inter Tight";
    font-weight: 500;
    font-size: calc(20 / 1920 * 100vw);
    line-height: 120%;
    color: #0B1518;

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

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

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

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

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

.feedback__second-column>form {
    display: flex;
    flex-direction: column;

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

.feedback__second-column>form>input {
    background: none;
    outline: none;
    border: none;

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

    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw);

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

    background: #F5F5F5;

    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;
}

.feedback__second-column>form>input::placeholder {
    font-family: "Inter Tight";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 120%;
    color: #595959;
}

.feedback__second-column>form>input:last-of-type {
    margin-top: calc(12 / 1920 * 100vw);
}

.feedback__checkbox {
    margin-top: calc(8 / 1920 * 100vw);

    display: flex;
    align-items: center;
}

.feedback__checkbox > label {
    margin-left: calc(8 / 1920 * 100vw);

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

.feedback__second-column>form>button {
    background: none;
    outline: none;
    border: none;

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

    padding: calc(18 / 1920 * 100vw) calc(20 / 1920 * 100vw);

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

    background: #ED2828;

    font-family: "Inter Tight";
    font-weight: 600;
    font-size: calc(16 / 1920 * 100vw);
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

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



.pretty .state label:after,
.pretty .state label:before {
    content: '';
    width: calc(14 / 1920 * 100vw);
    height: calc(14 / 1920 * 100vw);
    display: flex;
    border-radius: calc(3 / 1920 * 100vw);
    border: calc(1 / 1920 * 100vw) solid #595959;
    z-index: 0;
    position: absolute;
    left: 0;
    top: calc(0.6 / 1920 * 100vw);
    background-color: transparent;
}

.pretty .state label::after {
    border: none;
}

.pretty.p-default input:checked~.state label:after {
    background-color: #595959 !important;
}

.pretty .state label {
    position: relative;
    display: flex;
}
.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>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: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;
}

.modal--registration > form > input {
    background: none;
    outline: none;
    border: none;

    border-radius: 5px;
    padding: 18px 20px;
    width: 100%;
    height: 60px;

    background: #f6f6f6;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;

    margin-bottom: 10px;
}
.modal--registration > form > input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
}
.modal--registration > form > button {
    background: none;
    outline: none;
    border: none;

    border-radius: 8px;
    padding: 18px 20px;
    width: 100%;
    height: 60px;

    background: #d00000;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: var(--fill-white);

    margin-top: 20px;
}
.modal--registration > h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: var(--fill-black);

    margin-bottom: 30px;
}
.modal {
    padding: 30px;
}


.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 13;

    animation: stickyHeader 0.3s ease-in-out;
}



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

        background: #E2E2E2;
    }

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

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

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

        border-bottom: calc(15 / 1920 * 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 {
        padding-top: calc(40 / 768 * 100vw);
        height: calc(1106 / 768 * 100vw);

        background: url("../responsive-media/bg_offer.png") no-repeat, #E2E2E2;
        background-size: calc(737 / 768 * 100vw) calc(467 / 768 * 100vw);
        background-position: bottom calc(264 / 768 * 100vw) center;
    }

    .offer__first-column h2 {
        font-size: calc(44 / 768 * 100vw);
        line-height: 110%;

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

    .offer__first-column>h5 {
        display: block;

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

    .offer__first-column button {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(4 / 768 * 100vw);
        padding: calc(11 / 768 * 100vw) calc(18 / 768 * 100vw);
        width: calc(378 / 768 * 100vw);
        height: calc(45 / 768 * 100vw);

        background: #ED2828;

        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(14 / 768 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

    .offer__second-column {
        display: none;
    }



    .work {
        position: relative;
        top: calc(245 / 768 * -100vw);
        height: calc(80 / 768 * 100vw);
    }

    .work .container {
        display: flex;
        flex-wrap: wrap;

        column-gap: calc(10 / 768 * 100vw);
        row-gap: calc(40 / 768 * 100vw);
    }

    .work__item {
        flex-basis: calc(359 / 768 * 100vw);

        margin-right: 0;
    }

    .work__item img {
        width: calc(55 / 768 * 100vw);
        height: calc(55 / 768 * 100vw);

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

    .work__item p {
        font-size: calc(14 / 768 * 100vw);

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

    .work__item h3 {
        font-size: calc(20 / 768 * 100vw);

        margin-top: calc(13 / 768 * 100vw);
        margin-bottom: calc(29 / 768 * 100vw);
    }

    .process {
        margin-top: calc(75 / 768 * 100vw);

        position: unset;
    }
    .process .container h5 {
        font-size: calc(16 / 768 * 100vw);
    }

    .process .container h2 {
        font-size: calc(44 / 768 * 100vw);

        width: calc(504 / 768 * 100vw);
        margin: 0 auto;
    }

    .process__stages {
        display: flex;
        flex-wrap: wrap;
        row-gap: calc(20 / 768 * 100vw);
        justify-content: center;

        position: relative;

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

    .process__stages::after {
        display: none;
    }

    .process__item {
        flex-basis: calc(110 / 768 * 100vw);

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

        margin-left: 0;

        position: relative;
    }

    .process__item::after {
        content: "";

        display: flex;

        position: absolute;
        top: calc(39 / 768 * 100vw);
        width: calc(110 / 768 * 100vw);
        border: calc(1 / 768 * 100vw) solid #C4C4C4;
        z-index: 0;
    }

    .process__item:first-of-type {
        margin-left: 0;
    }

    .process__item h4 {
        font-size: calc(16 / 768 * 100vw);
    }

    .process__item img {
        margin-top: calc(10 / 768 * 100vw);

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

    .process__item p {
        font-size: calc(16 / 768 * 100vw);

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

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

    .about .container {
        position: relative;
    }

    .about .container>h5 {
        font-size: calc(16 / 768 * 100vw);
    }

    .about .container>h2 {
        font-size: calc(32 / 768 * 100vw);
    }

    .about .container>p {
        font-size: calc(16 / 768 * 100vw);

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

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

    .about__row {
        display: flex;
        justify-content: center;

        position: relative;

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

    .about__item {
        display: flex;
        flex-direction: column;
        justify-content: normal;
        align-items: center;

        background: #FFFFFF;
        border-radius: calc(220 / 768 * 100vw);

        padding: 0;
        margin-right: calc(23 / 768 * 100vw);

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

        position: relative;
    }

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

    .about__item:first-of-type,
    .about__item:last-of-type {
        position: relative;
        top: calc(101 / 1920 * -100vw);
    }

    .about__item>img {
        width: calc(70 / 768 * 100vw);
        height: calc(70 / 768 * 100vw);

        position: absolute;
        top: calc(33 / 768 * -100vw);
    }

    .about__item>h4 {
        font-size: calc(16 / 768 * 100vw);

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

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

    .about__item>p {
        font-size: calc(14 / 768 * 100vw);

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

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


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

    .check .container {
        display: flex;
    }

    .check__photo {
        display: none;

    }

    .check__content {
        border-radius: calc(10 / 768 * 100vw);
        background: #ED2828;

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

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

        position: relative;
    }

    .check__content>h5 {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #FFFFFF;

        position: absolute;
        top: calc(20 / 768 * 100vw);
        left: calc(20 / 768 * 100vw);
    }

    .check__content>h2 {
        font-size: calc(32 / 768 * 100vw);

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

    .check__content>p {
        font-size: calc(20 / 768 * 100vw);

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

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

    .check__content>form {
        display: flex;
        flex-direction: column;

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

    .check__content>form>input {
        background: none;
        outline: none;
        border: none;

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

        background: #fefefe;

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

        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
    }

    .check__content>form>input::placeholder {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #595959;
    }

    .check__content>form>button {

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

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

        font-size: calc(16 / 768 * 100vw);

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

    .check__row {
        display: flex;

        position: absolute;
        left: calc(10 / 768 * 100vw);
        bottom: calc(10 / 768 * 100vw);
    }

    .check__item {
        width: calc(230 / 768 * 100vw);
        height: auto;

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

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

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

    .check__item>h4 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #0B1518;
    }

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

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


    .delivery {
        background: url("../media/bg_delivery.png") no-repeat, #0B1518;
        background-position: bottom calc(215 / 768 * 100vw) center;
        background-size: calc(708 / 768 * 100vw) calc(414 / 768 * 100vw);

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

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

    .delivery .container {
        width: 100%;
        position: relative;

        height: 100%;

        padding: calc(20 / 768 * 100vw);
    }

    .delivery .container>h5 {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

        position: absolute;
        top: calc(20 / 768 * 100vw);
        left: calc(20 / 768 * 100vw);
    }

    .delivery .container>h2 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(32 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: #FFFFFF;

        width: calc(413 / 768 * 100vw);
        margin-left: calc(325 / 768 * 100vw);
    }

    .delivery .container>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #FFFFFF;

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

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

    .delivery__table {
        display: table;
        width: calc(728 / 768 * 100vw);

        color: #FFFFFF;

        position: absolute;
        right: calc(20 / 768 * 100vw);
        bottom: calc(24 / 768 * 100vw);
    }


    table {
        all: unset;
        /* Полностью сбрасывает стили */
    }

    thead {
        background: #ED2828;
    }

    thead>tr>th {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

    thead>tr>th:first-of-type {
        text-align: left;
    }

    thead>tr>th:last-of-type {
        text-align: right;
    }

    tbody>tr>td {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

        border-bottom: calc(1 / 768 * 100vw) solid rgba(255, 255, 255, 0.5);
    }

    tbody>tr>td:last-of-type {
        text-align: right;
    }

    tbody>tr>td>img {
        width: calc(16 / 768 * 100vw);
        height: calc(16 / 768 * 100vw);
    }



    .post-delivery {
        margin-top: calc(10 / 768 * 100vw);
    }

    .post-delivery .container {
        display: flex;
        flex-wrap: wrap;
    }

    .post-delivery__item {
        display: flex;
        flex-direction: column;

        flex-basis: 50%;

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

        border-left: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);

        height: auto;
        width: 25%;
    }

    .post-delivery__item:nth-of-type(2) {
        border-left: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-right: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
    }

    .post-delivery__item:last-of-type {
        border-left: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-right: calc(1 / 768 * 100vw) solid rgba(0, 0, 0, 0.3);
    }

    .post-delivery__item>img {
        width: calc(45 / 768 * 100vw);
        height: calc(45 / 768 * 100vw);
    }

    .post-delivery__item:first-of-type>img {
        width: calc(40 / 768 * 100vw);
        height: calc(45.35 / 768 * 100vw);
    }

    .post-delivery__item>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        color: rgba(89, 89, 89, 1);

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


    .about-us {
        margin-top: calc(130 / 768 * 100vw);
    }

    .about-us .container {
        display: flex;
    }

    .about-us__first-column {
        display: flex;
        flex-direction: column;
    }

    .about-us__first-column>h5 {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        color: rgba(89, 89, 89, 1);
    }

    .about-us__first-column>h2 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(24 / 768 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: #0B1518;

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

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

    .about-us__first-column>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: rgba(89, 89, 89, 1);

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

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

    .about-us__second-column {
        margin-left: calc(12 / 768 * 100vw);
        margin-top: calc(35 / 768 * 100vw);

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

        display: flex;
        flex-direction: column;
    }

    .about-us__second-column>img {
        border-radius: calc(10 / 768 * 100vw);
        width: calc(300 / 768 * 100vw);
        height: calc(221 / 768 * 100vw);
    }

    .about-us__second-column>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        color: rgba(89, 89, 89, 1);

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

    .about-us__second-column>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: #ED2828;

        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 768 * 100vw);
        line-height: 100%;
        text-align: center;
        color: #FFFFFF;

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

    .feedback {
        margin-top: calc(130 / 768 * 100vw);
    }
    .feedback .container {
        display: flex;
    }

    .feedback__first-column {
        border-radius: calc(10 / 768 * 100vw);
        width: calc(355 / 768 * 100vw);
        height: calc(465 / 768 * 100vw);

        background: url("../responsive-media/feedback-1.png") no-repeat;
        background-size: 100%;
    }

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

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

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

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

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

    .feedback__second-column>h5 {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(15 / 768 * 100vw);
        line-height: 100%;
        color: #000;
    }

    .feedback__second-column>h2 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(20 / 768 * 100vw);
        line-height: 110%;
        letter-spacing: -0.03em;
        color: #0B1518;

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

    .feedback__second-column>h3 {
        font-family: "Inter Tight";
        font-weight: 500;
        font-size: calc(16 / 768 * 100vw);
        line-height: 120%;
        color: #0B1518;

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

        width: 100%;
    }

    .feedback__second-column>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        color: #595959;

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

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

    .feedback__second-column>form {
        display: flex;
        flex-direction: column;

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

    .feedback__second-column>form>input {
        border-radius: calc(5 / 768 * 100vw);

        padding: calc(18 / 768 * 100vw) calc(20 / 768 * 100vw);

        width: 100%;

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

        background: #F5F5F5;

        font-size: calc(16 / 768 * 100vw);
    }

    .feedback__second-column>form>input::placeholder {
        font-size: calc(16 / 768 * 100vw);
    }

    .feedback__second-column>form>input:last-of-type {
        margin-top: calc(12 / 768 * 100vw);
    }

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

    .feedback__checkbox > label {
        margin-left: calc(8 / 768 * 100vw);

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

    .feedback__second-column>form>button {
        border-radius: calc(8 / 768 * 100vw);

        padding: calc(18 / 768 * 100vw) calc(20 / 1920 * 100vw);

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

        font-size: calc(16 / 768 * 100vw);

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



    .pretty .state label:after,
    .pretty .state label:before {
        content: '';
        width: calc(14 / 768 * 100vw);
        height: calc(14 / 768 * 100vw);
        display: flex;
        border-radius: calc(3 / 768 * 100vw);
        border: calc(1 / 768 * 100vw) solid #595959;
        z-index: 0;
        position: absolute;
        left: 0;
        top: calc(0.6 / 768 * 100vw);
        background-color: transparent;
    }

    .pretty .state label::after {
        border: none;
    }

    .pretty.p-default input:checked~.state label:after {
        background-color: #595959 !important;
    }

    .pretty .state label {
        position: relative;
        display: flex;
    }


    .footer {
        display: none;
    }

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

    .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);
    }

    .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) {
    .header {
        padding-top: calc(10 / 390 * 100vw);

        background: #E2E2E2;
    }

    .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 {
        padding-top: calc(40 / 390 * 100vw);
        height: calc(914 / 390 * 100vw);

        background: url("../responsive-media/bg_offer-2.png") no-repeat, #E2E2E2;
        background-size: calc(390 / 390 * 100vw) calc(286 / 390 * 100vw);
        background-position: bottom calc(269 / 390 * 100vw) center;
    }

    .offer__first-column h2 {
        font-size: calc(36 / 390 * 100vw);
        line-height: 110%;

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

    .offer__first-column>h5 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 120%;
        color: var(--fill-black);

        width: calc(362 / 390 * 100vw);
        margin-top: calc(20 / 390 * 100vw);
    }

    .offer__first-column button {
        background: none;
        outline: none;
        border: none;

        border-radius: calc(4 / 390 * 100vw);
        padding: calc(11 / 390 * 100vw) calc(18 / 768 * 100vw);
        width: 100%;
        height: calc(45 / 390 * 100vw);

        background: #ED2828;

        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(14 / 390 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

    .offer__second-column {
        display: none;
    }



    .work {
        position: relative;
        top: calc(245 / 390 * -100vw);
    }

    .work .container {
        column-gap: calc(10 / 390 * 100vw);
        row-gap: calc(40 / 390 * 100vw);    
    }

    .work__item {
        flex-basis: calc(174 / 390 * 100vw);
        height: calc(130 / 390 * 100vw);

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

        margin-right: 0;
    }

    .work__item img {
        width: calc(55 / 390 * 100vw);
        height: calc(55 / 390 * 100vw);

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

    .work__item p {
        font-size: calc(14 / 390 * 100vw);

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

    .work__item h3 {
        font-size: calc(16 / 390 * 100vw);

        margin-top: calc(13 / 390 * 100vw);
        margin-bottom: calc(29 / 390 * 100vw);
    }
    .work__text {
        height: 100%;
        border-radius: calc(10 / 390 * 100vw);
    }

    .process {
        margin-top: calc(75 / 390 * 100vw);

        position: unset;
    }

    .process .container h5 {
        position: unset;

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

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

    .process .container h2 {
        font-size: calc(32 / 390 * 100vw);

        width: calc(354 / 390 * 100vw);
        margin: 0 auto;
    }

    .process__stages {
        display: flex;
        flex-wrap: wrap;
        row-gap: calc(20 / 390 * 100vw);
        justify-content: center;

        position: relative;

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

    .process__stages::after {
        display: none;
    }

    .process__item {
        flex-basis: calc(110 / 390 * 100vw);

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

        margin-left: 0;

        position: relative;
    }

    .process__item::after {
        content: "";

        display: flex;

        position: absolute;
        top: calc(39 / 390 * 100vw);
        width: calc(110 / 390 * 100vw);
        border: calc(1 / 390 * 100vw) solid #C4C4C4;
        z-index: 0;
    }

    .process__item:first-of-type {
        margin-left: 0;
    }

    .process__item h4 {
        font-size: calc(16 / 390 * 100vw);
    }

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

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

    .process__item p {
        font-size: calc(16 / 390 * 100vw);

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

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

    .about .container {
        position: relative;
    }

    .about .container>h5 {
        font-size: calc(16 / 390 * 100vw);

        position: unset;

        text-align: center;
        margin-bottom: calc(10 / 390 * 100vw);
    }

    .about .container>h2 {
        font-size: calc(32 / 390 * 100vw);
    }

    .about .container>p {
        font-size: calc(16 / 390 * 100vw);

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

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

    .about__row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        position: unset;
        top: 0;

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

    .about__item {
        display: flex;
        flex-direction: column;
        justify-content: normal;
        align-items: center;
        flex-basis: calc(321 / 390 * 100vw);

        background: #FFFFFF;
        border-radius: calc(220 / 390 * 100vw);

        padding: 0;
        margin-right: 0;

        height: calc(321 / 390 * 100vw)!important;

        position: relative;

        margin-top: calc(10 / 390 * 100vw);
    }
    .about__item:first-of-type {
        margin-top: 0;
    }

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

    .about__item:first-of-type,
    .about__item:last-of-type {
        position: unset;
    }

    .about__item>img {
        width: calc(70 / 390 * 100vw);
        height: calc(70 / 390 * 100vw);

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

        position: unset;
    }

    .about__item>h4 {
        font-size: calc(24 / 390 * 100vw);

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

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

    .about__item>p {
        font-size: calc(15 / 390 * 100vw);

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

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


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

    .check .container {
        display: flex;
        width: 100%;
    }

    .check__photo {
        display: none;

    }

    .check__content {
        border-radius: calc(10 / 390 * 100vw);
        background: #ED2828;

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

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

        position: relative;
    }

    .check__content>h5 {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: #FFFFFF;

        position: unset;
    }

    .check__content>h2 {
        font-size: calc(24 / 390 * 100vw);

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

    .check__content>p {
        font-size: calc(16 / 390 * 100vw);

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

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

    .check__content>form {
        display: flex;
        flex-direction: column;

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

    .check__content>form>input {
        background: none;
        outline: none;
        border: none;

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

        background: #fefefe;

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

        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
    }

    .check__content>form>input::placeholder {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: #595959;
    }

    .check__content>form>button {

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

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

        font-size: calc(16 / 390 * 100vw);

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

    .check__row {
        display: flex;
        flex-wrap: wrap;

        position: absolute;
        left: calc(16 / 390 * 100vw);
        bottom: calc(16 / 390 * 100vw);
    }

    .check__item {
        width: calc(230 / 390 * 100vw);
        height: auto;

        flex-basis: 100%;

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

        padding: calc(10 / 390 * 100vw);
        margin-right: calc(16 / 390 * 100vw);

        margin-top: calc(10 / 390 * 100vw);
    }
    .check__item:first-of-type {
        margin-top: 0;
    }

    .check__item:last-of-type {
        margin-right: calc(16 / 390 * 100vw);
    }

    .check__item>h4 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(16 / 390 * 100vw);
        line-height: 120%;
        color: #0B1518;
    }

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

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


    .delivery {
        background: url("../responsive-media/delivery-bg.png") no-repeat, #0B1518;
        background-position: bottom calc(350 / 390 * 100vw) left calc(6 / 390 * -100vw);
        background-size: calc(390 / 390 * 100vw) calc(254 / 390 * 100vw);

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

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

    .delivery .container {
        width: 100%;
        position: relative;

        height: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        padding: calc(16 / 390 * 100vw);
    }

    .delivery .container>h5 {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        color: #FFFFFF;
        text-align: center;

        position: unset;
    }

    .delivery .container>h2 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(32 / 390 * 100vw);
        line-height: 100%;
        letter-spacing: -0.02em;
        color: #FFFFFF;

        text-align: center;

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

    .delivery .container>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 120%;
        color: #FFFFFF;

        text-align: center;
        width: calc(296 / 390 * 100vw);

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

    .delivery__table {
        display: table;
        width: calc(358 / 390 * 100vw);

        color: #FFFFFF;

        position: absolute;
        right: calc(10 / 390 * 100vw);
        bottom: calc(24 / 390 * 100vw);
    }


    table {
        all: unset;
        /* Полностью сбрасывает стили */
    }

    thead {
        background: #ED2828;
    }

    thead>tr>th {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

    thead>tr>th:first-of-type {
        text-align: left;
    }

    thead>tr>th:last-of-type {
        text-align: right;
        text-wrap: nowrap;
    }

    tbody>tr>td {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        color: #FFFFFF;

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

        border-bottom: calc(1 / 390 * 100vw) solid rgba(255, 255, 255, 0.5);
    }

    tbody>tr>td:last-of-type {
        text-align: right;
    }

    tbody>tr>td>img {
        width: calc(16 / 390 * 100vw);
        height: calc(16 / 390 * 100vw);
    }



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

    .post-delivery .container {
        display: flex;
        flex-wrap: wrap;
    }

    .post-delivery__item {
        display: flex;
        flex-direction: column;

        flex-basis: 50%;

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

        border-left: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);

        height: auto;
        width: 25%;
    }

    .post-delivery__item:nth-of-type(2) {
        border-left: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-right: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
    }

    .post-delivery__item:last-of-type {
        border-left: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-bottom: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
        border-right: calc(1 / 390 * 100vw) solid rgba(0, 0, 0, 0.3);
    }

    .post-delivery__item>img {
        width: calc(45 / 390 * 100vw);
        height: calc(45 / 390 * 100vw);
    }

    .post-delivery__item:first-of-type>img {
        width: calc(40 / 390 * 100vw);
        height: calc(45.35 / 390 * 100vw);
    }

    .post-delivery__item>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        color: rgba(89, 89, 89, 1);

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


    .about-us {
        display: none;
    }


    .feedback {
        margin-top: calc(60 / 390 * 100vw);
    }
    .feedback .container {
        display: flex;
    }

    .feedback__first-column {
        display: none;
    }

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

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

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

        margin-left: 0;

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

    .feedback__second-column>h5 {
        font-family: "Inter Tight";
        font-weight: 600;
        font-size: calc(16 / 390 * 100vw);
        line-height: 100%;
        color: #000;
    }

    .feedback__second-column>h2 {
        font-family: "Inter Tight";
        font-weight: 700;
        font-size: calc(20 / 390 * 100vw);
        line-height: 110%;
        letter-spacing: -0.03em;
        color: #0B1518;

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

    .feedback__second-column>h3 {
        font-family: "Inter Tight";
        font-weight: 500;
        font-size: calc(15 / 390 * 100vw);
        line-height: 120%;
        color: #0B1518;

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

        width: 100%;
    }

    .feedback__second-column>p {
        font-family: "Inter Tight";
        font-weight: 400;
        font-size: calc(15 / 390 * 100vw);
        line-height: 120%;
        color: #595959;

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

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

    .feedback__second-column>form {
        display: flex;
        flex-direction: column;

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

    .feedback__second-column>form>input {
        border-radius: calc(5 / 390 * 100vw);

        padding: calc(18 / 390 * 100vw) calc(20 / 390 * 100vw);

        width: 100%;

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

        background: #F5F5F5;

        font-size: calc(16 / 390 * 100vw);
    }

    .feedback__second-column>form>input::placeholder {
        font-size: calc(16 / 390 * 100vw);
    }

    .feedback__second-column>form>input:last-of-type {
        margin-top: calc(12 / 390 * 100vw);
    }

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

    .feedback__checkbox > label {
        margin-left: calc(8 / 390 * 100vw);

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

    .feedback__second-column>form>button {
        border-radius: calc(8 / 390 * 100vw);

        padding: calc(18 / 390 * 100vw) calc(20 / 1920 * 100vw);

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

        font-size: calc(16 / 390 * 100vw);

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



    .pretty .state label:after,
    .pretty .state label:before {
        content: '';
        width: calc(14 / 390 * 100vw);
        height: calc(14 / 390 * 100vw);
        display: flex;
        border-radius: calc(3 / 390 * 100vw);
        border: calc(1 / 390 * 100vw) solid #595959;
        z-index: 0;
        position: absolute;
        left: 0;
        top: calc(0.6 / 390 * 100vw);
        background-color: transparent;
    }

    .pretty .state label::after {
        border: none;
    }

    .pretty.p-default input:checked~.state label:after {
        background-color: #595959 !important;
    }

    .pretty .state label {
        position: relative;
        display: flex;
    }


    .footer {
        display: none;
    }

    .footer--mobile {
        display: block;
    }

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

        padding-top: calc(35 / 390 * 100vw);
        padding-bottom: calc(50 / 390 * 100vw);
        border-top: calc(15 / 390 * 100vw) solid #0B1518;
        margin-top: 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);
    }

    .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);
    }

    .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__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);
    }
    .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;
    }
}
@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;
    }
}
.feedback__checkbox > label {
    margin-left: calc(8 / 1920 * 100vw);

    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    line-height: 120%;
    color: var(--text-grey);
}
.checkbox-input:active {
    filter: brightness(90%);
}

/* Смена цвета границы при наведении */
.checkbox-input:hover:not(:disabled) {
    border-color: #d00000;
}

/* Стили для чекбокса при фокусе */
.checkbox-input:focus {
    border-color: #d00000;
    outline: none;
    box-shadow: 0 0 0 0.25rem #d00000;
}

/* Отключенный чекбокс */
.checkbox-input:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-input:disabled~.checkbox-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-input:checked {
    background: none;
    border-color: var(--text-grey);
    background-image: url("../media/check-svg.svg") !important;
    background-repeat: no-repeat !important;
    background-size: calc(12 / 1920 * 100vw) calc(10 / 1920 * 100vw) !important;
    background-position: center !important;
}

.checkbox-input {
    appearance: none;
    width: calc(14 / 1920 * 100vw) !important;
    height: calc(14 / 1920 * 100vw) !important;
    border: calc(1 / 1920 * 100vw) solid var(--text-grey) !important;
    border-radius: calc(3 / 1920 * 100vw) !important;
    background: none !important;
    cursor: pointer;
    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;
    margin: 0;
    padding: 0 !important;
}
@media screen and (max-width: 1024px) {
    .feedback__checkbox > label {
        margin-left: calc(8 / 768 * 100vw);

        font-weight: 400;
        font-size: calc(14 / 768 * 100vw);
        line-height: 120%;
        color: var(--text-grey);
    }
    .checkbox-input:active {
        filter: brightness(90%);
    }

    /* Смена цвета границы при наведении */
    .checkbox-input:hover:not(:disabled) {
        border-color: #d00000;
    }

    /* Стили для чекбокса при фокусе */
    .checkbox-input:focus {
        border-color: #d00000;
        outline: none;
        box-shadow: 0 0 0 0.25rem #d00000;
    }

    /* Отключенный чекбокс */
    .checkbox-input:disabled {
        filter: none;
        opacity: 0.5;
        cursor: not-allowed;
    }

    .checkbox-input:disabled~.checkbox-label {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .checkbox-input:checked {
        background: none;
        border-color: var(--text-grey);
        background-image: url("../media/check-svg.svg") !important;
        background-repeat: no-repeat !important;
        background-size: calc(12 / 768 * 100vw) calc(10 / 768 * 100vw) !important;
        background-position: center !important;
    }

    .checkbox-input {
        appearance: none;
        width: calc(14 / 768 * 100vw) !important;
        height: calc(14 / 768 * 100vw) !important;
        border: calc(1 / 768 * 100vw) solid var(--text-grey) !important;
        border-radius: calc(3 / 768 * 100vw) !important;
        background: none !important;
        cursor: pointer;
        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;
        margin: 0;
        padding: 0 !important;
    }
}
@media screen and (max-width: 768px) {
    .feedback__checkbox > label {
        margin-left: calc(8 / 390 * 100vw);

        font-weight: 400;
        font-size: calc(14 / 390 * 100vw);
        line-height: 120%;
        color: var(--text-grey);
    }
    .checkbox-input:active {
        filter: brightness(90%);
    }

    /* Смена цвета границы при наведении */
    .checkbox-input:hover:not(:disabled) {
        border-color: #d00000;
    }

    /* Стили для чекбокса при фокусе */
    .checkbox-input:focus {
        border-color: #d00000;
        outline: none;
        box-shadow: 0 0 0 0.25rem #d00000;
    }

    /* Отключенный чекбокс */
    .checkbox-input:disabled {
        filter: none;
        opacity: 0.5;
        cursor: not-allowed;
    }

    .checkbox-input:disabled~.checkbox-label {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .checkbox-input:checked {
        background: none;
        border-color: var(--text-grey);
        background-image: url("../media/check-svg.svg") !important;
        background-repeat: no-repeat !important;
        background-size: calc(12 / 390 * 100vw) calc(10 / 390 * 100vw) !important;
        background-position: center !important;
    }

    .checkbox-input {
        appearance: none;
        width: calc(14 / 390 * 100vw) !important;
        height: calc(14 / 390 * 100vw) !important;
        border: calc(1 / 390 * 100vw) solid var(--text-grey) !important;
        border-radius: calc(3 / 390 * 100vw) !important;
        background: none !important;
        cursor: pointer;
        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;
        margin: 0;
        padding: 0 !important;
    }
}
.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);
    }
}