@media (min-width: 1200px) {

    .page__main.page__main--frontpage .shortcode_contact-block__form {
        padding-left: 5%;
    }

    .frontpage_hero {
        height: 100vh;
        height: 100svh;
    }

    .frontpage-hero__mobile-body {
        display: none;
    }

    .frontpage_hero__video {
        height: 100%;
        filter: brightness(80%);
    }

    .frontpage_hero__bovag {
        position: absolute;
        right: 10%;
        bottom: 74px;
        z-index: 1;
        display: block;
        width: 200px;
        margin: 0;
    }

    .frontpage-hero-cta {
        top: unset;
        bottom: 74px;
        flex-direction: row;
    }

    .frontpage-hero-cta__card {
        width: 50%;
        max-width: 480px;
        min-width: min(320px, 100%);
    }

    .frontpage_hero__scroll-down svg {
        fill: #fff !important;
    }

    .frontpage_hero__footer {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        background-color: var(--color-primary);
    }

    .frontpage_keypoints {
        flex-direction: row;
    }

    .frontpage_keypoints__card {
        width: calc( (100% / 4) - (var(--space-xxl) / 4) + var(--space-xxl));
    }

    .frontpage_keypoints__card:nth-child(1).animated-item.visible {
        animation-delay: 0s;
    }
    
    .frontpage_keypoints__card:nth-child(2).animated-item.visible {
        animation-delay: .2s;
    }
    
    .frontpage_keypoints__card:nth-child(3).animated-item.visible {
        animation-delay: .6s;
    }
    
    .frontpage_keypoints__card:nth-child(4).animated-item.visible {
        animation-delay: 1s;
    }

    .frontpage_brands {
        flex-direction: row;
    }

    .frontpage_brands__body {
        width: 60%;
        min-width: 60%;
        padding-left: var(--space-7xl);
        padding-right: 5%;
        border-radius: 16px 0 0 16px;
    }

    .frontpage_brands__subtitle {
        margin-top: 20px;
    }

    .frontpage_brand__img-container.frontpage_brand__img-container--desktop {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        row-gap: var(--space-lg);
        flex-grow: 1;
        height: auto;
        padding-left: 5%;
        padding-right: var(--space-5xl);
    }

    .page.brandstest .frontpage_brand__img-container.frontpage_brand__img-container--desktop {
        flex-direction: row;
        column-gap: 20px;
    }

    .frontpage_brand__img-container.frontpage_brand__img-container--desktop .frontpage_brand__img {
        max-width: 320px;
        opacity: 0;
        transform: translateY(60px);
        filter: blur(4px);
        border-radius: 0;
    }

    @keyframes brands-animation {

        100% {
            border-radius: 50%;
            opacity: 100%;
            transform: translateY(0) rotate(0);
            filter: blur(0);
        }

    }

    .frontpage_brand__img-container.frontpage_brand__img-container--desktop .frontpage_brand__img.animated-item.visible {
        animation: brands-animation 2s ease forwards;
        animation-delay: .2s;
    }

    .frontpage_brand__img-container.frontpage_brand__img-container--desktop .frontpage_brand__img:nth-child(2).animated-item.visible {
        animation-delay: .6s;
    }

    .page.brandstest .frontpage_brand__img-container.frontpage_brand__img-container--desktop .frontpage_brand__img {
        width: 50%;
        max-width: 240px;
        padding: 16px;
        aspect-ratio: 1/1;
        /* border-radius: 50%; */
        object-fit: contain;
        box-shadow: 0 0 8px 0 #72001d1a;
        background-color: #fff;
    }

    .frontpage_brand__img-container.frontpage_brand__img-container--mobile {
        display: none;
    }

    .frontpage_offer {
        flex-direction: row;
        width: 100%;
    }

    .frontpage_offer__body {
        max-width: 50%;
        /* padding-bottom: var(--space-xxl); */
        padding-right: var(--space-5xl);
        padding-left: 5%;
    }

    .frontpage_dealer__body {
        padding-left: var(--space-5xl);
    }

    .frontpage_offer__img {
        display: block;
        width: 50%;
        object-fit: cover;
    }

    .frontpage_introduction {
        width: 100%;
        flex-direction: row;
        margin-bottom: 0;
    }

    .frontpage_introduction__img {
        display: block;
        width: 50%;
        object-fit: cover;
    }

    .frontpage_introduction__body {
        padding-top: var(--space-5xl);
        padding-bottom: var(--space-5xl);
        padding-left: var(--space-5xl);
        padding-right: 5%;
    }

    .frontpage_hero__keypoints:nth-of-type(1) .frontpage_hero__keypoint:nth-child(1) {
        animation-delay: 0s;
    }
    
    .frontpage_hero__keypoints:nth-of-type(1) .frontpage_hero__keypoint:nth-child(2) {
        animation-delay: .4s;
    }
    
    .frontpage_hero__keypoints:nth-of-type(2) .frontpage_hero__keypoint:nth-child(1) {
        animation-delay: .8s;
    }
    
    .frontpage_hero__keypoints:nth-of-type(2) .frontpage_hero__keypoint:nth-child(2) {
        animation-delay: 1.2s;
    }

}


@media (min-width: 1200px) and (max-width: 1820px) {

    .frontpage_hero__bovag {
        bottom: 12px;
        right: 12px;
        width: calc( 10% - 24px );
        margin: 0;
    }

}