/* BREAKPOINTS 
X-Small	None	    <576px
Small	sm	        ≥576px
Medium	md	        ≥768px
Large	lg	        ≥992px
Extra large	xl	    ≥1200px
Extra extra large	xxl	≥1400px
*/

/* ----------------------------
START > Aanpassingen voor mobile en kleiner (Small)
---------------------------- */
@media only screen and (max-width: 767px) {

/* ----------------------------
        Body, mains en sections
---------------------------- */
html, p, li, ul, ol{
    font-size:16px;
}

.main-content{
    margin-top:9rem !important;
    padding-bottom: 2rem;
    padding-top:2rem;
}

section{
    padding-top:var(--height-p-section--sm);
    padding-bottom:var(--height-p-section--sm);
    max-width: unset !important;
}

section.container-fluid{
    max-width: 100%;
    padding-top:1rem;
    padding-bottom:1rem;
}

.section__content,
.section__content--row,
.section__content--center{
    gap:2rem;
    flex-direction: column;
}

.section__content--center.display{
    align-items: baseline;
    padding-top:0;
}

.container{
    max-width: unset;
}

/* ----------------------------
        Titles
---------------------------- */
h1{
    font-size:2.5rem;
    margin-bottom:1.25rem;
}

h2{
    font-size:1.85rem;
    margin-bottom:1rem;
    padding-top:0.5rem;
}
    h2 span.pre-title{
        font-size:var(--font-md);
        padding-bottom: 0.125rem;
    }

h3,
.footer__title{
    font-size:1.4rem;
    margin-bottom:0.75rem;
    padding-top:0.1rem;
}

/* title display */
.h1--display{
    font-size:3.2rem;
    line-height: 115%;
    text-align: left;
    margin-bottom: unset!important;
}

/* ----------------------------
        Default buttons & hyperlinks
---------------------------- */
.btn-group-horiz{
    flex-direction: column;
    width: 100%;
    gap:1rem;
}

.btn--display{
    width: 100%;
}

.btn--hyperlink img{
    max-width: 1rem;
}

.btn--hyperlink, 
.footer__contact-info{
    padding: 0.75rem 0rem;
}

/* ----------------------------
        Navigation
---------------------------- */
nav .container-fluid.vertical{
    padding-left:0;
    padding-right:0;
}

/* ----------------------------
        Default footer
--------------------------- */
.footer__row_mid{
    row-gap: 2rem;
}

/* bottom row */
.footer__row_bot{
    display: flex;
    align-content: center;
    flex-direction: column;
    gap:1rem;
}

.footer__row_bot div{
    display: flex;
    justify-content: center;
}

.legal__row{
    flex-direction: column;
    align-items: center;
}

/* ----------------------------
        Images
--------------------------- */
.img.screen{
    object-fit: contain;
    min-height:100%;
    width: 100%;
}

/* ----------------------------
        Cases of Projecten pagina
--------------------------- */
.cases__wrapper{
    gap:1rem;
}

.case__card{
    min-height: 10rem;
}

    .case__card::after{
        height: calc(100% - 2rem);
        /*backdrop-filter: blur(1px);*/
    }

        .case__card .case__badge{
            padding: 0.5rem;
        }

    /* jumbotron versie */
    .case__card--jumbotron{
        height: 50rem;
        max-height: 50vh;
        padding:2rem;
        background-size: 125%;
    }
        .case__card--jumbotron h2{
            font-size:1.8rem;
        }
        .case__card--jumbotron p{
            font-size:1rem;
        }

/* ----------------------------
        Call to action (CTA)
--------------------------- */
.cta__foto{
    margin-top:2rem;
    width: 285px;
    max-width: 50vw;
}

/* ----------------------------
        Icon grid + image
--------------------------- */
.icon-group-grid{
    display: flex;
    flex-direction: column;
    /*grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;*/
}

/* ----------------------------
        Temp page
--------------------------- */
.temporary p{
    text-align: left;
}

.maintenance .nav__sub{
    display: none;
}

.maintenance nav.navbar{
    transform: unset;
    
}
    .maintenance .container-fluid.vertical{
        flex-direction: row;
        align-content: flex-start;
    }

.maintenance .main-content{
    margin-top: 2rem !important;
}

/* ----------------------------
EINDE > Aanpassingen voor mobile en kleiner (Small)
---------------------------- */
}
/* ----------------------------
START > Aanpassingen voor Tablet en kleiner (Large)
---------------------------- */
@media only screen and (max-width: 991px) {
.navbar-nav{
    padding-top: 0rem;
}

nav.navbar{
    transition: 0;
}

/* maakt dropdown sub menu alleen nog klikbaar */


/* ----------------------------
EINDE > Aanpassingen voor Tablet en kleiner (Large)
---------------------------- */
}