.top{
    background: #1C2129;
    color: white;
    padding: 0 0 40px 0;
    --top-gap: 95px;
}
.top_content{
    width: 100%;
    background: url("/img/BMW.png") center var(--top-gap) / min(100%, 1320px) no-repeat;
    position: relative;
    .container-fluid{
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 100%;
        justify-items: center;
    }
    &:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(28, 33, 41, 0) 35.1%, #1C2129 70.19%);
        z-index: 1;
    }
}
.top_title{
    margin: 0 auto;
    font-size: clamp(16px, calc(5px + 3vw), 44px);
    color: white;
    text-align: center;
    font-weight: 400;
    max-width: 720px;
    line-height: 1.1em;
}
.top_address{
    margin: 32px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
    font-weight: 350;
}
.top-location-description-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 34px;
    row-gap: 0;
    font-weight: 350;
}
.top_delivery{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
    font-weight: 350;
}
.top_lost{
    margin: 230px 0 0 0;
    background: #42242E;
    font-size: 20px;
    padding: 16px;
    border-radius: 8px;
    max-width: 650px;
    text-align: center;
    font-weight: 350;
}
.top-faq{
    margin: 40px 0 0 0;
    width: 100%;
}
.top-faq_title{
    font-size: 24px;
    text-align: center;
    font-weight: 350;
}
.top-faq-list{
    margin: 16px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.top-faq-item{
    background: var(--black);
    padding: 16px 12px;
    border-radius: 7px;
}
.top-faq-item_question{
    color: #8B8C8E;
    font-weight: 350;
}
.top-faq-item_answer{
    margin: 12px 0 0 0;
    font-size: 20px;
    text-transform: uppercase;
}
.top-cta-btn{
    margin: 64px 0 0 0;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: clamp(12px, calc(8px + 1vw), 21px);
    padding: 22px;
    background: transparent;
    border-radius: 6px;
}
.top-order{
    margin: 100px 0 0 0;
    width: 100%;
    display: none;
}
.top-order.active{
    display: block;
}
.top-order_title{
    text-align: center;
}
.top-order_explanation{
    margin: 40px 0 0 0;
    display: flex;
    column-gap: 40px;
    row-gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 350;
}
.top-order-form{
    margin: 55px 0 0 0;
}
.top-order-form-input-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 40px;
    align-items: flex-start;
    counter-set: step-index;
}
.top-order-form-step{
    counter-increment: step-index;
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    &:before{
        content: counter(step-index, decimal-leading-zero);
        margin: 0 0 24px 0;
        font-size: 24px;
        color: var(--orange);
    }
}
.top-order-form-step_title{
    margin: 0 0 20px 0;
    text-align: center;
}
.top-order-form-step_content{
    width: 100%;
    max-width: 350px;
    display: grid;
    grid-template-columns: 100%;
    gap: 7px;
}
.top-order-form_variant-list{
    width: 100%;
    max-width: 310px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}
.top-order-form-input{
    background: white;
    border-radius: 8px;
    line-height: 1em;
    padding: 6px 15px 20px 6px;
    border: none;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}
