/* ========================================
                Main {DESKTOP}
                [START]
========================================= */
@media (min-width: 1200px) {

    .l-main__inner.homepage {
        width: 100%;
    }

    .campers,
    .caravans {
        width: 65%;
        margin: 0 auto;
    }


    /* ========================================
                    Main->
                    Introduction
                    [START]
    ========================================= */

    .introduction {
        height: calc(100vh - var(--header-height));
    }

    .l-introduction__buttons {
        display: flex;
        position: absolute;
        bottom: 0;
        width: 100%;
        flex-direction: column-reverse;
        row-gap: 20px;
        z-index: 99;
    }

    .l-introduction__buttons--top {
        display: flex;
        justify-content: center;
        column-gap: 80px;
        padding-top: 25px;
        padding-bottom: 50px;
        background-color: rgb(0, 0, 0, 30%);
    }

    .l-introduction__buttons--bottom {
        display: flex;
        justify-content: center;
    }

    .introduction__btn {
        width: 400px;
    }

    .introduction__btn__img {
        width: 100%;
        max-height: 168px;
        object-fit: contain;
    }

    .introduction__btn__title  {
        text-align: center;
        color: #fff;
        font-size: 24px;
    }

    .introduction__btn--arrow {
        font-size: 36px;
        color: #fff;


        animation: blink 1s linear alternate infinite;
        transition: scale .4s var(--block-zoom-transition-curves);
    }

    .introduction__btn--arrow:hover {
        scale: 1.2;

        transition: scale .4s var(--block-zoom-transition-curves);
    }


    /* introduction button 2 */
    .introduction__btn-2 {
        width: 400px;
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

    .introduction__btn__img-2 {
        width: 100%;
        max-height: 168px;
        object-fit: contain;
    }

    .introduction__btn__title-2 {
        font-size: 24px;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
    }

    .introduction__btn__explore  {
        border: 1px solid #fff;
        text-align: center;
        color: #fff;
        font-size: 22px;
    }

    .introduction__btn__offers  {
        text-align: center;
        color: #fff;
        font-size: 16px;
        background-color: transparent;
        appearance: none;
        border: none;
        cursor: pointer;
    }

    .introduction__btn__offers i {
        padding-left: 4px;
        font-size: 12px;
    }

    /* ========================================
                    Main->
                    Introduction
                    [END]
    ========================================= */

    
    .product-categories {
        display: none;
    }

    
    /* ========================================
                    Main->
                    Brands
                    [START]
    ========================================= */
    
    .brands__inner {
        width: fit-content;
    }

    .l-brand__blocks {
        margin-top: 25px;
        margin-bottom: 0;
        flex-direction: row;
        column-gap: 75px;
    }

    .brand__block {
        width: 30%;
    }

    /* Scroll animation */
    /* @media (prefers-reduced-motion: no-preference) {
        .brand__block:nth-of-type(even) {
            animation: slide-in-left ease-out both;
            animation-timeline: view();
            animation-range: -20vh 65vh;
        }
        .brand__block:nth-of-type(odd) {
            animation: slide-in-right ease-out both;
            animation-timeline: view();
            animation-range: -20vh 65vh;
        }
    } */

    /* ========================================
                    Main->
                    Brands
                    [END]
    ========================================= */




    /* ========================================
                    Main->
                    Welcome
                    [START]
    ========================================= */

    .welcome {
        height: 400px;
    }

    .welcome__inner {
        width: 95%;
        height: 100%;
        margin-left: auto;
        flex-direction: row;
    }

    .welcome__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 35%;
    }

    .l-welcome__img {
        width: 65%;
    }

    .welcome__text {
        padding: 0;
    }

    .l-welcome__img {
        display: block;
        mask-image: linear-gradient(to top, rgb(0, 0, 0, 100%) 50%, transparent 100%),
                    linear-gradient(to bottom, rgb(0, 0, 0, 100%) 80%, transparent 100%),
                    linear-gradient(to left, rgb(0, 0, 0, 100%) 50%, transparent 100%);
        mask-composite: intersect;
    }

    .welcome__img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ========================================
                    Main->
                    Welcome
                    [END]
    ========================================= */




    /* ========================================
                    Main->
                    Services
                    [START]
    ========================================= */

    .main__services {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px; /* To account for .backdrops Y transforms */
    }

    .main-services__blocks {
        flex-direction: row;
    }

    .l-main-service__block {
        width: 20%;
    }

    /* ========================================
                    Main->
                    Services
                    [END]
    ========================================= */




    /* ========================================
                    Main->
                    News
                    [START]
    ========================================= */

    .news__inner {
        width: 60%;
    }

    .news__block {
        flex-direction: row;
    }

    .news__block:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    
    .news__block:nth-of-type(odd) {
        flex-direction: row;
    }

    .news__img,
    .news__text {
        width: 50%;
    }

    .news__title {
        font-size: 26px;
    }

    /* ========================================
                    Main->
                    News
                    [END]
    ========================================= */

    .button--workplace {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: -240px;
        display: flex;
        flex-direction: row;
        align-items: center;
        column-gap: 12px;
        width: 302px; /* 240px + 40px (icon) + 10px (scroll-bar) + 12px (gap) */
        height: fit-content;
        padding: 8px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 8px 0 0 8px;
        border: none;
        appearance: none;
        z-index: 99999999999;
        cursor: pointer;
        color: #fff;
        background-color: var(--theme-color-2);
        transition: right .4s ease;
    }
    
    .button--workplace:hover {
        right: 0;
    }
    
    .button--workplace div {
        width: 40px;
        height: 40px;
    }

    .button--workplace div > i {
        font-size: 40px;
        animation: blink 3s linear alternate infinite;
    }
    
}
/* ========================================
                Main {DESKTOP}
                [END]
========================================= */