.car_pending {
    background: grey !important;
}

.page_content {
    padding-top: 30px;
    padding-bottom: 100px;
    background: #f8f8f8;
}

.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

/*slider_wrapper - CLS Prevention */
.slider_wrapper {
    position: relative;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    cursor: grab;
}

/* Force Slick's padding to 0 — this is the main CLS culprit */
.slider_wrapper .slick-list {
    padding: 0 !important;
}

.slider_wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* center_image above slider - reserve space to prevent CLS */
.center_image {
    margin-bottom: 20px;
    text-align: center;
    min-height: 52px;
    /* Reserve space for the image */
}

.center_image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 340 / 52;
}

.slider_wrapper .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotateY(180deg);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: none;
    border: 0;
    outline: none;
    overflow: hidden;
    cursor: pointer;
    transition: .4s;
    z-index: 3;
}

.slider_wrapper .slick-arrow:hover {
    background: rgba(148, 148, 148, 0.1);
}

.slider_wrapper .prev_arr {
    left: 0;
}

.slider_wrapper .next_arr {
    right: 0;
    transform: translateY(-50%);
}

.slider_wrapper .slick-arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 6px);
    transform: translate(-50%, -50%) rotateZ(-45deg);
    width: 25px;
    height: 25px;
    border-right: 2px solid var(--text_color);
    border-bottom: 2px solid var(--text_color);
    transition: .4s;
}

.slider_wrapper .slick-arrow:hover:before {
    border-color: var(--main_color)
}

/*end slider_wrapper*/
/*slider_count*/
.slider_count {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 35px;
}

/*end slider_count*/
/*info*/
.info {
    padding: 15px 50px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--title_color);
}

.info .name span {
    font-size: 20px;
}

.info .name h1 {
    font-size: calc(32px + (50 - 32) * (100vw / 1920));
    line-height: 1.1;
    margin: 10px 0;
}

.info .name h1+span {
    font-size: 18px;
    color: var(--main_color);
}

.info .start_driving {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.info .start_driving strong {
    font-size: 18px;
    font-family: var(--title_font);
}

.info .start_driving span {
    font-size: 17px;
}

.info .start_driving a {
    display: inline-block;
    font-size: 18px;
    width: 260px;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
    background: var(--main_color);
    transition: .4s;
}

.info .start_driving a:hover {
    background: var(--hover_color);
}

.info .price {
    min-width: 600px;
}

.info .price_box {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 20px;
}

.info .price_box h3 {
    font-size: calc(32px + (50 - 32) * (100vw / 1920));
    line-height: 1.1;
    margin: 10px 0;
}

/*end info*/
/*shipping*/
.shipping {
    background: #fff;
    padding: 15px 0;
}

.shipping .shipping_container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.shipping img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.shipping h3 {
    flex-shrink: 0;
    width: 45%;
    margin: 0;
    padding: 30px;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--main_color);
}

.shipping h3 span {
    display: inline-block;
}

/*end shipping*/
/*center_text*/
.center_text {
    padding: 15px 15px 70px 15px;
    background: #fff;
    text-align: center;
    margin-bottom: 115px;
}

.center_text h2 {
    font-size: 38px;
    margin: 0 0 30px;
}

.center_text p {
    max-width: 770px;
    margin: 0 auto;
}

/*end center_text*/
/*features_specs*/
.features_specs {
    padding: 60px;
    background: #fff;
}

.features_specs h2 {
    text-align: center;
    font-size: 38px;
    margin: 0;
    padding-bottom: 50px;
    border-bottom: 1px solid #e4e4e4;
}

.features_specs .wrapper {
    padding: 55px 75px 0;
}

.features_specs .specs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.features_specs .single_spec {
    width: 33.33334%;
    margin-bottom: 55px;
}

.features_specs .single_spec h4 {
    font-size: 20px;
    margin: 0;
}

.features_specs .features h3 {
    position: relative;
    font-size: 16px;
    font-family: var(--reg_font);
    margin: 0;
    cursor: pointer;
}

.features_specs .features h3:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -80%) rotateZ(45deg);
    border-right: 1px solid var(--hover_color);
    border-bottom: 1px solid var(--hover_color);
    transition: .4s;
}

.features_specs .features h3.opened:before {
    transform: translate(-50%, -20%) rotateZ(-135deg);
}

.features_specs .features ul {
    margin: 50px 0 0;
    padding: 0;
    list-style: none;
    display: none;
}

.features_specs .features li {
    display: flex;
    margin-bottom: 20px;
}

.features_specs .features li:last-child {
    margin-bottom: 0;
}

.features_specs .features li span {
    display: block;
    color: var(--title_color);
    flex-grow: 1;
}

.features_specs .features li span:last-child {
    flex: 380px 0 0;
}

.features_specs .features+.features_text {
    margin-top: 50px;
}

/*end features_specs*/
/*cars_wrapper*/
.cars_wrapper {
    padding: 0 40px 150px;
    background: #fff;
}

.cars_wrapper:last-child {
    padding-bottom: 100px;
}

.cars_wrapper h2 {
    margin: 0 0 10px;
    font-size: 38px;
    text-align: center;
}

