@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Unbounded:wght@200..900&display=swap');

:root {
    --orange-color: #F16C00;
    --grey-color: #484848;
    --font-size-base: 18px;
    --spacing: 1rem;
    --base-font: "Inter", sans-serif;
    --hero-font: "Unbounded", sans-serif;
    --color-black: #0C0F18;
    --color-white: #FFFFFF;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--base-font);
    font-size: var(--font-size-base);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--hero-font);
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1720px;
    margin: 0 auto;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-black);
}
.btn:hover{
    text-decoration: none;
}
.btn-small{
    background-color: var(--orange-color);
    border-radius: 50px;
    padding: 8px 18px;
    border: 2px solid var(--orange-color);
}
.btn-small:hover{
    background-color: transparent;
    color: var(--orange-color);
}
.btn-small.btn-transparent{
    background-color: transparent;
    color: var(--orange-color);
}
.btn-small.btn-transparent.selected{
    background-color: #fff;
    opacity: .2;
    color: #000;
    border-color: transparent;
}

.btn-small.btn-transparent:hover{
    background-color: var(--orange-color);
    color: var(--color-black);
}

.btn-primary{
    background: rgb(241,108,0);
    background: linear-gradient(180deg, rgba(241,108,0,1) 0%, rgba(255,150,65,1) 100%);
    color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-family: var(--hero-font);
    padding: 15px 30px 20px 40px;
    position: relative;
    -webkit-box-shadow: 0px 5px 8px 0px rgba(211, 94, 0, 0.5);
    -moz-box-shadow: 0px 5px 8px 0px rgba(211, 94, 0, 0.5);
    box-shadow: 0px 5px 8px 0px rgba(211, 94, 0, 0.5);
}
.btn-primary:hover{}
.btn-primary:before{
    content: "";
    background-color: #FFDA00;
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.btn-primary:after{
    content: "";
    background-color: #f16c00;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 8;
}


.breadcrumbs{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    padding: 0;
    gap: 15px;
}
.breadcrumbs li{
    color: var(--color-white);
    opacity: .5;
}
.breadcrumbs a{
    color: var(--color-white);
}
header {
    background-image: url('/assets/img/bg-index-header.png');
    background-size: 100% auto;
    background-position: center bottom;
    //background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 1509px;
    z-index: 10;
}

header.header.cars-order{
    background-image: url('/assets/img/header-audi.jpg');
}
header.header.customs{
    background-image: url('/assets/img/header-port2.jpg');
}
header.header.logistics{
    background-image: url('/assets/img/header-port3.jpg');
}
header.header.cars-order-china{
    background-image: url('/assets/img/header-li9.jpg');
    background-position: left center;
}
header.header.innerpage{
    background-size: cover;
    min-height: auto;
}

header.header.customs .header__hero__h1{margin-bottom: 50px;}

header.header.innerpage .header__hero__button{padding-bottom: 295px;}
/*header::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background-image: url(/assets/img/under-header-index.png);*/
/*    z-index: -4;*/
/*    bottom: -40px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 290px;*/
/*    background-size: 100% auto;*/
/*    background-position: bottom;*/
/*}*/

    .header__inner{
        display: flex;
        gap: 115px;
        justify-content: space-between;
        padding-bottom: 148px;
    }
        .header__logo{
            padding-top: 86px;
        }
        .header__logo img{max-width: 100%;}

        .header__nav{
            padding-top: 36px;
        }
        .header__nav ul{
            list-style: none;
            margin: 0;
            padding: 0;
        }

        ul.header__nav-list-first{
            display: flex;
            gap: 40px;
            margin-left: 20px;
        }
            ul.header__nav-list-first a{
                text-decoration: none;
                color: #999;
                font-size: 18px;
            }

        ul.header__nav-list-second{
            display: flex;
            gap: 30px;
            padding-top: 30px;
        }
        .header__phone{padding-top: 98px;}
        .header__phone a{
            font-size: 21px;
            font-weight: bold;
            color: #B9B9B9;
            text-decoration: none;
        }
        .header__phone a span{ color: #5E5E5E;}


    .header__hero{
        margin-left: 52px;
        max-width: 65%;
    }
    .header__hero__first{
        color: var(--color-white);
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .header__hero__h1{
        color: var(--color-white);
        font-size: 38px;
        font-weight: bold;
        margin-bottom: 20px;
    }
        .header__hero__h1 a{
            color: var(--orange-color);
        }

    .header__hero__under{
        color: var(--color-white);
        font-size: 24px;
        margin-bottom: 60px;
    }

    ul.header__hero__list{
        padding-bottom: 60px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        color: #999999;
        font-size:21px;
    }
    .header__hero__button{
        display: flex;
        gap:36px;
        align-items: center;
        color: #525252;
        font-size: 18px;
        padding-bottom: 115px;
    }


    .header__menu{
        display: flex;
        gap: 50px;
        justify-content: space-between;
    }

        .header__menu__items{
            display: flex;
            width: 100%;
            height: 330px;
            border: 5px solid #232329;
            border-radius: 20px;
            background-color: #0F1016;
            overflow: hidden;
            position: relative;
            z-index: 1;
            color: var(--color-white);
            font-family: var(--base-font);
            font-size: 24px;
            font-weight: bold;
            background-size: auto;
            background-repeat: no-repeat;
            background-position: right top;
        }
            .header__menu__items:hover{
                border-color: var(--orange-color);
            }
            .header__menu__items:hover a{
                background-color: var(--orange-color);
                border-radius: 50%;
                width: 100px;
                height: 100px;
                display: flex;
                justify-content: center;
                align-items: center;
                bottom: 34px;
                right: 25px;
            }
            .header__menu__items.logistics{
                background-image: url('../assets/img/logistics.png');
                top: 47px;
            }
            .header__menu__items.customers{
                background-image: url('../assets/img/customers.png');
            }
            .header__menu__items.cars-order{
                background-image: url('../assets/img/cars-order.png');
                top: 47px;
            }

                .header__menu__items span{
                    position: absolute;
                    bottom: 50px;
                    left: 50px;
                }
                .header__menu__items a{
                    position: absolute;
                    bottom: 53px;
                    right: 50px;

                }



.four-reasons{
    background-image: url('../assets/img/circle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 1300px;
    top: -170px;
    background-position-y: 60%;
}
.four-reasons .container{
    position: relative;
}
.four-reasons__hero{
    font-size: 42px;
    color: #525252;
    font-weight: bold;
    position: absolute;
    top: 350px;
    left: 50px;
    font-family: var(--hero-font);
}
.four-reasons__hero span{
    font-size: 48px;
    color: var(--orange-color);

}
.four-reasons__block{
    position: absolute;
}
.four-reasons__block__title{
    font-family: var(--hero-font);
    font-weight: bold;
    color: var(--orange-color);
    font-size: 26px;
    margin-top: 140px;
}
.four-reasons__block1{
    position: absolute;
    top: 50px;
    left: 590px;
    display: flex;
    gap: 70px;
}
.four-reasons__block1 p{
    max-width: 660px;
}
.four-reasons__block1 img{
    rotate: 4.87deg;
}

.four-reasons__block2{
    position: absolute;
    top: 490px;
    left: 658px;
    display: flex;
    gap: 193px;
}
    .four-reasons__block2 .four-reasons__block__title {
        margin-top: 30px;
    }
    .four-reasons__block2 img{
        rotate: -10.87deg;
    }

    .four-reasons__block2 p{max-width: 592px}


.four-reasons__block3{
    position: absolute;
    left: 0;
    top: 709px;
    max-width: 692px;
}
.four-reasons__block3 img{
    margin-left: 115px;
    margin-top: 90px;
    rotate: -11deg;
}

.four-reasons__block4{
    position: absolute;
    top: 803px;
    right: 58px;
    max-width: 692px;
}


.how-it-works{
    padding-bottom: 200px;
}
.how-it-works__step{
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    min-height: 300px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.how-it-works__step h4{
    font-size: 26px;
    color: #494949;
}
.how-it-works__step span{
    position: absolute;
    top:54px;
    right: 50px;
    color: rgba(0,0,0, 0.07);
    font-size: 21px;
}

.how-it-works__step p {
    position: absolute;
    bottom: 50px;
    color: #5E5E5E;
    width: calc(100% - 100px);
    margin: 0;
}

.how-it-works-container{
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
}
.how-it-works-container > * {
    max-width: 100%;
}

.how-it-works__title{
    font-size: 42px;
    margin-top: 0;
}
 .how-it-works__title span{ color: var(--orange-color);}

 .how-it-works__hero p{
     font-size: 21px;
     color: #999999;
     margin: 0;
 }
 .how-it-works__hero{
     padding: 78px 55px 0 100px;
 }

 .how-it-works__step1{
     position: relative;
     color: var(--color-white);
     z-index: 10;
 }
.how-it-works__step1:before{
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 84px);
    border-radius: 20px;
    bottom: 0;
    left: 0;
    background: rgb(241,108,0);
    background: linear-gradient(180deg, rgba(241,108,0,1) 0%, rgba(255,150,65,1) 100%);
    z-index: -1;
}
.how-it-works__step1 h4{
    position: absolute;
    top: -84px;
    margin-top: 55px;
    color: var(--color-white);
}

.how-it-works__step1 span{
    position: absolute;
    top: -29px;
    right: 50px;
    color: var(--color-white);
}

.how-it-works__step1 a{
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.how-it-works__step1 p{
    color: var(--color-white);
}

.form-for-consultation{
    padding-bottom: 200px;
}
.form-for-consultation__block{
    position: relative;
    background: #484848;
    background: linear-gradient(53deg, rgba(72, 72, 72, 1) 0%, rgba(72, 72, 72, 0.8) 80%, rgba(117, 117, 117, 1) 100%);
    border-radius: 20px;
    padding: 152px 218px 111px 99px;
    //overflow: hidden;
    //height: 430px;
}
.form-for-consultation__block:after{
    content: "";
    position: absolute;
    bottom: -26px;
    width: calc(100% - 70px);
    left:35px;
    height: 26px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #D9D9D9;
}
.form-for-consultation__block:before{
    content: "";
    position: absolute;
    bottom: -52px;
    width: calc(100% - 83px - 83px);
    left:83px;
    height: 26px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #EDEDED;
}

.form-for-consultation__block .form-for-consultation__circle{
    position: absolute;
    pointer-events: none;
    height: 100%;
    overflow: hidden;
    width: 490px;
    top: 0;
    left: 0;
    opacity: 0.4;
}
.form-for-consultation__block .form-for-consultation__circle img{
    position: absolute;
    pointer-events: none;
    top: -60px;
    left: -120px;
}
.form-for-consultation__block__flex{
    display: flex;
    gap: 147px;
    justify-content: space-between;
    align-items: start;
}
.form-for-consultation__block__hero p{
    font-size: 21px;
    color: #757575;
    margin: 0;

}
.form-for-consultation__block__hero h2{
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    line-height: 52px;
    margin-bottom: 35px;
    margin-top: 0;
}

.form-for-consultation__block__form__step1{
    display: flex;
    gap: 20px;
}

.form-for-consultation input{
    background: #fff;
    padding: 10px 20px;
    font-size: 21px;
    color: #5E5E5E;
    border-radius: 10px;
    min-width: 100%;
    border: none;
    height: 59px;
    display: block;
}
.form-for-consultation label{
    color: #868686;
    font-size: 18px;
    line-height: 31px;
    margin-bottom: 7px;
    padding-left: 20px;
}
.form-for-consultation .form-input{margin-bottom: 20px;}

.form-for-consultation__block__form__step2{
    display: flex;
    gap: 27px;
    justify-content: space-between;
}

.btn-form{
    background: #F16C00;
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    color: #fff;
    font-size: 21px;
    padding: 17px 38px;
    border-radius: 10px;
    height: 59px;
}
.form-input .btn-form{margin-top: 31px;}
.form-subtitle{
    text-align: right;
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
    color: #828282;
}


.reviews{
    padding-bottom: 193px;
    position: relative;
}

.reviews__block{
    display: flex;
    justify-content: space-between;
    gap: 150px;
}
.reviews__hero{
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 122px 0 0 100px;
}
.reviews__hero h2{
    font-size: 42px;
    font-weight: bold;
    line-height: 54px;
    margin: 0;
}
.reviews__hero h2 span{
    color: var(--orange-color);
}
.reviews__hero p{
    font-size: 21px;
    color: #999999;
}
.reviews__hero a{
    color: var(--orange-color);
}

.reviews__block__items{
    display: flex;
    gap: 50px;
    align-items: start;
}

.reviews__block__image{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}
.reviews__block__image a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reviews__block__image a:hover svg path{stroke: var(--orange-color) !important;}
.reviews__block__title{
    font-family: var(--hero-font);
    padding: 0 15px;
    margin-bottom: 10px;
}

.reviews__block__text{
    padding: 0 15px;
}

.other_services{
    background-color: #484848;
    color: #484848;
    position: relative;
    padding: 348px 0;
}
.other_services::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    border-radius: 100px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    top: 0;
    left: 0;
}

.other_services::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    border-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
    bottom: 0;
    left: 0;
}
.other_services__block{
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 200px;
}
.other_services__item{
    width: 100%;
    height: 338px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    padding: 50px;
}
.other_services__item p{
    position: absolute;
    left: 50px;
    bottom: 50px;
    color: #5E5E5E;
    margin: 0;
}
.other_services__item h2{
    width: 50%;
    font-size: 26px;
    margin: 0;
}

.other_services__item.other_services__hero{
    background: transparent;
    color: #fff;
}
.other_services__item.other_services__hero h2{width: 100%; font-size: 42px; margin: 0; margin-bottom: 22px;}
.other_services__item.other_services__hero p{position: relative; top: 0; left: 0; width: 100%; color: #999999;}
.other_services__item:not(.other_services__hero):hover{
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    color: #fff !important;
}
.other_services__item:not(.other_services__hero):hover p{color: #fff;}

.contact_map__map{
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.contact_map_block{
    display: flex;
    gap: 85px;
}

.contact_map__hero{
    color: #fff;
    max-width: 30%;
}

.contact_map__hero h2{
    font-size: 42px;
    margin: 0;
    margin-bottom: 50px;
    padding-top: 42px;
}

.contact_map__address_title{
    line-height: 35px;
    margin-bottom: 5px;
}
.contact_map__address_address{
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 35px;
}
.contact_map__address_address a{
    color: #fff;
    text-decoration: none;
}

.footer__block{
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 200px;
    row-gap: 62px;
    padding-bottom: 200px;
}

.footer__copyright{
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
    color: #7C7C7C;
}
.footer__copyright a{
    font-size: 30px;
    font-weight: bold;
    color: #7C7C7C;
}
.footer__copyright a:last-child{
    font-size: 21px;
}
.footer__menu__1 strong{ color: #5D5D5D;}
.footer__menu__1{
    margin-bottom: 10px;
}
.footer__menu__1 a{
    margin-left: 20px;
    color: var(--orange-color);
    text-decoration: none;
}
.footer__menu__2{
    margin-bottom: 48px;
}
.footer__menu__2 a{
    margin-left: 20px;
    color: var(--orange-color);
    text-decoration: none;
}
.footer__menu__2 a:first-child{
    margin-left: 0;
}

.footer__menu__3{
    color: #A9A9A9;
}

.footer__social{
    display: flex;
    gap: 30px;
    justify-content: end;
}

.footer__social a{
    text-decoration: none;
}

.footer_inn_podloshka{
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 20px 30px;
    max-width: 100%;
    width: 453px;
    font-size: 16px;
    color: #767676;
}

.footer_inn_podloshka div{
    display: flex;
    justify-content: space-around;
}

.footer_inn_podloshka a{
    font-size: 12px;
    color: #767676;
}

.footer_inn{
    display: flex;
    align-items: center;
    gap: 45px;
    color: #767676;
}


.cars-order-block1{
    position: relative;
    background: #fff;
    padding: 100px 0;
}
.cars-order-block1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 91px;
    border-radius: 100px;
    top: -91px;
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
    z-index: 10;
}

.cars-order-block1::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 91px;
    border-radius: 100px;
    bottom: -91px;
    left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
}



.cars-order-block1__container1 a, .cars-order-block1__container2 a, .cars-order-block1__container3 a{
    height: 488px;
    background: #fff;
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, .02) 100%);
    position: relative;
    display: block;
    border-radius: 20px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.05);
    color: #494949;
    background-repeat: no-repeat;
    background-position: right bottom;

}
.cars-order-block1__container1 a p, .cars-order-block1__container2 a p, .cars-order-block1__container3 a p{
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 100%;
    width: 400px;
    color: #5E5E5E;
    margin: 0;
}

.cars-order-block1__container1 a h4, .cars-order-block1__container2 a h4, .cars-order-block1__container3 a h4{
    position: absolute;
    bottom: 110px;
    left: 50px;
    max-width: 100%;
    width: 400px;
    color: #494949;
    font-weight: bold;
    margin: 0;
    font-size: 26px;
}
.cars-order-block1__container1 a div, .cars-order-block1__container2 a div, .cars-order-block1__container3 a div {
    position: absolute;
    bottom: 141px;
    left: 50px;
    max-width: 100%;
    width: 400px;
    color: #BBBBBB;

}

.cars-order-block1__container1, .cars-order-block1__container2, .cars-order-block1__container3{
    display: flex;
    gap: 50px;
    padding-bottom: 50px;
}
.cars-order-block1__container1 a:first-child{
    width: 66%;
    background-image: url("/assets/img/car-japan.png");
}
.cars-order-block1__container1 a:last-child{
    width: 33%;
    background-image: url("/assets/img/car-korea.png");
}

.cars-order-block1__container2 a:first-child{
    width: 33%;
    background-image: url("/assets/img/car-china.png");
}
.cars-order-block1__container2 a:last-child{
    width: 66%;
    background-image: url("/assets/img/car-usa.png");
}

.cars-order-block1__container3 a:first-child{
    width: 66%;
    background-image: url("/assets/img/car-oae.png");
 }

.cars-order-block1__container3 a.cars-order-block__item__in-stock{
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    width: 33%;
}
.cars-order-block1__container3 a.cars-order-block__item__in-stock div{
    bottom: 180px;
    color: #fff;
}
.cars-order-block1__container3 a.cars-order-block__item__in-stock * {color: #fff !important}

.cars-order-block1__container3 a.cars-order-block__item__in-stock img{
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.customs-how-it-works-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* три колонки */
    grid-template-rows: auto auto; /* две строки */
    gap: 50px;
}
.customs-how-it-works-container .how-it-works__step2{
    grid-column: 3 / 4; /* занимает третью колонку */
    grid-row: 1 / 3; /* занимает первую и вторую строки */
}
.customs-how-it-works-container .how-it-works__step3{
    grid-column: 1 / 3; /* занимает первую и вторую колонки */
    grid-row: 2 / 3; /* занимает вторую строку */
}
.how-it-works__step1.how-it-works__step1__no-orange:before{
    display: none;
}
.how-it-works__step1.how-it-works__step1__no-orange{
    color: #494949;;
}

.how-it-works__step1.how-it-works__step1__no-orange h4{
    color: #494949;
    position: relative;
    top: 0;
}
.how-it-works__step1.how-it-works__step1__no-orange p{
    color: #494949;
}
.how-it-works-container-2-columns{
    grid-template-columns: repeat(2, 1fr);;
}
.how-it-works__step.how-it-works__step3--orange{
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    color: #fff !important;
}

.how-it-works__step.how-it-works__step3--orange div{
    font-family: var(--hero-font);
}
.how-it-works__step.how-it-works__step3--orange a{
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.how-it-works__step.how-it-works__step3--orange p{
    color: #fff !important;
    margin: 0;
}
.how-it-works__step.how-it-works__step3--orange h4{
    color: #fff !important;
    margin-bottom: 10px;

}

.customs-document h2{
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 35px;
}
.customs-document h2 span {
    color: var(--orange-color);
}
.customs-document p{
    color: #999;
}

.how-it-works__step h4{
    margin-top: 0;
}
.how-it-works__step1 h4{
    margin-top: 54px;
}

.how-it-works__step.how-it-works__step1.how-it-works__step1__no-orange h4{
    margin-top: 0;
}

.customs-document__block__item{width: 100%}
.customs-document__block__item p{ color: #fff}
.customs-document__block__item h4{
    font-size: 26px;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: bold;
    color: #fff;
}
.customs-document__block {
    display: flex;
    gap: 86px;
    margin-top: 60px;
    max-width: 100%;
    width: 1500px;
}

.accordion {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    padding-bottom: 30px;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: start;
    background: none;
    border: none;
    width: 100%;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    outline: none;
    gap: 30px;
}

.accordion-title {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.arrow svg {
    transition: transform 0.3s ease, fill 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.5;
}

/* Стили для открытого состояния */
.accordion-button[aria-expanded="true"] .arrow svg {
    transform: rotate(180deg);
    fill: #D4D4D4;
}

.accordion-button[aria-expanded="true"] + .accordion-content {
    max-height: 100px; /* Высота контента может быть изменена в зависимости от содержимого */
}

.questions{
    padding: 0 0 100px 0;
}

.questions-container{
    display: flex;
    gap: 100px;
}

.questions__hero h2{
    font-size: 42px;
}
.questions__hero h2 span{
    color: var(--orange-color);
}


.customs_about p.first{
    width: 863px;
    max-width: 100%;
}
.customs_about p.second{
    width: 583px;
    max-width: 100%;
}
.customs_about p{
    font-size: 21px;
    display: block;
}
.customs_about h2{
    font-size: 48px;
    line-height: 64px;
    font-weight: bold;
}
.customs_about a {color: var(--orange-color);}
.customs_about{
    color: #fff;
    padding-bottom: 200px;
    background-image: url("/assets/img/custom-about-bg.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 55%;
}
.customs_about ul.header__hero__list{
    max-width: 100%;
    width: 580px;
}

.cars-order-block__item.no-bg{background-image: none !important; text-decoration: none !important; height: 338px !important;}
.cars-order-block__item.no-bg h4{
    top: 50px;
}
.cars-order-block__item.no-bg ul{
    bottom: 50px;
    position: absolute;
    left: 50px;
}

.cars-order-block__item.logistics-order{
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    height: 338px !important;
    width: 33%;
}
.cars-order-block__item.logistics-order p{
    color: #fff;
}
.cars-order-block__item.logistics-order h4{
    top: 50px;
    color: #fff;
}
.cars-order-block__item.logistics-order img{
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.logistics_other_services:before{
    display: none !important;
}
.logistics_other_services{
    padding-bottom: 20px;
}

.logistics_geografy__items{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.logistics_geografy__item{
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 50px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    min-height: 235px;
    width: 100%;
}
.logistics_geografy__item p{
    color: #5E5E5E;
    position: absolute;
    bottom: 50px;
    left: 50px;
    margin: 0;
}
.logistics_geografy__item h4{
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

.logistics_geografy__hero {
    padding-left: 100px;
    margin-bottom: 60px;
}
.logistics_geografy__hero p{
    color: #999999;
    font-size: 21px;
    margin: 0;
}
.logistics_geografy__hero h2 span{color: var(--orange-color)}
.logistics_geografy__hero h2{
    font-size: 42px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 35px;
}

.logistics_geografy{
    position: relative;
    z-index: 10;
    margin-top: -540px;
    padding-bottom: 200px;
}

header.header.innerpage.about .header__hero__h1{
    color: #494949;
}
header.header.innerpage.about .breadcrumbs li, header.header.innerpage.about .breadcrumbs a{
    color: #000;
}
header.header.innerpage.about{
    background: #fff;
    background-image: none;
}

.about-header-underh1{
    margin: 0;
    padding-bottom: 30px;
}

.command__hero h2 span{color: var(--orange-color);}
.command__hero p{font-size: 21px; color: #999999; margin: 0}
.command__hero h2{
    font-size: 42px;
    margin: 0;
    margin-bottom: 30px;
}
.command__hero{
    padding-left: 100px;
    margin-bottom: 60px;
}

.command__list p{padding-left: 24px;margin: 0}
.command__list h4{
    color: #fff;
    font-size: 18px;
    padding-left: 24px;
}
.command__list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.command__item__img{
    overflow: hidden;
    border-radius: 20px;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 300px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.modal-form h2 {
    margin-bottom: 20px;
    font-size: 18px;
}

.modal-form label {
    display: block;
    margin-bottom: 5px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-form button[type="submit"] {
    background: rgb(241, 108, 0);
    background: linear-gradient(180deg, rgba(241, 108, 0, 1) 0%, rgba(255, 150, 65, 1) 100%);
    color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-family: var(--hero-font);
    padding: 15px 30px 20px 40px;
    position: relative;
    -webkit-box-shadow: 0px 5px 8px 0px rgba(211, 94, 0, 0.5);
    -moz-box-shadow: 0px 5px 8px 0px rgba(211, 94, 0, 0.5);
    box-shadow:0px 5px 8px 0px rgba(211, 94, 0, 0.5);
    width: 100%;
}

.modal-form button[type="submit"]:hover {
    opacity: .8;
}

.table_cars{
    padding-bottom: 300px;
}

.table_cars__card{
    width: 100%;
    display: flex;
    gap: 42px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.table_cars__card__img{
    max-width: 236px;
}

.table_cars__card__img img{
    width: 100%;
    margin-bottom: -5px;
}

.table_cars__card__content__prop{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: left;
    align-items: start;
}
.table_cars__card__content__prop__title{
    font-size: 14px;
    color: #BBBBBB;
    margin-bottom: 5px;
    line-height: 21px;
}
.table_cars__card__content__prop__value{
    font-size: 18px;
    color: #5E5E5E;
    margin-bottom: 0px;
    line-height: 31px;

}
.table_cars__card__content{width: 100%;}
.table_cars__card__price{
    padding-right: 55px;
    min-width: 290px;
    text-align: right;
}

.table_cars__card__price .btn.btn-primary{
    font-size: 16px;
    padding: 14px 30px 18px 40px;
}
.table_cars__hero h2{ margin: 0; padding-bottom: 55px; font-weight: bold; font-size: 42px;}



.form-input-radio{
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 30px;
}

    .form-input-radio label{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 5px;
        color: #fff;
    }

.form-input-radio label input{
    width: 22px;
    height: 22px;
    color: var(--orange-color);
    accent-color: var(--orange-color);
}


.form-input-radio2{
    display: flex;
    justify-content: start;
    align-items: end;
    flex-wrap: wrap;
}
.form-input-radio2 label{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    color: #fff;
    flex-wrap: nowrap;

}

.form-input-radio2 label input{
    width: 22px;
    min-width: 22px;
    height: 22px;
    color: var(--orange-color);
    accent-color: var(--orange-color);
}

.table_cars{position: relative;}
.table_cars::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 91px;
    border-radius: 100px;
    top: -91px;
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
    z-index: 10;
}