﻿html {
    scroll-behavior: smooth;
    font-family: Inter, sans-serif !important;
    text-wrap: pretty !important;

    body {
        margin: 0;

        .cta-button {
            justify-content: center;
            border-radius: 8px;
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
            border: 1px solid #e4201b;
            background-color: #e4201b;
            align-self: start;
            margin-top: 32px;
            color: var(--Base-White, #fff);
            white-space: nowrap;
            padding: 12px 19px;
            font: 500 16px/150% Inter, sans-serif;
        }

        .cta-button:hover,
        .cta-button:active {
            background-color: #D92D20 !important;
            color: var(--Base-White, #fff) !important;
        }
    }
}

.header-page {
    position: sticky;
    top: 0;
    z-index: 100;

    .background-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .header {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        padding: 20px 60px;
    }

    .header-content {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
        gap: 100px;
        margin: 0 20px;

        grid-template-columns: auto 1fr auto;
        justify-items: left;
        align-items: center;
    }

    .burger {
        cursor: pointer;

        img.hover {
            display: none;
        }

        img.standard {
            display: block;
        }
    }

    .burger:hover {
        img.hover {
            display: block;
        }

        img.standard {
            display: none;
        }
    }

    .logo-block {
        padding-left: 31px;

        .logo {
            color: var(--Gray-warm-50, #fafaf9);
            font:
                600 20px Inter,
                sans-serif;

            a {
                color: var(--Gray-warm-50, #fafaf9);
                text-decoration: none;
            }
        }
    }

    .nav-block {
        .nav-menu {
            display: grid;
            grid-auto-flow: column;
            justify-content: space-between;
            gap: 33px;
            padding: 4px 0;
            font-size: 16px;
            color: var(--Gray-warm-200, #e7e5e4);
            font-weight: 500;
        }

        a.nav-link.nav-link-active {
            color: #e4201b;
        }

        a.nav-link {
            text-decoration: none;
            color: var(--Gray-warm-200, #e7e5e4);
            font-family: Inter, sans-serif;
        }

        a.nav-link:hover {
            color: var(--Gray-warm-400, #a9a29d);
        }

        a.nav-link:active {
            color: #e4201b;
        }
    }

    .contact-block {
        display: grid;
        grid-auto-flow: column;
        column-gap: 12px;


        .email,
        .phone,
        .ru {
            font-size: 16px;
            cursor: pointer;

            a {
                font-family: Inter, sans-serif;
                color: var(--Gray-warm-200, #e7e5e4);
                text-decoration: none;
            }

            img.hover {
                display: none;
            }

            img.standard {
                display: block;
            }
        }

        .phone:hover,
        .ru:hover {
            a {
                color: var(--Gray-warm-400, #a9a29d);
            }

            img.hover {
                display: block;
            }

            img.standard {
                display: none;
            }

        }

        .phone {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 8px;
        }

        .phone-icon {
            width: 20px;
            margin: auto 0;
            aspect-ratio: 1;
            object-fit: auto;
            object-position: center;
        }

        .phone-number {
            font-family: Inter, sans-serif;
        }

        .ru {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 8px;
            white-space: nowrap;
        }
    }

    .burger {
        display: none;
    }

    @media screen and (max-width: 1349px) {}

    @media screen and (max-width: 1100px) {
        .header {
            padding: 20px 0px;
        }

        .header-content {
            gap: 40px;
        }

        .logo-block {
            padding-left: 0;
        }

        .contact-block {

            .phone {
                display: none;
            }
        }
    }

    @media screen and (max-width: 760px) {

        background-color: #151517;

        .header {
            padding: 16px 0px;
        }

        img {
            display: none;
        }

        .logo img{
            display: block;
        }

        .header-content {
            grid-auto-flow: row;
            grid-template-columns: 1fr;
            margin: 0 16px;

            .burger {
                display: block;
                grid-row: 1;
                grid-column: 2;
            }

            .nav-block {
                display: none;
            }

            .contact-block {
                display: none;
            }
        }

        .header-content.show {
            .nav-block {
                display: grid;
                justify-self: center;
                text-align: center;
                grid-row: 2;
                grid-column: 1 / 3;

                .nav-menu {
                    grid-auto-flow: row;
                }
            }
        }
    }
}

.stretch-page {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr minmax(auto, 1440px) 1fr;

    .stretch-container {
        grid-column: 2;
    }
}

.page-1 {
    display: grid;

    .page-container {
        margin-left: 120px;
        position: relative;
        line-height: 150%;
        padding-bottom: 202px;
        overflow: hidden;
    }

    .background-image,
    .background-image-vert {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 800px;
        object-fit: cover;
        object-position: center;
    }

    .background-image-vert {
        display: none;
    }

    .hero-title {
        position: relative;
        width: 592px;
        margin-top: 178px;
        color: var(--Gray-warm-25, #fdfdfc);
        letter-spacing: -1.2px;
        font:
            600 60px/72px Inter,
            sans-serif;
    }

    .hero-description {
        position: relative;
        width: 480px;
        margin-top: 24px;
        color: var(--Gray-warm-300, #d7d3d0);
        font:
            400 20px/30px Inter,
            sans-serif;
    }

    .cta-buttons {
        position: relative;
        display: flex;
        gap: 12px;
        margin: 48px 0 91px 0;
        font-size: 16px;
    }

    .request-button {
        font-size: 16px;
        font-weight: 500;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 12px 18px;
        border-radius: 8px;
        border: 1px solid rgba(208, 213, 221, 1);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        color: var(--Gray-warm-100, #f5f5f4);
        background-color: transparent;
    }

    .request-button:hover,
    .request-button:active {
        border: 1px solid #e4201b !important;
        color: var(--Gray-warm-100, #f5f5f4) !important;
    }

    .request-icon {
        width: 20px;
        margin: auto 0;
        aspect-ratio: 1;
        object-fit: auto;
        object-position: center;
    }

    .request-text {
        font-family: Inter, sans-serif;
    }

    .order-button {
        font-size: 16px;
        font-weight: 500;

        padding: 12px 20px;
        border-radius: 8px;
        border: 1px solid rgba(228, 32, 27, 1);
        background-color: #e4201b;
        color: var(--Base-White, #fff);
        font-family: Inter, sans-serif;
        white-space: nowrap;
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        justify-content: center;
    }

    .order-button:hover {
        background-color: #D92D20;
        color: var(--Base-White, #fff);
    }

    @media screen and (max-width: 1100px) {
        .page-container {
            margin-left: 60px;
        }
    }

    @media screen and (max-width: 760px) {
        .page-container {
            margin-left: 0;
            padding-bottom: 200px;
        }

        .background-image,
        .background-image-vert {
            height: 712px;
        }


        .hero-title {
            margin: 64px 0 0 16px;
            letter-spacing: 0;
            font: 600 36px/42px Inter, sans-serif;
            width: 100%;
        }

        .hero-description {
            margin: 0;
            padding: 19px 14px;
            width: 100%;
        }

        .cta-buttons {
            margin: 0;
            padding: 34px 16px;
            display: grid;
        }

        .background-image {
            display: none;
        }

        .background-image-vert {
            display: block;
        }
    }
}

.page-2 {
    display: grid;

    .mission-section {
        grid-column: 2;
        display: flex;
        justify-content: left;
        align-items: center;
        width: 100%;
        background-color: #fff;
        margin-bottom: 78px;
    }

    .mission-container {
        margin: 16px 0;
        margin-left: 120px;
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 1280px;
    }

    .mission-content {
        display: flex;
    }


    .mission-text {
        display: flex;
        flex-direction: column;
        line-height: normal;
        width: 49%;
        margin-top: 29px;
    }

    .mission-text-content {
        display: grid;
        grid-auto-flow: row;
        row-gap: 22px;
        margin-top: 40px;
        padding-right: 30px;
    }


    .mission-title {
        color: #1c1917;
        font: 600 36px/44px Inter, sans-serif;
        letter-spacing: -0.72px;
        margin-bottom: 18px;
    }


    .mission-description {
        color: #292524;
        font: 400 18px/28px Inter, sans-serif;
    }


    .mission-image-container {
        display: flex;
        flex-direction: column;
        line-height: normal;
        width: 45%;
        margin-left: 12px;
    }

    .mission-image {
        width: 576px;
        border-radius: 6px;
        aspect-ratio: 0.97;
        object-fit: auto;
        object-position: center;
    }

    .mission-image.small {
        display: none;
    }

    @media screen and (max-width: 1349px) {
        .mission-image {
            width: 400px;
        }

        .mission-text {
            margin-top: 0;
        }

        .mission-text-content {
            margin-top: 0;
        }
    }

    @media screen and (max-width: 1100px) {
        .mission-container {
            margin-inline: 60px;
        }

        .mission-text {
            width: 100%;
        }

        .mission-content {
            display: grid;
        }

        .mission-image-container {
            width: 100%;
            margin-left: 0;
        }

        .mission-image {
            display: none;
        }

        .mission-image.small {
            display: block;
            width: 100%;
            aspect-ratio: 1.42;
            margin: 16px 0;
            border-radius: 6px;
        }

        .mission-section {
            margin-bottom: 24px;
            padding-top: 78px;
        }
    }

    @media screen and (max-width: 760px) {
        .mission-container {
            margin: 0;
        }

        .mission-image {
            display: none;
        }

        .mission-image.small {
            padding: 16px;
            border-radius: 24px;
        }

        .mission-text-content {
            margin-left: 15px;
            row-gap: 18px;
        }

        .mission-title {
            font: 600 30px/38px Inter, sans-serif;
            letter-spacing: 0;
            margin-bottom: 12px;
        }

        .mission-description {
            line-height: 24px;
        }

    }
}

.page-3 {
    display: grid;
    background-color: var(--Gray-warm-900, #1c1917);

    .our-directions {
        grid-column: 2;
        display: grid;
        align-items: center;
        justify-items: center;
        width: 100%;
        padding-bottom: 49px;
    }


    .directions-title {
        color: var(--Gray-warm-50, #fafaf9);
        text-align: center;
        letter-spacing: -0.72px;
        margin-top: 97px;
        margin-bottom: 0;
        font: 600 36px/122% Inter, sans-serif;
    }

    .directions-description {
        color: var(--Gray-warm-300, #d7d3d0);
        text-align: center;
        margin-top: 20px;
        width: 768px;
        font: 400 20px/30px Inter, sans-serif;
        text-wrap: pretty;
    }


    .directions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        padding: 47px 90px;
        row-gap: 64px;
        column-gap: 32px;
    }

    .direction-item {
        display: grid;
        justify-items: center;
    }

    .direction-icon {
        aspect-ratio: 1;
        object-fit: auto;
        object-position: center;
        width: 48px;
        align-self: center;
    }

    .direction-name {
        color: var(--Gray-warm-50, #fafaf9);
        margin-top: 20px;
        font: 500 20px/150% Inter, sans-serif;
    }

    .direction-details {
        color: var(--Gray-warm-300, #d7d3d0);
        margin-top: 8px;
        font: 400 16px/24px Inter, sans-serif;
        text-align: center;
    }

    @media (max-width: 991px) {
        padding-top: 24px;

        .our-directions {
            padding-inline: 16px;
            padding-bottom: 65px;
        }

        .directions-title {
            margin-top: 65px;
            font: 600 30px/38px Inter, sans-serif;
            letter-spacing: 0;
        }

        .directions-grid {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(6, 1fr);
            padding: 0;
            padding-top: 6px;
            row-gap: 43px;
        }

        .directions-description {
            width: 100%;
            margin-bottom: 42px;
        }

        .direction-name {
            margin-top: 17px;
        }

        .direction-icon {
            width: 40px;
        }

        .direction-details {
            margin-top: 0;
        }
    }
}

.page-4 {
    display: grid;
    background-color: var(--Gray-warm-100, #f5f5f4);

    .page-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        padding-bottom: 97px;
    }

    .heading {
        align-self: center;
        text-align: center;
        letter-spacing: -0.72px;
        margin-top: 97px;
        font: 600 36px/44px Inter, sans-serif;

        .from_china {
            color: #e4201b;
        }
    }

    .subheading {
        align-self: center;
        color: var(--Gray-warm-800, #292524);
        text-align: center;
        margin-top: 20px;
        width: 768px;
        font: 400 20px/30px Inter, sans-serif;
    }

    .content-wrapper {
        margin-top: 18px;
    }

    .content-row {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        align-content: start;
        align-items: start;
    }

    .content-column {
        display: grid;
        justify-self: end;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        align-self: stretch;
        margin-top: 139px;
        margin-left: 120px;
    }

    .title {
        color: var(--Gray-warm-900, #1c1917);
        font: 600 30px/127% Inter, sans-serif;
        margin-top: 29px;
    }

    .description {
        color: var(--Gray-warm-800, #292524);
        font: 400 18px/28px Inter, sans-serif;
        display: grid;
        margin-top: 31px;
        row-gap: 20px;

        .description-option {
            display: grid;
            grid-auto-flow: column;
            column-gap: 10px;
            justify-content: left;
            align-items: start;
        }
    }

    .image-wrapper {
        border-radius: 24px;
        background-color: var(--Gray-warm-100, #f5f5f4);
        width: 100%;
        padding-top: 59px;
        padding-left: 39px;
    }

    .image {
        width: 720px;
        aspect-ratio: 1.28;
        object-fit: auto;
        object-position: center;
        border-radius: 6px;
        border: 1px solid rgba(242, 244, 247, 1);
    }

    .content-wrapper-2 {
        .content-row {
            column-gap: 72px;
        }

        .content-column {
            justify-self: start;
        }

        .image-wrapper {
            padding-top: 76px;
            padding-left: 8px;
        }

        .text-content {
            margin-top: 232px;
            margin-left: 22px;
        }
    }

    @media screen and (max-width: 1349px) {
        .image {
            width: 550px;
        }

        .text-content {
            margin-left: 60px;
            margin-top: 30px;
        }

        .content-wrapper-2 {
            .text-content {
                margin-top: 44px;
                margin-left: 22px;
            }
        }
    }

    @media screen and (max-width: 1100px) {
        .content-row {
            grid-auto-flow: row;
            grid-template-columns: 1fr;
            row-gap: 12px;
        }

        .content-column {
            justify-self: stretch;
        }

        .image-wrapper {
            padding-inline: 39px;
        }

        .image {
            width: 100%;
        }

        .content-wrapper-2 {

            .image-wrapper {
                padding-top: 0;
                padding-inline: 39px;
            }

            .text-content {
                margin-left: 60px;
                margin-top: 30px;
            }

            .content-column {
                grid-row: 2;
                justify-self: stretch;
            }

            .content-column-2 {
                grid-row: 1
            }
        }
    }

    @media (max-width: 991px) {
        .page-container {
            padding-bottom: 24px;
            padding-inline: 16px;
        }

        .subheading {
            width: 100%;
        }

        .heading {
            margin-top: 64px;
            font: 600 30px/38px Inter, sans-serif;
            letter-spacing: 0;
            margin-bottom: 0;
        }

        .content-wrapper {
            margin-top: 0;
        }

        .text-content {
            justify-items: center;
            display: grid;
            margin: 0;
        }

        .title {
            font: 600 24px/32px Inter, sans-serif;
            margin-top: 33px;
        }

        .description {
            font: 400 16px/24px Inter, sans-serif;
            padding-inline: 16px;
            row-gap: 15px;
            justify-self: stretch;
        }

        .cta-button {
            display: none;
        }

        .image-wrapper {
            padding-top: 23px;
            padding-inline: 0;
        }

        .content-wrapper-2 {
            .image-wrapper {
                padding-top: 23px;
                padding-inline: 0;
            }

            .text-content {
                margin-top: 15px;
                margin-left: 0;
            }
        }
    }
}

.page-5 {
    display: grid;
    background-color: var(--Gray-warm-900, #1c1917);

    .contact-section {
        display: grid;
        width: 100%;
        padding-bottom: 31px;
    }

    .contact-container {
        margin: 64px 120px;
    }

    .contact-content {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        column-gap: 27px;
    }

    .contact-form {
        display: grid;
    }

    .contact-form-content {
        margin: 140px 48px;
    }

    .contact-heading {
        margin-top: 32px;
        color: var(--Gray-warm-25, #fdfdfc);
        letter-spacing: -0.72px;
        font: 600 36px/122% Inter, sans-serif;
    }

    .contact-description {
        color: var(--Gray-warm-400, #a9a29d);
        margin: 20px 32px 0 0;
        font: 20px Inter, sans-serif;
    }

    form {
        width: 480px;
        margin-top: 52px;
        display: grid;
        grid-auto-flow: row;
        row-gap: 10px;
        justify-content: stretch;
        align-content: start;

        .form-control {
            font-size: 16px;
            line-height: 2rem;
            padding-left: 10px;

            /* color: var(--Gray-warm-300, #d7d3d0); */
        }

        input[type='checkbox'] {
            height: 20px;
            width: 20px;
        }

        input[type='checkbox']:checked {
            background-color: var(--Base-White, #fff);
        }
    }

    .contact-privacy-text {
        padding-left: 9px;
        color: var(--Gray-warm-400, #667085);
    }

    .contact-submit-button {
        margin-top: 4px;
        font-weight: 500;
        padding: 12px 20px;
    }

    .contact-submit-button:disabled {
        border: 1px solid rgba(208, 213, 221, 1);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
        color: var(--Gray-warm-100, #f5f5f4);
        background-color: transparent;
    }

    .policy-link {
        text-decoration: underline;
        cursor: pointer;
    }

    .contact-image-container {
        margin-left: 20px;
    }

    .contact-image {
        height: 800px;
        aspect-ratio: 0.72;
        object-fit: auto;
        object-position: center;
    }

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .contact-privacy {
        label {
            color: var(--Gray-warm-400, #a9a29d) !important;
        }

        button {
            color: var(--Gray-warm-400, #a9a29d) !important;

            padding: 0;
            margin: 0;
        }
    }

    @media screen and (max-width: 1349px) {
        .contact-image {
            height: 500px;
        }

        .contact-container {
            padding: 64px 40px;
        }
    }

    @media screen and (max-width: 1100px) {
        .contact-image-container {
            display: none;
        }

        .contact-form-content {
            margin: 34px 0;
        }
    }

    @media (max-width: 991px) {
        padding-top: 40px;

        .contact-container {
            padding: 0;
            margin: 0px 16px;
        }

        .contact-content {
            grid-template-columns: 1fr;
        }

        .contact-form-content {
            margin: 34px 0;
        }

        form {
            width: 100%;
            row-gap: 0;

            .mb-3 {
                margin-bottom: 1.6rem !important;
            }
        }
    }
}

.page-footer {
    .footer {
        align-items: center;
        background-color: var(--Gray-warm-900, #1c1917);
        color: var(--Gray-warm-400, #a9a29d);
        display: flex;
        font-size: 16px;
        font-weight: 400;
        justify-content: center;
        line-height: 150%;
        padding: 49px 120px;
        padding-bottom: 70px;

        a:hover{
            text-decoration: underline;
        }
    }

    .footer-content {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }

    .contact-info {
        display: flex;
        gap: 12px;

        a {
            font-family: Inter, sans-serif;
            color: var(--Gray-warm-400, #a9a29d);
            text-decoration: none;
        }
    }

    .email-container,
    .phone-container {
        border-radius: 8px;
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 10px 18px;
    }

    .icon {
        aspect-ratio: 1;
        margin: auto 0;
        object-fit: auto;
        object-position: center;
        width: 20px;
    }

    .email,
    .phone-number {
        font-family: Inter, sans-serif;
    }

    .map-link:hover{
        text-decoration: underline;
        cursor: pointer;
    }

    .copyright {
        font-family: Inter, sans-serif;
        margin: auto 0;
        text-align: right;
    }

    @media screen and (max-width: 1349px) {
        .footer {
            padding: 49px 40px;
            padding-bottom: 70px;
        }
    }

    @media screen and (max-width: 1100px) {
        .footer-content {
            flex-flow: wrap;
            justify-content: center;
        }
    }

    @media (max-width: 991px) {
        .footer {
            padding: 16px;
            padding-top: 41px;
            padding-bottom: 48px;
        }

        .footer-content {
            justify-content: start;
            gap: 35px;
        }

        .contact-info {
            display: grid;
            justify-items: start;
            gap: 32px
        }

        .email-container,
        .phone-container {
            padding: 0;
        }
    }
}

:root {
    .form-check-input:checked[type=checkbox] {
        --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2357534E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    }
}


.social-container {
    position: fixed;
    bottom: 20px;
    right: 20px;

    height: 60px;

    display: grid;
    grid-auto-flow: column;
    column-gap: 8px;
    align-items: center;


    .social-card {
        display: flex;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;

        .social-card-content {
            .icon {
                height: 0;
                width: 0;
            }
        }
    }

    .social-card.show {
        opacity: 1;

        .social-card-content {
            .icon {
                height: auto;
                width: auto;
            }
        }
    }

    .social-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 8px 16px;
        border-radius: 40px;
        background-color: var(--Base-White, #fff);

        .icon-list {
            display: flex;
            gap: 8px;
            padding: 4px 0;
        }
    }

    .social-card-arrow {
        width: 6px;
        margin: auto 0;
        aspect-ratio: 0.37;
        object-fit: auto;
        object-position: center;
        margin-left: -1px;
    }

    .social-button {
        margin-top: 0 !important;
        align-self: center !important;
        cursor: pointer;

        span {
            display: block;
        }

        img {
            display: none;
        }
    }
}

@media (max-width: 991px) {
    .social-container {

        height: auto;
        grid-auto-flow: row;
        row-gap: 8px;

        .social-card {
            display: grid;
            justify-content: end;
            justify-items: center;

            .social-card-content {
                .icon {}
            }
        }

        .social-card-content {
            width: 48px;
            padding: 8px;
            align-items: center;

            .icon-list {
                flex-flow: column;

            }
        }

        .social-card-arrow {
            transform: rotate(90deg);
            margin-left: 0;
            margin-top: -6px;
        }

        .social-button {
            height: 48px;
            width: 48px;
            padding: 0;
            display: grid;
            justify-content: center;
            align-content: center;

            span {
                display: none;
            }

            img {
                height: 20px;
                display: block;
            }
        }
    }
}

#google_translate_element {
    display: none;
    background-color: var(--Gray-warm-900, #1c1917);
    padding: 0px 122px;
}