
@media (min-width: 768px) {
	/* VARIABELEN */
    :root {
        --standaard-font-size: 2rem;
        --standaard-line-height: 2.6rem;
        --contentblok-margin-bottom: 100px;
    }
    
    .header {
        width: 125%;
        transform: translateX(-50%);
        left: 50%;
    }
    
    #footer img {
        width: 107%;
        max-width: initial;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
        margin-bottom: -58px;
    }


    
    h1, .h1 {
        font-size: 5.5rem;
        line-height: 5rem;
    }

    .orders_container {
        margin-top: 4rem;
    }
    .row_orders {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    .order_item {
        padding: 10px 20px;
    }
    .order_item h4 {
        margin: 0;
        font-size: 5rem;
        line-height: 1;
    }
    
    .order_item h4 {
    }
    
    
}

@media (min-width: 992px) {
	#menu-hoofdmenu {
        margin-left: 3rem;
    }
    ul.hoofdmenu > li {
        position: relative;
        margin-top: 0;
        margin-left: 30px;
    }    
    ul.hoofdmenu > li:first-child {
        margin-left: 0;
    }
    ul.hoofdmenu > li > a {
        font-size: 2rem;
        font-weight: 400;
    }

    ul.hoofdmenu ul.sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        position: absolute;
        margin-top: 1rem;
        min-width: 120px;
        background-color: var(--kleur-wit);
        padding: 1rem 2rem;
        
        -webkit-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fade_submenu;
        animation-name: fade_submenu;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    /*Creeer hiermee een lege hover ruimte voor als het submenu lager moet komen*/
    ul.hoofdmenu ul.sub-menu:before {
        content: "";
        height: 1rem;
        width: 100%;
        background-color: transparent;
        position: absolute;
        top: -1rem;
        left: 0;
    }
    ul.hoofdmenu > li.menu-item-has-children:hover ul.sub-menu {
        display: block;
    }


    ul.hoofdmenu ul.sub-menu > li > a {
        font-size: 1.4rem;
    }

    @keyframes fade_submenu {
        from {
            opacity: 0;
            transform: translate3d(0, -20%, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}
