/* Bebas Neue */
@font-face {
    font-family: 'Bebas Neue';
    src: url('/wp-content/themes/continental/assets/fonts/BebasNeueBold.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Inter */
/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvvYwYL8g.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvmYwYL8g.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvsYwYL8g.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcviYwY.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --color-bg-overlay: #282828;
    --color-bg-header: linear-gradient(180deg, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.32) 100%);
    --color-bg-primary: #1E4B5C;
    --color-bg-form: #FFFFFF1A;
    --color-text-primary: #F0F8FF;
    --border-radius-base: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    line-height: 100%;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg-overlay);
}

#up {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: var(--color-bg-primary);
    border-radius: 100%;
    cursor: pointer;
    z-index: 10;

    svg {
        width: 36px;
        height: 36px;

        path {
            fill: white;
        }
    }
}

.container {
    width: 100%;
    max-width: 600px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
    width: 100%;
    height: 52px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-bg-primary);
    border-radius: var(--border-radius-base);
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    cursor: pointer;
}

.language, .currency {
    position: relative;

    span {
        text-transform: uppercase;
        cursor: pointer;
    }

    .selector {
        position: absolute;
        top: 37px;
        left: -12px;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 24px;
        width: 100%;
        background: #1A1A1A;
        list-style-type: none;
        gap: 24px;

        li a {
            text-transform: uppercase;
        }
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #1E4B5C;
    transition: all 0.3s ease-in-out;

    .cross {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 8px;
        padding-right: 14px;

        button {
            width: auto;
            height: auto;
            background: transparent;
            border: none;
        }
    }
    .logo {
        margin-bottom: 32px;
        height: 75px;
    }
    ul {
        list-style-type: none;
        overflow: auto;

        li {
            border-bottom: 1px solid #F0F8FF4D;
            font-size: 14px;
            text-transform: uppercase;

            a, label {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 14px;
                height: 45px;
                font-size: 14px;
                text-transform: uppercase;
            }

            label {
                border-bottom: 1px solid transparent;
            }

            label span {
                font-size: 14px;
                text-transform: uppercase;
            }

            ul {
                padding-left: 60px;
                height: 0;
                overflow: hidden;

                li {
                    display: flex;
                    align-items: center;
                    padding: 8px 14px;
                    width: 100%;
                    min-height: 46px;
                    height: 46px;
                    max-height: 46px;
                    border-bottom: 1px solid #F0F8FF4D;
                    gap: 12px;

                    &:last-child {
                        border-bottom: 0;
                    }

                    span {
                        font-size: 14px;
                    }

                    .logo {
                        display: flex;
                        justify-content: center;
                        margin-bottom: 0;
                        margin-left: auto;
                        height: 100%;
                        width: 80px;

                        img {
                            height: 100%;
                            width: 100%;
                            object-fit: contain;
                        }
                    }
                }
            }

            input:checked + label {
                border-bottom: 1px solid #F0F8FF4D;
            }

            input:checked + label img {
                transform: rotate(90deg);
            }

            input:checked + label + ul {
                height: auto;
            }
        }
    }
    .buttons {
        display: flex;
        align-items: center;
        margin-top: auto;
        gap: 10px;

        a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 46px;
            background: #F0F8FF;
            border-radius: var(--border-radius-base);
        }
    }
}

