* {
     padding: 0;
     margin: 0;
}

html {
    position: relative;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 80%;
    display: block;
    margin: 0 auto;
    height: 100%;
}

.flex {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.padding-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

a {
    color: #000;
    transition: .3s;
}

a:hover {
    color: #012c32;
    text-decoration: none;
    cursor: pointer;
}

/* HEADER */

header {
    width: 100%;
    height: 100px;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    color: black;
    font-size: 32px;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
}

.header_logo img {
    height: 80px;
    transition: .4s;
}

.header_desktopMenu ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

header ul li {
    list-style-type: none;
    font-size: 24px;
    margin-left: 40px;
}

header ul li a {
    text-decoration: none;
    color: #000;
    transition: .5s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    border-bottom: 2px solid #012c32;
}

header ul li a:hover {
    color: #012c32;
    text-decoration: none;
    transform: scale(1.1);
}

.header_desktopMenu {
    display: block;
}

.header_mobielMenu {
    display: none;
}

.header_menuOverlay {
    display: none;
}

.menuItem1 a, .menuItem2 a, .menuItem3 a {
    text-decoration: none;
    color: #000;
    transition: .5s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: 1px;
    border-bottom: 2px solid #012c32;
    text-align: center;
    margin: 0 auto;
    display: block;
}



/* HERO */

.c-hero {
    height: 110vh;
    width: 100%;
    background-image: url("images/hero_image.jpg");
        background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    display: flex;
    position: relative;
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);

}

.c-hero_content {
    font-family: 'Bebas Neue', sans-serif;
    color: #000;
    font-size: 4em;
    letter-spacing: 5px;
    line-height: 75px;
}

.c-hero_content p {
    margin-top: 23vh;
    text-align: center;
}

.c-hero_content p:last-of-type {
    margin-top: 40vh;
}

h3 {
    font-size: 2em;
    padding-bottom: 5px;
    border-bottom: 2px solid #012c32;
    color: #000;
    letter-spacing: 2px;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.arrow_down {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    animation: bounce 2s ease-in-out infinite;
}

.arrow_down:hover {
    cursor: pointer;
}

@keyframes bounce {
    0% {
        bottom: 100px;
    }

    50% {
        bottom: 110px;
    }

    100% {
        bottom: 100px;
    }

}

/* ABOUT */
.c-about {
    background-color: whitesmoke;
    padding-bottom: 50px;
}

.c-about h3 {
    font-size: 2em;
    padding-bottom: 5px;
    border-bottom: 2px solid #012c32;
    color: #000;
    letter-spacing: 2px;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.c-about p {
    font-size: 1.2em;
    color: #000;
    letter-spacing: 1px;
}

.c-about p a {
    color: #000;
    border: 1px solid #000;
    padding: 8px 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.c-about p a:hover {
    color: gray;
    border: 1px solid gray;
    cursor: pointer;
}

.c-about img {
    width: 100%;
    box-shadow: 4px 11px 46px -25px rgba(0,0,0,0.75);

}


/* MY WORK */

.c-work {
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);
    padding-bottom: 100px;
    position: relative;
    z-index: 1;

}

.c-work_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
    grid-template-rows: masonry;
    margin-top: 50px;
}

.item {
    position: relative;
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);
}

.item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(16,16,16, 0.9);
    opacity: 0;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    padding: 10px;
    line-height: 30px;
    text-align: center;
}

.item:hover::after {
    opacity: 1;
    cursor: pointer;
}

.item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.designmuseum:after {
    content: 'Design museum Amsterdam';
}

.brandtheprotest:after {
    content: 'Brand the protest';
}

.photorepair:after {
    content: 'Photo repair';
}

.bestewijn:after {
    content: 'De beste wijn bij';
}

.bobelling:after {
    content: 'Bob Elling';
}

.completelyyou:after {
    content: 'Completely you';
}

.especial:after {
    content: 'Especial';
}

.inmemoryof:after {
    content: 'In memory of';
}

.items:after {
    content: 'Items Magazine';
}

.klusservice:after {
    content: 'Klusservice 040';
}

