*{
    margin: 0;
    padding: 0;
}

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

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    background-color: rgb(19, 19, 19);
}

a{
    text-decoration: none;
    color: #B3F6FF;
    padding-left: 20px;
    padding-right: 20px;
}

a:hover{
    text-decoration: underline;
    color: aquamarine;
}

.buffer{
    max-width: 1200px;
    margin: auto;
}

h3{
    color: #B3F6FF;
}

/* Inhoud */

.navigatie{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navfix{
    background-color: #418A93;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

header{
    color: black;
    background-image: url("Images/Header-Handshake.jpg");
    background-size: cover;
    background-position: center;
    height: 750px;
    margin-top: 140px;
}

.img_corrector{
    background-color: rgba(0, 0, 0, 0.5);
    height: 750px;
}

.Header{
    color: #B3F6FF;
    padding-top: 350px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.Featured{
    padding: 20px;
}

.Title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 60px;
    height: 60px;
}

/* MOBIEL MENU */

.hamburger{
    width: 40px;
    cursor: pointer;
}

.lijn{
    background-color: #D3D3D3;
    height: 6px;
    margin-bottom: 6px;
    border-radius: 3px;
}

.lijn:last-child{
    margin-bottom: 0;
}

.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 10;
    position: relative;
    width: 100%;
}

.ankers{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: 0.3s;
}

.open{
    right: 0;
}

/* Articles */

    /* About-Us */
    .secbuffer{
        max-width: 350px;
        margin: auto;
    }

    .title{
        color: #B3F6FF;
        padding: 20px;
    }

    .Back-Art{
        background-color: rgba(217, 217, 217, 0.2);
        margin: 30px 20px;
        border-radius: 10px;
    }

    .AU{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .Img-AU{
        margin-bottom: 30px;
    }

    .Txt-AU{
        color: white;
        padding-bottom: 30px;
        text-align: justify;
    }

    /* Models */

    .Back-mod{
        background-color: rgba(217, 217, 217, 0.2);
        margin: 30px;
        border-radius: 10px;
        height: 4400px;
    }

    .Model-V1{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
    }

    .Model-V2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
    }

    .Img-model{
        margin-bottom: 30px;
    }

    .Txt-model{
        color: white;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .contentMod{
        background-color: rgba(217, 217, 217, 0.2);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        margin-top: 30px;
        max-height: 2200px;
    }

    .Txt-price{
        color: white;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    /* Current project */

    .CP{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 30px;
    }

    .Txt-CP{
        color: white;
        padding-bottom: 30px;
        text-align: justify;
        max-width: 500px;
        padding: 30px;
    }

    /* Form */

    .Inhoud-form{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 30px;
    }

    label{
    color: azure;
    }

    textarea{
        max-width: 150px;
        max-height: 150px;
    }

    text{
        color: white;
    }

    .Rating{
        display: flex;
        flex-direction: column;
    }

    /* Footer */

    footer{
        background-color: #1C1C1C;
        color: aliceblue;
    }

    .foot-ank{
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .foot a{
        padding: 0px;
    }

    .foot{
        padding: 20px;
        display: flex;
        flex-direction: column;
        padding: 30px;
        margin-left: 30%;
    }

    .Con-info{
        padding: 10px;
        color: #B3F6FF;
    }

    .socials{
        padding: 10px;
    }

@media all and (min-width: 640px) {
    .hamburger{
        display: none;
    }

    .navigatie{
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .ankers{
        position: static;
        padding-top: 0;
        height: auto;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        
    }

    .content{
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    article:last-child{
        margin-bottom: 20px;
    }   

    .banner{
        width: auto;
    }

    /* Articles */

    .About-us{
        margin: 30px auto;
    }

    .secbuffer{
        max-width: 1000px;
        margin: auto;
    }

    .AU{
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: row;
    }

    .Img-AU{
        margin: 30px;
    }

    .Txt-AU{
        margin: 30px;
        max-width: 400px;
    }

    .Back-Art{
        margin: 30px auto;
    }

    .Back-mod{
        margin: 30px auto;
        height: 5700px;
    }

    .contentMod{
        max-height: fit-content;
        background-color: none;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        max-height: 5700px;
    }

    .Big-screen-cor{
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: row;
        padding: 30px;
        background-color: rgba(217, 217, 217, 0.2);
        border-radius: 10px;
        margin-bottom: 30px;
        max-width: 677px;
    }

    .Txt-model{
        margin-right: 30px;
    }

    .Img-model{
        max-width: 500px;

    }

    .CP{
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: row;
    }

    .foot{
        display: flex;
        flex-direction: row;
        justify-content: space-between ;
        margin-left: auto;
        padding: 30px;
    }

    .Formsplit{
        display: flex;
        flex-direction: row;
    }

    .Formp1{
        margin: 20px;
    }

    .Formp2{
        margin: 20px;
    }

    .reset{
        margin-left: 42%;
    }
}