header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 60px;
    background: var(--color-bg-header);
    z-index: 20;

    p, img {
        cursor: pointer;
    }

    button {
        width: auto;
        height: auto;
        background: transparent;
        border: none;
    }
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px 60px 16px;
    background: var(--color-bg-primary);
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;

    .logo {
        margin-bottom: 24px;
        width: 100%;
        max-width: 170px;
    }

    .description {
        margin-bottom: 32px;
        font-size: 12px;
        line-height: 100%;
    }

    form {
        display: flex;
        flex-direction: column;
        padding: 20px 12px;
        width: 100%;
        gap: 10px;
        background: var(--color-bg-form);

        input {
            padding: 0 14px;
            height: 44px;
            width: 100%;
            border: 1px solid #FFFFFF;
            border-radius: var(--border-radius-base);
            color: black;
            outline: none;
        }

        .iti__selected-dial-code {
            color: black;
        }

        button {
            margin-top: 14px;
            height: 46px;
            color: var(--color-bg-primary);
            font-size: 20px;
            background: #FFFFFF;
            border-color: #FFFFFF;
        }

        p {
            font-size: 12px;
            line-height: 100%;
        }
    }

    hr {
        margin: 32px 0;
        width: 100%;
        border: 1px solid #C6C6C64F
    }

    .info {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;

        div {
            display: flex;
            align-items: center;
        }

        .selectors {
            gap: 20px;
        }

        .item {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 10px;
        }
    }

    .payments {
        display: flex;
        align-items: center;
        width: 100%;

        img {
            height: 56px;
        }
    }

    .policies {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        width: 100%;

        a {
            font-size: 14px;
        }
    }

    .copyright {
        width: 100%;
        font-size: 14px;
        line-height: 100%;
    }
}

@keyframes loader {
    to {
        transform: rotate(.5turn);
    }
}

.loader {
    display: none;
    margin: 0 auto;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #fff #fff0;
    animation: loader 1s infinite;
}