.top-order-form-variant{
    margin: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 17px;
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    background: var(--black);
}
.top-order-form-variant:has(input:checked){
    border: 2px solid var(--orange);
}
.top-order-form-variant_title{
    color: white;
}
.top-order-form-variant_value{
    color: #878787;
}
.top-order-form-variant_input{
    display: none;
}
.top-order-form_send{
    margin: 40px auto 0 auto;
    font-size: 18px;
    padding: 13px 16px;
    border-radius: 8px;
    width: fit-content;
    justify-self: center;
    font-weight: 350;
    display: flex;
}
.cta_txt{
    margin: 24px 0 0 0;
    font-weight: 350;
}
.cta-location-description-list{
    margin: 16px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-location-description{
    background: #F6F7F9;
    border: 1px solid #E8E8E8;
    padding: .5em 1em;
    font-size: 14px;
    font-weight: 350;
    border-radius: 4px;
}
.cta_btn{
    margin: 24px 0 0 0;
    background: var(--orange);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 350;
    padding: 10px 12px;
    border: none;
}
.location .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 24px;
}
.location_title{
    grid-area: auto / span 2;
    font-weight: 350;
    text-align: center;
    font-size: 28px;
}
.location-address{
    background: #F6F7F9;
    padding: 30px;
    border-radius: 10px;
    font-weight: 350;
}
.location-address_explanation{
    color: var(--orange);
    font-size: 18px;
}
.location-address_title{
    margin: 12px 0 0 0;
    font-size: 32px;
}
.location-address_txt{
    margin: 40px 0 0 0;
}
.location-description-list{
    margin: 32px 0 0 0;
    display: grid;
    grid-template-columns: 100%;
    gap: 16px;
}
.location_map{
    width: 100%;
    height: 370px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.reasons_title{
    text-align: center;
}
.reasons_txt{
    margin: 32px auto 0 auto;
    text-align: center;
    max-width: 800px;
    font-weight: 350;
}
.reasons-nota-bene{
    margin: 16px 0 0 0;
    border: 1px solid #E8E8E8;
    background: #F6F7F9;
    padding: 20px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 350;
    & :where(img, svg){
        width: 30px;
        height: auto;
        object-fit: contain;
        justify-self: center;
        align-self: center;
    }
}
.reasons-list{
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.reason-item{
    border: 1px solid #E8E8E8;
    padding: 16px 12px;
    border-radius: 7px;
}
.reason-item_title{
    font-size: 20px;
    text-transform: uppercase;
}
.reason-item_txt{
    margin: 32px 0 0 0;
    font-weight: 350;
    font-size: 18px;
}
.reasons-cta-btn{
    margin: 24px auto 0 auto;
    font-size: 18px;
    padding: 13px 16px;
    display: flex;
    border-radius: 8px;
    font-weight: 350;
}
.advance-order{
    background: var(--dark-blue);
    color: white;
}
.advance-order_title{
    text-align: center;
}
.advance-order_txt{
    margin: 32px 0 0 0;
    font-weight: 350;
    text-align: center;
    font-size: 16px;
}
.advance-order-list{
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.advance-order-item{
    background: var(--black);
    padding: 30px;
    border-radius: 7px;
    font-weight: 350;
}
.advance-order-item_title{
    color: var(--orange);
    font-size: 18px;
}
.advance-order-item_txt{
    margin: 16px 0 0 0;
    ol{
        padding: 0 0 0 1em;
    }
    ul {
        display: grid;
        grid-template-columns: 100%;
        gap: 16px;
        padding: 0;
        li {
            display: grid;
            grid-template-columns: 8px 1fr;
            align-items: flex-start;
            gap: .5em;
            --line-height: 1.5em;
            line-height: var(--line-height);

            &:before {
                content: '';
                width: 100%;
                aspect-ratio: 1/1;
                border-radius: 50%;
                background: var(--orange);
                transform: translate(0, calc((var(--line-height) / 2) - 50%));
            }
        }
    }
}
.order{
    background: var(--dark-blue);
    color: white;
}
.order-step-list{
    margin: 100px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 20px;
    counter-set: step-index;
}
.order-step{
    background: var(--black);
    padding: 16px 12px;
    counter-increment: step-index;
    --color: var(--orange);
    border-radius: 7px;
}
.order-step-head{
    display: grid;
    grid-template-columns: auto 1fr 24px;
    align-items: center;
    &:before{
        content: counter(step-index, decimal-leading-zero);
        margin: 0 40px 0 0;
        color: var(--color);
        font-size: 32px;
    }
    & :where(img, svg){
        height: 14px;
        width: auto;
        object-fit: contain;
        justify-self: center;
        align-self: center;
    }
}
.order-step:last-child {
    --color: #42BE38;
    .order-step-head  :where(img, svg){
        height: 20px;
    }
}
.order-step_title{
    margin: 55px 0 0 0;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.6em;
}
.order-step_txt{
    margin: 12px 0 0 0;
    color: #8B8C8E;
    line-height: 1.5em;
    font-size: 16px;
    font-weight: 350;
}
.order-step-separator{
    margin: 0 12px 0 0;
    flex-grow: 1;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--color), var(--color) 4px, transparent 4px, transparent 8px);
}
.order-cta-btn{
    margin: 80px auto 0 auto;
    display: flex;
    font-size: 18px;
    padding: 13px 16px;
    border-radius: 8px;
    font-weight: 350;
}
.documents{
    color: white;
    background: var(--dark-blue);
}
.documents_title{
    text-align: center;
}
.documents_txt{
    margin: 32px 0 0 0;
    font-size: 18px;
    text-align: center;
    font-weight: 350;
}
.documents-list{
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.document-item{
    background: var(--black);
    padding: 30px;
    border-radius: 7px;
    font-weight: 350;
}
.document-item_title{
    color: var(--orange);
    text-transform: uppercase;
    font-size: 18px;
}
.document-item_txt{
    margin: 16px 0 0 0;
    line-height: 1.5em;
    ol{
        padding: 0 0 0 1em;
    }
    ul {
        display: grid;
        grid-template-columns: 100%;
        gap: 16px;
        padding: 0;
        li {
            display: grid;
            grid-template-columns: 8px 1fr;
            align-items: flex-start;
            gap: .5em;
            --line-height: 1.5em;
            line-height: var(--line-height);

            &:before {
                content: '';
                width: 100%;
                aspect-ratio: 1/1;
                border-radius: 50%;
                background: var(--orange);
                transform: translate(0, calc((var(--line-height) / 2) - 50%));
            }
        }
    }
}
.advantages_txt{
    margin: 32px 0 0 0;
    font-size: 18px;
    text-align: center;
    font-weight: 350;
}
.advantages-list{
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.advantage-card{
    border: 1px solid #E8E8E8;
    padding: 24px 16px;
    border-radius: 7px;
}
.advantage-card_marker{
    color: var(--orange);
    font-size: 18px;
    font-weight: 350;
}
.advantage-card_title{
    margin: 16px 0 0 0;
    font-size: 20px;
    text-transform: uppercase;
}
.advantage-card_txt{
    margin: 32px 0 0 0;
    font-weight: 350;
}
.quick-faq_txt{
    margin: 32px auto 0 auto;
    text-align: center;
    max-width: 800px;
    font-weight: 350;
}
.quick-faq-list{
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.quick-faq-item{
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    background: #F6F7F9;
}
.quick-faq-item_question{
    font-size: 20px;
    text-transform: uppercase;
}
.quick-faq-item_answer{
    margin: 32px 0 0 0;
    font-weight: 350;
}
.often-faq{
    background: var(--dark-blue);
    color: white;
}
.often-faq_txt{
    margin: 32px 0 0 0;
    text-align: center;
    font-size: 18px;
}
.often-faq-list{
    margin: 40px auto 0 auto;
    max-width: 790px;
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
}
.often-faq-item_question{
    padding: 24px 30px;
    border-radius: 7px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 32px;
    align-items: center;
    font-size: 18px;
    color: var(--orange);
    gap: 16px;
    &:after{
        content: '';
        width: 11px;
        aspect-ratio: 1/1;
        flex-shrink: 0;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translate(0, -17%) rotate(45deg);
        justify-self: center;
        align-self: center;
    }
}
.often-faq-item_answer{
    padding: 20px 30px;
    border-radius: 7px;
    font-weight: 350;
    background: #32373F;
}
[open] .often-faq-item_question{
    color: white;
    &:after{
        transform: translate(0, -17%) rotate(-135deg);
    }
}
.cta-order{
    background: var(--black);
    color: white;
    .container{
        display: grid;
        grid-template-columns: 1fr 315px;
        align-items: flex-start;
        gap: 20px;
    }
}
.cta-order_title{
    text-align: left;
}
.cta-order_txt{
    margin: 1em 0 0 0;
    font-size: 18px;
    font-weight: 350;
    line-height: 2.1em;
}
.cta-order_phone{
    margin: 14px 0 0 0;
    display: flex;
    font-weight: 350;
    font-size: 18px;
}
.cta-order_btn{
    margin: 60px 0 0 0;
    width: 100%;
    font-size: 18px;
    font-weight: 350;
    padding: 13px;
    border-radius: 8px;
}
.districts_txt{
    margin: 32px auto 0 auto;
    max-width: 800px;
    text-align: center;
    font-weight: 350;
}
.districts-list{
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.district-card{
    padding: 24px 16px 16px 16px;
    background: #F6F7F9;
    border: 1px solid #E8E8E8;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1fr 32px;
    color: var(--black);
    align-items: flex-start;
    & :where(img, svg){
        width: 17px;
        height: auto;
        object-fit: contain;
    }
}
.district-card:hover{
    border-color: var(--orange);
    color: var(--black);
    path{
        fill: var(--orange);
    }
}
.district-card_icon-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.district-card_title{
    color: var(--orange);
    text-transform: uppercase;
    font-size: 20px;
}
.district-card_txt{
    grid-area: auto / span 2;
    margin: 32px 0 0 0;
    font-weight: 350;
    line-height: 1.5em;
}
@media(max-width: 1024px){
    .top_lost{
        margin: 100px 0 0 0;
        font-size: 18px;
    }
    .top-faq-item_answer{
        font-size: 18px;
    }
    .top-order-form-input-list{
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .top-order-form_send{
        font-size: 16px;
    }
    .cta_txt{
        margin: 12px 0 0 0;
    }
    .cta_btn{
        margin: 12px 0 0 0;
        font-size: 12px;
    }
    .location .container{
        grid-template-columns: 100%;
        row-gap: 0;
    }
    .location_title{
        grid-area: auto;
        margin: 0 0 24px 0;
        font-size: 26px;
    }
    .location-address{
        padding: 12px;
        border-radius: 4px;
    }
    .location-address_explanation{
        font-size: 15px;
    }
    .location-address_title{
        font-size: 30px;
    }
    .location-address_txt{
        margin: 16px 0 0 0;
    }
    .location_map{
        margin: 20px 0 0 0;
        height: 305px;
    }
    .reason-item_txt{
        font-size: 16px;
    }
    .reasons-nota-bene{
        font-size: 18px;
    }
    .reason-item_title{
        font-size: 18px;
    }
    .reasons-list{
        grid-template-columns: 100%;
    }
    .reasons-cta-btn{
        font-size: 16px;
    }
    .advance-order-list{
        grid-template-columns: 100%;
    }
    .advance-order-item{
        padding: 12px;
    }
    .advance-order-item_title{
        font-size: 14px;
    }
    .order-step-list{
        gap: 10px;
        display: flex;
        overflow: auto;
    }
    .order-step{
        width: 255px;
        flex-shrink: 0;
    }
    .order-step_title{
        font-size: 18px;
    }
    .order{
        padding: 60px 0;
    }
    .order-cta-btn{
        font-size: 16px;
    }
    .order-step-head {
        &:before {
            font-size: 24px;
        }
    }
    .documents-list{
        grid-template-columns: 100%;
    }
    .document-item_title{
        font-size: 14px;
    }
    .advantages-list{
        margin: 24px 0 0 0;
        grid-template-columns: 100%;
    }
    .advantage-card{
        padding: 12px;
    }
    .advantage-card_marker{
        font-size: 14px;
    }
    .advantage-card_title{
        margin: 12px 0 0 0;
        font-size: 18px;
    }
    .advantage-card_txt{
        margin: 12px 0 0 0;
    }
    .quick-faq-list{
        grid-template-columns: 100%;
    }
    .quick-faq-item_question{
        font-size: 18px;
    }
    .quick-faq-item_answer{
        margin: 16px 0 0 0;
    }
    .often-faq-item_question{
        font-size: 16px;
        grid-template-columns: 1fr 24px;
        padding: 12px 16px;
    }
    .often-faq-item_answer{
        padding: 12px 16px;
    }
    .cta-order{
        .container{
            grid-template-columns: 100%;
        }
    }
    .cta-order_txt{
        font-size: 16px;
        line-height: 1.5em;
    }
    .cta-order_phone{
        font-size: 16px;
    }
    .cta-order_btn{
        width: fit-content;
        font-size: 16px;
        padding: 1em;
    }
    .districts-list{
        grid-template-columns: 100%;
    }
    .district-card_title{
        font-size: 18px;
    }
}