.lion:after {
    content: 'Tiger';
}

.lowlands:after {
    content: 'Lowlands';
}

.noicedisturbance:after {
    content: 'Noice disturbance';
}

.tuinmanmarcus:after {
    content: 'Tuinman Marcus';
}

.vanalkemare:after {
    content: 'Van Alkmare';
}

.vrijmibo:after {
    content: 'VRIJMIBO';
}

.hond:after {
    content: 'Dog';
}

.shearon:after {
    content: 'Shearon Ruby Hairsaloon';
}

/* CONTACT */

.c-contact {
    background-color: whitesmoke;
    position: relative;
    /*margin-top: 100px;*/
}

/*.c-contact:after {*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background-color: white;*/
    /*opacity: .2;*/
    /*content: '';*/
    /*background-image: url("images/contact_achtergrond.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
/*}*/

.c-contact p {
    margin-top: 50px;
    text-align: center;
    color: #000;
    font-size: 2em;
}

.c-contact a {
    display: table;
    margin: 0 auto;
    color: #012c32;
    font-size: 1.5em;
    margin-bottom: 100px;
    transition: .3s;
    border: 1px solid #012c32;
    padding: 10px 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.c-contact a:hover {
    transform: scale(1.1);
    opacity: .8;
}


/* FOOTER */

footer {
    width: 100%;
    height: 100px;
    background-color: #012c32;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);
    position: relative;
    z-index: 1;
}

footer img {
    width: 30px;
    transition: .3s;
    margin-left: 30px;
}

footer .call {
    width: 25px;
}

footer img:hover {
    transform: scale(1.1);
    opacity: .8;
}

.fixedFooter {
    position: fixed;
    bottom: 0;
}



/* PROJECT PAGINA */

#project header {
    /*border-bottom: 1px solid rgb(171,69,196);*/
    margin-bottom: 50px;
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);
}

#project .project_content {
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
}

#project h3 {
    margin-bottom: 30px;
}

#project h6 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

#project p {
    font-size: 1.2em;
    color: #000;
    letter-spacing: 1px;
}

#project .project_content img {
    width: 100%;
    transition: .5s;
    box-shadow: 0px 0px 25px 4px rgba(0,0,0,0.24);

}

.project_contact {
    color: #000;
    border: 1px solid #000;
    padding: 8px 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 15px;
}

#project .project_content a img {
    width: 100%;
    transition: .5s;
}

#project a img:hover {
    transform: scale(1.1);
    opacity: .8;
}

.project_link {
    padding: 10px 15px;
    font-size: 18px;
    letter-spacing: 2px;
    border: 1px solid black;
    margin-top: 40px;
}



/* MEDIA QUERIES */


@media (max-width: 1200px) {

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

@media (max-width: 991.98px) {

    .container {
        width: 90%;
    }

    .padding-section {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .header_desktopMenu {
        display: none;
    }

    #project .header_desktopMenu {
        display: block;
    }

    .header_mobielMenu {
        display: block;
    }
    
    .header_menuOverlay {
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        display: block;
        transform: translateX(100vw);
        transition: .5s ease-in-out;
        z-index: 10;
    }

    header ul li {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .c-hero_content p {
        font-size: 50px;
        margin-top: 27vh;
    }

    .c-hero_content p:last-of-type {
        margin-top: 25vh;
    }

    #project header ul li {
        margin-bottom: 0;
    }

    #cross {
        float: right;
    }

    .header_menuOverlay ul {
        display: block;
        margin-top: 100px;
    }

    .toonMenu {
        transform: translateX(0);
    }

    .absolute {
        overflow: hidden !important;
    }

    .c-hero_content {
        height: 50%;
        width: 100%;
        font-size: 2em;
        line-height: 40px;
        padding: 10%;
    }

    .c-about img {
        margin-top: 100px;
    }

    .background {
        margin-top: 100px;
    }

    .c-work_items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    #project p {
        margin-bottom: 100px;
    }

    .project_contact {
        bottom: 20px;
    }

    #project a img:hover {
        transform: scale(1);
    }

}


