

@media screen and (max-width: 4000px){

    h1{
        font-size: 36px;
        line-height: 135%;
        letter-spacing: -0.023em;
        font-weight: var(--font-weight-regular);
        color: var(--color-pink);
    }

    .hero{
        height: 86vh;
        width: 100vw;
    }
    
    .hero-half{
        height: 64vh;
        width: 100vw;
    }
        
    .centered {
        width: 100%;
        padding: 0 5vw;
    }

    .centered-wide {
        width: 100%;
        padding: 0 4vw;
    }

    .centered-medium {
        width: 100%;
        padding: 0 7vw;
    }

    .centered-narrow {
        width: 100%;
        padding: 0 15vw;
    }

    .text-left-to-center{
        text-align: left;
    }

    .grid-2-columns{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10vw;
        row-gap: 14vh;
    }

    .grid-2-columns-dense{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2vw;
        row-gap: 0px;
    }

    .grid-3-columns{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 5vw;
        row-gap: 3vh;
    }

    .grid-producten{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 3vw;
        row-gap: 6vh;
    }

    .grid-boek{
        display: grid;
        grid-template-columns: 232px 1fr;
        row-gap: 32px;
    }

    .width-55-100pct{ width: 64%; }

    .desktop-only{  display: inline-block; }
    .mobile-only{  display: none; }

}



@media screen and (max-width: 2100px){

    .grid-producten{
        grid-template-columns: repeat(4, 1fr);
        column-gap: 4vw;
    }
    
}



@media screen and (max-width: 1700px){

    .grid-producten{
        grid-template-columns: repeat(3, 1fr);
        column-gap: 3vw;
    }
    
}



@media screen and (max-width: 1222px){
    
    .text-left-to-center{
        text-align: left;
    }

    .grid-2-columns, .grid-2-columns-dense{
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3-columns{
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-producten{
        grid-template-columns: repeat(2, 1fr);
    }

    
}



@media screen and (max-width: 938px){

    .width-55-100pct{ width: 100%; }

    h1{
        font-size: 27px;
    }

    .grid-boek{
        grid-template-columns: repeat(1, 1fr);
    }

}



@media screen and (max-width: 871px){

    .text-left-to-center{
        text-align: center;
    }
    
    .grid-2-columns, .grid-2-columns-dense{
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3-columns{
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-producten{
        grid-template-columns: repeat(1, 1fr);
    }

    .centered-medium,
    .centered-wide,
    .centered-narrow {
        width: 100%;
        padding: 0 7vw;
    }

    :root{

		--font-hero: 				36px;

	}
    
}

@media screen and (max-width: 681px){

    .desktop-only{  display: none; }
    .mobile-only{  display: inline-block; }
    
}