.cars_wrapper h2+p {
    margin: 0 0 40px;
    text-align: center;
    color: var(--title_color);
}

.cars_wrapper .cars_box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, auto));
    grid-gap: 40px 20px;
}

.cars_wrapper .single_car {
    border: 1px solid #e4e4e4;
    transition: .4s;
}

.cars_wrapper .single_car:hover {
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.07),
        0 5px 20px -5px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    z-index: 1;
}

.cars_wrapper .single_car a {
    color: inherit;
}

.cars_wrapper .single_car .ribbon {
    display: block;
    background: #e6e7e8;
    padding: 3px;
    text-align: center;
    font-family: var(--light_font);
    transition: .4s;
}

.cars_wrapper .single_car:hover .ribbon {
    color: var(--hover_color);
}

.cars_wrapper .single_car .img_box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.cars_wrapper .single_car .img_box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.cars_wrapper .single_car .info_box {
    padding: 25px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cars_wrapper .single_car .car_name {
    max-width: calc(100% - 120px);
}

.cars_wrapper .single_car .car_name span {
    display: inline-block;
    font-size: 14px;
    color: var(--title_color);
}

.cars_wrapper .single_car .car_name h4 {
    font-size: 26px;
    max-height: 27px;
    overflow: hidden;
    font-family: var(--reg_font);
    margin: 5px 0 0;
}

.cars_wrapper .single_car .price_box {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.cars_wrapper .single_car .price_box span {
    order: -1;
}

.cars_wrapper .single_car .price_box h4 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 32px;
    color: var(--main_color);
    margin: 0;
}

.cars_wrapper .single_car .price_box h4 p {
    margin: 0;
    font-size: 12px;
    margin-top: auto;
    margin-bottom: 3px;
}

.cars_wrapper .single_car .price_box h4:before {
    content: '$';
    font-size: 16px;
}

.cars_wrapper .single_car .amenities {
    width: 100%;
    display: flex;
    margin-top: 35px;
}

.cars_wrapper .single_car .amenities span {
    display: inline-flex;
    align-items: center;
    width: 33.3334%;
    padding: 5px 0;
    font-size: 14px;
    color: var(--title_color);
}

.cars_wrapper .single_car .amenities span:nth-child(2) {
    text-align: center;
    justify-content: center;
    border-left: 1px solid var(--text_color);
    border-right: 1px solid var(--text_color);
}

.cars_wrapper .single_car .amenities span:last-child {
    justify-content: flex-end;
    text-align: right;
}

.cars_wrapper .single_car .amenities span:last-child:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 16px;
    margin-right: 3px;
    background: url('/wp-content/uploads/2020/06/pin.png') center no-repeat;
    background-size: contain;
}

.cars_wrapper .btn_wrap {
    margin-top: 55px;
    text-align: center;
}

.cars_wrapper .start_driving {
    display: inline-block;
    background: var(--main_color);
    color: #fff;
    font-size: 26px;
    padding: 2.3vh 8.1vw;
    text-transform: capitalize;
    border-radius: 7px;
}

.cars_wrapper .start_driving:hover {
    background: var(--hover_color);
}

.cars_wrapper .start_payment {
    margin: 5px 0 0;
}

/* Rsponsivenes */
@media(max-width: 1199px) {
    .slider_wrapper {
        height: 300px;
    }
}

@media(max-width: 991px) {
    .info {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .info .price {
        min-width: 1px;
        width: 100%;
    }

    .info .name {
        margin-bottom: 20px;
    }

    .center_text {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .features_specs {
        padding: 30px 20px;
    }

    .features_specs .single_spec {
        width: 50%;
    }

    .features_specs .wrapper {
        padding: 30px 30px 0;
    }

    .features_specs h2 {
        padding-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .shipping {
        flex-wrap: wrap;
    }

    .shipping h3 {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .info .start_driving {
        flex-wrap: wrap;
        padding-left: 0px;
        padding-right: 0px;
    }

    .features_specs .single_spec {
        width: 100%;
    }

    .slider_wrapper {
        overflow: visible;
    }

    .slider_wrapper .slick-arrow {
        top: 100%;
        transform: none;
        width: 60px;
        height: 60px;
        background: none !important;
    }

    .slider_wrapper .prev_arr {
        transform: rotateY(180deg);
    }

    .slider_wrapper .slick-arrow:before {
        width: 20px;
        height: 20px;
    }

    .slider_count {
        margin: 20px 0;
    }

    .features_specs .features h3 {
        margin-bottom: 30px;
    }

    .features_specs .features li span {
        font-size: 14px;
    }

    .features_specs .features li span:last-child {
        flex-basis: auto;
    }

    .cars_wrapper {
        padding: 0 20px 50px;
    }

    .cars_wrapper .single_car .info_box {
        padding: 20px;
    }

    .cars_wrapper .single_car .amenities span {
        font-size: 12px;
    }

    .shipping .shipping_container {
        flex-direction: column;
    }

    .shipping .img_box {
        padding: 20px 30px;
    }
}

@media(max-width: 500px) {
    .info .start_driving a {
        margin-top: 20px;
    }

    .cars_wrapper .cars_box {
        grid-template-columns: repeat(auto-fill, minmax(320px, auto));
    }
}