@font-face {
    font-family: 'Museo';
    src: url('./resources/fonts/Museo300-Regular.otf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Museo';
    src: url('./resources/fonts/Museo700-Regular.otf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1em;
    font-family: 'museo', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
    overflow-y: scroll;
}

header {
    display: grid;
    grid-template-columns: minmax(15vw, 27fr) 63fr 5fr;
    height: 25vh;
}

.logo img {
    height: 90%;
    max-width: 100%;
    padding: 7% 0 3% 13%;
    margin-right: 5%;
}

.logo {
    position: relative;
    border: none;
    overflow: hidden;
    max-height: none;
    padding: auto;
}

.line_top_bar_left {
    position: absolute;
    margin-bottom: 0;
    margin-top: auto;
    bottom: 0;
    height: 30%;
    aspect-ratio: 11 / 2;
    margin: 0;
    border-top: none;
    z-index: 2;
    border-bottom: 2px solid #ff8f36;
}

nav {
    height: 25vh;
}

.line_top_bar_right {
    border-bottom: 2px solid #ff8f36;
    border-top: none;
    width: 100%;
    height: 100%;
}

nav ul {
    height: 100%;
    margin: auto;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 5%;
    flex-wrap: wrap;
}

nav ul li {
    background-color: #ff8f36;
    height: 30%;
    width: 16%;
    min-width: 110px;
}

nav ul li span p {
    display: block;
}

nav ul li span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#current-page {
    background-color: #ffc592;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

#praktijkvoorbeelden {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    max-width: 100%;
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 13fr;
    margin-top: 5vh;
    position: relative;
    height: fit-content;
}

.main-images {
    display: flex;
    flex-direction: column;
    justify-content: left;
    overflow: hidden;
}

.coloured-box {
    display: block;
    max-width: 100%;
    aspect-ratio: 3/2;
}

.main-images * {
    width: 100%;
    margin-bottom: 30px;
    aspect-ratio: 3 / 2;
}

.text {
    padding-left: 5%;
    padding-right: 35%;
    color: #0e3692;
    text-wrap: pretty;
}

.praktijkruimte {
    max-height: 300px;
    z-index: 10;
    max-width: 80%;
}

#full-width {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#full-width span {
    min-width: 6em;
}

.text-list li::marker {
    color:#ff8f36;
}

.mountain-container {
    width: 65vw;
}
.mountain {
    margin-left: auto;
    position: fixed;
    bottom: -10px;
    right: 0;
    overflow: hidden;
    opacity: 0.13;
    width: 65vw;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    z-index: -1 ;
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-left: auto;
    margin-right: 0;
    color: #ff8f36;
    border-top: 1px solid #ff8f36;
    font-size: small;
    height: 2rem;
    width: fit-content;
    padding: 0.5rem;
    padding-left: 0;
}

@media only screen and (max-width: 1550px){
    .c-werkwijze, .c-praktijk-voorbeelden {
        position: relative !important;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 1400px) {
    header {
        height: 25vh;
        grid-template-columns: minmax(10vw, 40fr) 63fr 5fr;
        margin-bottom: 15px;
    }

    nav ul {
        margin: 5vh 0;
        padding: 0 3vw;
        height: 20vh;
        flex-direction: column;
        justify-content: space-between;
    }

    nav ul li {
        height: 45%;
        width: 23%;
        padding: 1% 5%;
    }
}

@media only screen and (max-width: 1200px) {
    .mountain {
        width: 80%;
    }
}

@media only screen and (max-width: 1000px) {
    .logo img {
        height: auto;
        max-width: 70%;
        margin: 0;
        margin-left: 14vw;
        display: block;
        padding: 30px 0 15px 0;
        border: none;
        border-bottom: none; 
    }

    header {
        display: flex;
        flex-direction: column;
        border-bottom: none;
        height: auto;
    }

    .logo {
        order: 1;
        overflow: visible;
        width: 100%;
        margin-bottom: 2vh;     
    }

    .line_top_bar_left {
        order: 2;
        width: 67%;
        margin-right: 33%;
        border-bottom: 2px solid #ff8f36;
    }
    
    nav {
        order: 3;
        height: auto;
    }

    .line_top_bar_right {
        order: 4;
        width: 8vw;
        margin-left: 93vw;
    }

    nav ul {
        margin: 0;
        height: auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
        align-items: stretch;
    }

    nav ul li {
        flex: 0 0 31%;
        margin-bottom: 2%;
        height: 50px;
    }

    .text {
        padding-right: 5%;
    }

    .mountain {
        width: 100%;
        z-index: -1;
    }
}

@media only screen and (max-height: 1000px) and (max-width: 1000px) {
    .logo {
        max-height: 200px;
    }

    .logo img {
        max-height: 200px;
    }
}

@media only screen and (max-height: 750px) and (max-width: 1000px) {
    .logo {
        max-height: 150px;
    }

    .logo img {
        max-height: 150px;
    }
}

@media only screen and (max-width: 850px) {
    .line_top_bar_left {
        width: 70%;
        margin-right: 30%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .main-content {
        grid-template-columns: 1fr 4fr;
    }

    .line_top_bar_left {
        width: 73%;
        margin-right: 27%;
    }
}

@media only screen and (max-width: 650px) {
    .line_top_bar_left {
        width: 72%;
        margin-right: 28%;
    }
}

@media only screen and (max-width: 600px) {
    .line_top_bar_left {
        width: 75%;
        margin-right: 25%;
    }

    .main-content {
        grid-template-columns: 3fr 8fr;
    }

    .c-overmij {
        position: relative;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 620px) {
    .c-contact {
        position: relative;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 1000px) {
    .c-index {
        position: relative;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 360px) {
    header nav ul {
        justify-content: space-evenly;
    }
}

@media only screen and (max-height: 767px) {
    .mountain {
        max-height: 50%;
    }

    footer {
        position: relative;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 275px) {
    header nav ul {
        padding: 0;
        align-items: center;
    }
}