.__large-image,
.onepage-section {
    height: auto !important;
    min-height: 0 !important;
}

.vehicle-hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 812;
    overflow: hidden;
    background: #f2f2f2;
}

.vehicle-hero-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.vehicle-hero-slider__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.vehicle-hero-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-hero-slider .buttons {
    position: absolute;
    left: 50%;
    bottom: 55px;
    z-index: 9999;

    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;

    transform: translateX(-50%) translateY(-25px);
    opacity: 0;
    visibility: hidden;

    transition:
        opacity .5s ease,
        transform .5s ease,
        visibility 0s linear .5s;
}

.vehicle-hero-slider__slide.is-active .buttons {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);

    transition:
        opacity .5s ease,
        transform .5s ease;
}

.vehicle-hero-slider .buttons .__skew-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto;
    z-index: 9999;
}

.vehicle-hero-slider .buttons .__skew-button span {
    color: inherit;
}

.vehicle-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: rgba(0,0,0,.35);
    color: #fff;

    font-size: 34px;
    line-height: 44px;

    cursor: pointer;
}

.vehicle-hero-slider__arrow--prev {
    left: 20px;
}

.vehicle-hero-slider__arrow--next {
    right: 20px;
}

.vehicle-hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    gap: 10px;
}

.vehicle-hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.vehicle-hero-slider__dot.active {
    background: #fff;
}

@media (max-width: 1024px) {
    .vehicle-hero-slider .buttons {
        gap: 18px;
        bottom: 35px;
    }
}

@media (max-width: 768px) {
    .vehicle-hero-slider__arrow {
        width: 34px;
        height: 34px;
        font-size: 26px;
        line-height: 34px;
    }

    .vehicle-hero-slider__arrow--prev {
        left: 10px;
    }

    .vehicle-hero-slider__arrow--next {
        right: 10px;
    }

    .vehicle-hero-slider .buttons {
        bottom: 25px;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .vehicle-hero-slider__dots {
        bottom: 8px;
    }
}