    img,
    picture {
        max-width: 100%;
        display: block;
    }

    h1,
    h2,
    h3,
    h4,
    p
    {
        margin: 0;
    }
    
    p {
        padding-top: 1.5rem;
    }
    
    .side-by-side ul {
        padding-top: 1.5rem;
    }
    .max-width{
        width: min(90%, 1440px);
        margin: 0 auto;
    }

    .side-by-side .wrapper {
        padding: 8rem 0;
        display: grid;
        gap: 5rem;
    }

    .side-by-side .image img {
        aspect-ratio: 1 / 0.625;
        object-fit: cover;
    }




    @media (min-width: 768px) {
        .side-by-side .wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 7rem;
        }
        .side-by-side.reverse .wrapper .text {
            order: -1;
        }
        .side-by-side .image img {
            aspect-ratio: 1 / 1;
        }
    }

    @media (min-width: 1280px) {
        .side-by-side .image img {
            aspect-ratio: 1 / 0.625;
        }
    }



    section.hero {
        position: relative;
        height: min(60vh, 600px);
    }

    section.hero .text {
        width: min(90%, 1440px);
        margin: 0 auto;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        display: grid;
        justify-items: center;
        z-index: 3;
    }

    section.hero .text p {
        max-width: 55ch;
    }

    section.hero .text h1 {
        color: #fff;
        padding-top: 0.5em;
    }

    section.hero::after {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.7), rgba(0,0,0,0));
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
    }
    section.hero img.curtain {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    section.hero img.overlay-caravan {
        position: absolute;
        bottom: -1.5rem;
        right: 0;
        max-width: 95%;
        z-index: 4;
        user-select: none;
        pointer-events: none;
    }


    section.brands {
        padding: 3rem 0 0 0;
    }

    section.brands .brand-grid {
        display: grid;
        gap: 2rem;
        align-items: start;
    }


    section.brands .brand-grid .brand {
        text-align: center;
        display: grid;
        justify-items: center;
        align-items: start;
    }

    section.brands .brand-grid .brand p {
        margin: 0;
        padding-top: 0;
    }

    section.brands .brand-grid .brand h2 {
        padding: 0.3em 0;
    }

    section.brands .brand-grid .brand img.logo {
        max-width: 15rem;
        height: 12rem;
        object-fit: contain;
    }


    @media (min-width: 550px) {
            .brand-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

    @media (min-width: 768px) {
        img.overlay-caravan {
            bottom: -3.5rem;
        }
    }


    @media (min-width: 1000px) {
        .brand-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