main {
    padding: 0 16px;

    .currency .selector li {
        font-family: "Bebas Neue", sans-serif;
        font-size: 20px;
    }

    section {
        position: relative;
        margin-bottom: 48px;

        .title {
            display: flex;
            flex-direction: column;
            gap: 8px;

            h2 {
                font-family: "Bebas Neue", sans-serif;
                font-size: 30px;
            }

            p {
                font-size: 14px;
                font-weight: 500;
            }
        }
    }

    .car-card {
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: var(--border-radius-base);

        .badge {
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4px 14px;
            height: 36px;
            background: #1E4B5C;
            border-radius: var(--border-radius-base) var(--border-radius-base) var(--border-radius-base) 0;
            font-family: "Bebas Neue", sans-serif;
            z-index: 1;
        }

        .brand {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4px 14px;
            max-width: 50%;
            height: 36px;
            background: #2d2e2f80;
            border-radius: 0 var(--border-radius-base) var(--border-radius-base) var(--border-radius-base);
            z-index: 1;

            img {
                display: block;
                max-width: 100%;
                width: auto;
                height: 100%;
                object-fit: contain;
            }
        }

        .poster {
            position: relative;
            height: 200px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
                border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
            }

            div {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 30%;
                background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111111 100%);
            }
        }

        .info {
            display: flex;
            flex-direction: column;
            padding: 10px 12px 20px 12px;
            gap: 20px;
            background: #101010;
            border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);

            .advantages {
                display: flex;
                align-items: center;
                gap: 4px;

                span {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 0 4px;
                    height: 24px;
                    width: 100%;
                    background: #2d2e2f;
                    border-radius: var(--border-radius-base);
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 12px;
                    text-wrap: nowrap;
                }
            }

            .title {
                display: flex;
                flex-direction: column;
                gap: 8px;

                h3 {
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 32px;
                    text-transform: uppercase;
                }

                p {
                    font-size: 12px;
                }
            }

            .price {
                display: flex;
                align-items: center;
                gap: 8px;

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 0 14px;
                    height: 32px;
                    background: #363738;
                    border: 1px solid transparent;
                    border-radius: var(--border-radius-base);
                    gap: 8px;

                    span {
                        font-family: "Bebas Neue", sans-serif;
                        font-size: 20px;
                    }
                }

                .currency {
                    padding: 0;

                    span {
                        position: relative;

                        &::after {
                            content: "";
                            display: inline-block;
                            margin-top: 6px;
                            width: 4px;
                            height: 4px;
                            margin-left: 6px;
                            border-right: 2px solid currentColor;
                            border-bottom: 2px solid currentColor;
                            transform: rotate(45deg);
                        }
                    }
                }

                p {
                    width: 80px;
                    font-size: 10px;
                }
            }

            .actions {
                display: flex;
                gap: 16px;

                button, a {
                    height: 46px;
                    font-size: 20px;
                }

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    border: 1px solid #F0F8FF;
                    border-radius: var(--border-radius-base);
                    font-family: "Bebas Neue", sans-serif;
                    text-transform: uppercase;
                }
            }
        }
    }

    section.promo {
        display: flex;
        flex-direction: column;
        margin-top: -60px;
        margin-bottom: 0;
        height: 100svh;

        .overlay {
            position: absolute;
            top: 0;
            left: -16px;
            width: calc(100% + 32px);
            height: 100%;
            background: #00000066;
            z-index: -1;
        }

        .bottom-overlay {
            position: absolute;
            bottom: 0;
            left: -16px;
            width: calc(100% + 32px);
            height: 100px;
            background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #282828 86.06%);
        }

        img {
            position: absolute;
            top: 0;
            left: -16px;
            width: calc(100% + 32px);
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: -1;
        }

        h1 {
            display: flex;
            flex-direction: column;
            padding-top: 90px;
            margin-bottom: 8px;
            text-transform: uppercase;

            span {
                font-family: "Bebas Neue", sans-serif;
                font-size: 64px;
                line-height: 87%;

                i {
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 34px;
                    line-height: 102%;
                    font-style: normal;
                }
            }

            span:first-child {
                font-size: 34px;
            }
        }

        .advantages {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;

            p {
                display: flex;
                align-items: center;
                padding: 0 8px;
                height: 36px;
                backdrop-filter: blur(24px);
                border-radius: var(--border-radius-base);
                font-family: "Bebas Neue", sans-serif;
                font-size: 18px;
                text-transform: uppercase;
            }
        }

        button {
            margin-top: auto;
            margin-bottom: 100px;
        }
    }

    section.brands {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: -50px;
        gap: 6px;

        button {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4px 8px;
            height: 24px;
            width: auto;
            background: transparent;
            border: 1px solid var(--color-text-primary);
            border-radius: var(--border-radius-base);

            img {
                width: auto;
                height: 100%;
            }

            &:nth-child(15) img {
                width: 100px;
            }

            &:nth-child(16) img {
                width: 130px;
            }

            &:nth-child(17) img {
                width: 65px;
            }

            &:nth-child(18) img {
                width: 120px;
            }
        }
    }

    section.offers-slider {
        margin-bottom: 48px;
        border-radius: var(--border-radius-base);

        h2 {
            margin-bottom: 32px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 38px;
        }

        .splide__slide {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 14px;
            border-radius: var(--border-radius-base);

            a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;

                img {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    border-radius: var(--border-radius-base);
                    object-fit: cover;
                    object-position: center center;
                    z-index: -1;
                }
            }

            div {
                display: flex;
                align-items: center;
                margin-bottom: 12px;
                gap: 4px;

                p {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 26px;
                    padding: 0 8px;
                    backdrop-filter: blur(24px);
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 14px;
                }
            }

            h2 {
                position: relative;
                width: 100%;
                max-width: 150px;
                font-family: "Bebas Neue", sans-serif;
                font-size: 38px;

                &::before {
                    content: "";
                    position: absolute;
                    top: -30%;
                    left: -50%;
                    width: 200%;
                    height: 160%;
                    background: rgba(0, 0, 0, 0.6);
                    filter: blur(12px);
                    z-index: -1;
                }
            }

            button {
                margin-top: auto;
                width: 130px;
                height: 36px;
                font-size: 15px;
                font-weight: 400;
            }
        }

        .splide__pagination {
            bottom: -24px;
        }
    }

    .cars-select-types-modal, .cars-select-brands-modal {
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        flex-direction: column;
        padding: 32px 16px;
        width: 100%;
        height: 100%;
        z-index: 100;
        background: #282828;
        transition: all 0.3s ease-in-out;
        gap: 36px;

        .header {
            position: relative;
            display: flex;
            justify-content: center;

            button {
                position: absolute;
                top: 6px;
                left: 0;
                width: auto;
                height: auto;
                background: transparent;
                border: none;

                img {
                    width: 14px;
                    height: 14px;
                    transform: rotate(180deg);
                }
            }

            h2 {
                font-family: "Bebas Neue", sans-serif;
                font-size: 28px;
            }
        }

        .body {
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: auto;

            label {
                display: flex;
                align-items: center;
                padding: 8px 14px;
                width: 100%;
                min-height: 46px;
                max-height: 46px;
                border-bottom: 1px solid #F0F8FF4D;
                gap: 12px;

                span {
                    font-size: 14px;
                }

                input {
                    width: 20px;
                    height: 20px;
                    border-radius: var(--border-radius-base);
                    outline: none;
                }

                .logo {
                    display: flex;
                    justify-content: center;
                    margin-left: auto;
                    height: 100%;
                    width: 80px;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                    }
                }
            }
        }

        .apply {
            margin-top: auto;
            height: 46px;
            font-size: 20px;
        }
    }

    section.cars {
        display: flex;
        flex-direction: column;
        margin-bottom: 32px;
        gap: 32px;

        h2 {
            font-family: "Bebas Neue", sans-serif;
            font-size: 38px;
        }

        .filters {
            position: sticky;
            top: 60px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 10;

            button {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 16px;
                width: 100%;
                height: 36px;
                background: #282828;
                border: 1px solid #F0F8FF;
                border-radius: var(--border-radius-base);
                cursor: pointer;

                span {
                    display: block;
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 14px;
                    text-transform: uppercase;

                    i {
                        font-family: "Bebas Neue", sans-serif;
                        font-size: 14px;
                        font-style: normal;
                    }
                }

                img {
                    width: 14px;
                    height: 14px;
                }
            }
        }

        .cards {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;

            button, span {
                display: flex;
                justify-content: center;
                align-items: center;
                padding-top: 2px;
                height: 26px;
                width: 36px;
                background: transparent;
                border: 1px solid #F0F8FF;
                border-radius: 5px;
                font-family: "Bebas Neue", sans-serif;
                font-size: 12px;
                font-weight: 700;
                line-height: 0;
                transition: all 0.3s ease-in-out;

                &:hover, &.current {
                    background: #F0F8FF;
                    color: #091231;
                }
            }
        }
    }

    section.special {
        position: relative;
        width: 100%;
        border-radius: var(--border-radius-base);

        img, video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-base);
        }

        h3 {
            position: absolute;
            top: 20px;
            left: 14px;
            padding-right: 14px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 38px;
        }
    }

    section.advantages {
        display: flex;
        flex-direction: column;
        margin-bottom: 32px;
        gap: 8px;

        .advantage {
            display: flex;
            flex-direction: column;
            padding: 20px 14px;
            border-radius: var(--border-radius-base);
            gap: 10px;
            background: #1A1A1A;

            & > div {
                display: flex;
                justify-content: space-between;
                align-items: center;

                & > div {
                    display: flex;
                    align-items: center;
                    gap: 16px;

                    img {
                        width: 30px;
                        height: 30px;
                    }

                    h3 {
                        font-family: "Bebas Neue", sans-serif;
                        font-size: 21px;
                        text-transform: uppercase;
                    }
                }

                span {
                    color: #FFFFFF;
                    font-size: 13px;
                    font-weight: 500;
                }
            }

            p {
                width: 90%;
                font-size: 14px;
                line-height: 120%;
            }
        }
    }

    section.choices-slider {
        h2 {
            margin-bottom: 32px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 38px;
        }

        .splide__pagination {
            bottom: -24px;
        }
    }

    section.steps {
        display: flex;
        flex-direction: column;
        padding: 30px 14px;
        gap: 20px;
        background: #1A1A1A;
        border-radius: var(--border-radius-base);

        .items {
            display: flex;
            flex-direction: column;
            gap: 20px;

            & > div {
                position: relative;
                display: flex;
                align-items: center;
                gap: 8px;

                &::after {
                    content: "";
                    position: absolute;
                    left: 11px;
                    bottom: -40%;
                    height: 60%;
                    border: 1px solid #FFFFFF;
                }

                &:last-child::after {
                    display: none;
                }

                & > span {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    min-width: 24px;
                    height: 24px;
                    border: 1px solid var(--color-text-primary);
                    border-radius: 100%;
                    font-weight: 500;
                    z-index: 1;
                }

                & > div {
                    display: flex;
                    flex-direction: column;
                    padding: 24px 14px;
                    width: 100%;
                    gap: 8px;
                    border: 1px solid var(--color-text-primary);
                    border-radius: var(--border-radius-base);

                    p {
                        font-size: 18px;
                        font-weight: 500;
                    }

                    span {
                        font-size: 14px;
                    }
                }
            }
        }
    }

    section.beautiful-image {
        margin-bottom: 32px;

        img, video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-base);
        }
    }

    section.reviews {
        display: flex;
        flex-direction: column;
        padding: 30px 14px;
        gap: 20px;
        background: #1A1A1A;
        border-radius: var(--border-radius-base);

        .title a {
            display: flex;
            align-items: center;
            padding: 0 20px;
            height: 56px;
            width: fit-content;
            background: #1E4B5C;
            border-radius: var(--border-radius-base);
            gap: 18px;

            img {
                height: 50px;
                width: 50px;
            }

            span {
                font-family: "Bebas Neue", sans-serif;
                font-size: 40px;
            }

            p {
                width: 70px;
                font-family: "Bebas Neue", sans-serif;
                text-transform: uppercase;
            }
        }

        .reviews-slider {
            margin-bottom: 24px;

            .splide__slide {
                display: flex;
                flex-direction: column;
                padding: 20px;
                border: 1px solid var(--color-text-primary);
                border-radius: var(--border-radius-base);
                gap: 20px;

                .stars {
                    display: flex;
                    align-items: center;

                    img {
                        width: 16px;
                        height: 16px;
                    }
                }

                .content {
                    height: 100%;
                    overflow: auto;

                    p {
                        font-size: 14px;
                        line-height: 140%;
                    }
                }

                .reviewer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: auto;

                    span:first-child {
                        color: var(--color-bg-primary);
                        font-size: 18px;
                    }
                }
            }

            .splide__pagination {
                bottom: -24px;
            }
        }
    }

    section.faq {
        display: flex;
        flex-direction: column;
        gap: 24px;

        .image-title {
            position: relative;
            width: 100%;
            border-radius: var(--border-radius-base);

            img, video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: var(--border-radius-base);
            }

            h2 {
                position: absolute;
                top: 20px;
                left: 14px;
                padding-right: 14px;
                font-family: "Bebas Neue", sans-serif;
                font-size: 38px;
            }
        }

        .items {
            display: flex;
            flex-direction: column;
            gap: 8px;

            .item {
                display: flex;
                flex-direction: column;
                padding: 20px 14px;
                background: #1A1A1A;
                border-radius: var(--border-radius-base);
                cursor: pointer;

                label {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 30px;
                    cursor: pointer;

                    span {
                        font-family: "Bebas Neue", sans-serif;
                        font-size: 21px;
                    }

                    img {
                        min-width: 24px;
                        height: 24px;
                    }
                }

                .content {
                    padding-right: 54px;
                    width: 100%;
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.3s ease-out;

                    p {
                        margin-top: 10px;
                        font-size: 12px;
                    }
                }

                input {
                    display: none;
                }

                input:checked ~ label img {
                    transform: rotate(90deg);
                }

                input:checked ~ .content {
                    max-height: 500px;
                }
            }
        }
    }

    section.policy {
        display: flex;
        flex-direction: column;
        padding: 32px 0;
        gap: 20px;

        .header {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 12px;

            a {
                position: absolute;
                top: 6px;
                left: 0;

                img {
                    width: 14px;
                    height: 14px;
                    transform: rotate(180deg);
                }
            }

            h1 {
                font-family: "Bebas Neue", sans-serif;
                font-size: 28px;
            }
        }

        p, b, li {
            font-size: 12px;
            line-height: 140%;
        }

        b {
            font-weight: 700;
        }

        ul {
            margin-left: 20px;
        }
    }

    section.car-title {
        display: flex;
        flex-direction: column;
        margin: 24px 0;
        gap: 8px;

        a {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 4px;

            img {
                width: 14px;
                height: 14px;
                rotate: 180deg;
            }

            span {
                color: #F0F8FF;
                font-size: 14px;
            }
        }

        h1 {
            font-family: "Bebas Neue", sans-serif;
            font-size: 32px;
            text-transform: uppercase;
        }

        p {
            font-size: 12px;
        }
    }

    section.car-gallery {
        display: flex;
        flex-direction: column;
        margin-bottom: 24px;
        gap: 8px;

        li {
            border-radius: var(--border-radius-base);

            img {
                border-radius: var(--border-radius-base);
            }
        }

        .car-gallery-thumbnail-slider {
            opacity: 0.7;

            li {
                border: none !important;
            }
        }

        .splide__arrow {
            background: transparent;
            opacity: 1;

            &.splide__arrow--next {
                right: 0;
            }

            &.splide__arrow--prev {
                left: 0;
            }

            svg path {
                fill: white;
            }
        }
    }

    section.car-book {
        margin-bottom: 24px;

        & > div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            gap: 12px;
            background: #1A1A1A;
            border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;

            & > div {
                display: flex;
                flex-direction: column;
                width: 100%;

                &:first-child div {
                    background: transparent;
                    border: 1px solid #F0F8FFB2;
                }

                &:last-child div {
                    background: #363738;
                    border: 1px solid transparent;
                }

                & > div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 8px;
                    height: 32px;
                    border-radius: var(--border-radius-base);
                    gap: 8px;

                    span {
                        font-family: "Bebas Neue", sans-serif;
                        font-size: 20px;
                    }

                    .currency {
                        padding: 0;
                        border: none;

                        span {
                            position: relative;

                            &::after {
                                content: "";
                                display: inline-block;
                                margin-top: 6px;
                                width: 4px;
                                height: 4px;
                                margin-left: 6px;
                                border-right: 2px solid currentColor;
                                border-bottom: 2px solid currentColor;
                                transform: rotate(45deg);
                            }
                        }
                    }
                }

                p {
                    font-size: 10px;
                    text-align: center;
                    justify-content: center;
                }
            }
        }

        button {
            height: 46px;
            border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
            font-size: 20px;
        }
    }

    section.car-info {
        display: flex;
        flex-direction: column;
        margin-bottom: 24px;
        gap: 8px;

        .item {
            display: flex;
            flex-direction: column;
            padding: 20px 14px;
            background: #1A1A1A;
            border-radius: var(--border-radius-base);
            cursor: pointer;

            label {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 30px;
                cursor: pointer;

                span {
                    font-family: "Bebas Neue", sans-serif;
                    font-size: 21px;
                }

                img {
                    min-width: 24px;
                    height: 24px;
                }
            }

            .content {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;

                p {
                    display: flex;
                    flex-direction: column;
                    margin-top: 8px;
                    font-size: 12px;
                    line-height: 140%;

                    span {
                        font-size: 12px;
                        line-height: 140%;
                    }
                }
            }

            input {
                display: none;
            }

            input:checked ~ label img {
                transform: rotate(90deg);
            }

            input:checked ~ .content {
                max-height: 3000px;
            }
        }
    }

    section.car-badges,
    section.car-advantages {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 24px;
        gap: 8px;

        div {
            display: flex;
            align-items: center;
            padding: 0 10px;
            height: 32px;
            gap: 6px;
            border-radius: var(--border-radius-base);
            background: #1A1A1A;

            img {
                width: 24px;
                height: 24px;
            }

            h3 {
                font-size: 14px;
            }
        }
    }

    section.contact-form {
        margin-bottom: 32px;
    }

    section.car-related {
        h2 {
            margin-bottom: 32px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 38px;
        }

        .splide__pagination {
            bottom: -24px;
        }
    }

    section.car-advantages h3 {
        font-family: "Bebas Neue", sans-serif;
    }
}

.page-404 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: -16px;
    width: calc(100% + 32px);
    height: calc(100svh - 60px);

    img, video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    h1 {
        margin-bottom: 80px;
        font-family: "Bebas Neue", sans-serif;
        font-size: 200px;
    }

    p {
        font-family: "Bebas Neue", sans-serif;
        font-size: 44px;
        text-transform: uppercase;
    }
}

