.cars-model {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: var(--space-xl) var(--space-md);
    min-height: 60svh !important;
    text-align: left;
    background-color: var(--bg-color, var(--nv-white));
}
.cars-model__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.cars-model__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nv-white);
    z-index: 2;
}

.cars-model__inside {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.cars-model__content {
    position: relative;
    z-index: 3;
    width:50%;
}

.cars-model__image img {
    width: 500px;
    height: auto;
}
.cars-model__buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .cars-model__inside {
        flex-direction: column;
    }

    .cars-model__image {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: var(--space-md);
    }

    .cars-model__content:not(.cars-model__image) {
        width: 100%;
        text-align: left;
    }

    .cars-model__content img {
        max-width: 100%;
        height: auto;
    }
}
