/* font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--font1);
}

:root {
    --font1: 'Work Sans', sans-serif;

    --grey: #F5F5F5;
    --textlight: #C0C0C0;
    --textdark: #666666;
    --blue: #13B0C4;
    --green: #99C339;
}

/* nav */
.burgerOpen {
    display: none;
}

.burgerClose {
    display: none;
}

.mobileMenu {
    display: none;
}

/* topbar */
.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.topbar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
}

.topbar_inner .left img {
    width: 590px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: -4px;
    background-color: var(--grey);
}

.navbar_inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    width: 100%;
    max-width: 1185px;
}

.navbar_inner a {
    padding: 25px 15px;
    font-size: 25px;
    text-decoration: none;
    font-family: var(--font1);
    color: var(--textdark);
}
.navbar_inner a:hover{
    font-weight: bold;
}

/* banner */

.banner img.wave {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 1;
    width: 100%;
    height: 3vw;
    margin-top: -4px;
}

.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.banner_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 60px 0;
    max-width: 1200px;
    padding: 0 20px;
}

.banner_inner div {
    max-width: 48%;
    min-width: 48%;
}

.banner_inner h1 {
    font-family: var(--font1);
    margin-top: 20px;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.473);
}

.banner_inner .right {
    color: #fff;
    font-size: 25px;
}

.banner_inner .right a {
    color: rgba(255, 255, 255, 0.781);
    text-decoration: none;
}

.banner_inner .title {
    margin-top: -30px;
    min-width: 100%;
    font-size: 55px;
    color: #fff;
    line-height: 2.1;
}

/* watdoenwij */
.watdoenwij {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.watdoenwij_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 500px;
    width: 100%;
    max-width: 100%;
}

.watdoenwij_inner .left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    max-width: 50%;
    padding: 50px;
    height: 500px;
    background-color: var(--green);
}

.watdoenwij_inner .left h1 {
    color: var(--textdark);
    font-size: 30px;
}

.watdoenwij_inner .left p {
    font-size: 20px;
    color: var(--textdark);
}

.watdoenwij_inner .left a {
    padding: 10px;
    background-color: none;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}

.watdoenwij_inner .right {
    object-fit: cover;
    min-width: 50%;
    max-width: 50%;
    min-height: 100%;
}

/* contact */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--textdark);
    width: 100%;
}

.contact_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0px 0 50px 0;
}
.contact_inner a{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.contact_inner a:hover{
    color: var(--textlight);
    transition: all 0.3s ease-in-out;
}

.contact_inner div {
    display: flex;
    flex-direction: column;
    max-width: 45%;
    min-width: 45%;
    font-size: 25px;
}

.contact_inner .left {
    color: #fff;
}

.contact_inner .right {
    color: #fff;
}

.contact_inner .right a {
    color: rgba(255, 255, 255, 0.781);
    font-size: 25px;
    text-decoration: none;
}

.maps {
    min-width: 60%;
    margin-bottom: 50px;
    height: 500px;
}


/* diensten */
.diensten {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--blue);
}

.diensten_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 0 50px 0;
}

.diensten_inner p {
    color: #fff;
    font-size: 25px;
}

.items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

.items_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.item_block {
    max-width: calc(100% / 5 - 20px);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}
.items_inner a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    max-width: calc(100% / 5 - 20px);
}

/* werkzaamheden */
.werkzaamheden {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.werkzaamheden_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.werkzaamheden_item {
    font-size: 25px;
    margin-bottom: 20px;
}


/* details */
.detail{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 50px 0;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.detail_inner{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    background-color: #13afc4e0;
    padding: 20px;
    color: #fff;
    font-size: 22px;
}


/* footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: var(--grey);
}

.footer_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

.footer_inner p {
    font-size: 18px;
    color: var(--textdark);
}

.footer_inner a {
    text-decoration: none;
}



/* responsive */

@media only screen and (max-width: 1150px) {
    .topbar_inner .left img {
        width: 390px;
    }

    .topbar_inner .right img {
        width: 200px;
    }
}

@media only screen and (max-width: 1000px) {
    .banner_inner {
        flex-direction: column;
        justify-content: center;
    }

    .banner_inner div {
        min-width: 100%;
        max-width: 100%;
    }

    .banner_inner h1 {
        margin-bottom: 20px;
        font-size: 40px;
    }

    .banner_inner .right {
        font-size: 20px;
    }

    .banner img.wave {
        height: 10vw;
    }

    .banner_inner img {
        width: 300px;
    }
    .banner_inner .title{
        margin-top: 20px;
    }

    /* .items */
    .items_inner {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .item_block {
        max-width: 50%;
        min-width: 50%;
        text-align: center;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 910px) {
    .footer_inner {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .werkzaamheden_inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .werkzaamheden_item {
        width: 100% !important;
    }
    
.contact_inner b{
    margin-top: 20px;
}
}

@media only screen and (max-width: 800px) {
    .topbar_inner .left img {
        display: none;
    }

    .topbar_inner .right img {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    /* contact */
    .contact_inner {
        flex-direction: column;
    }

    .contact_inner div {
        min-width: 100%;
        max-width: 100%;
    }

    .contact_inner div {
        font-size: 18px;
    }

    .maps {
        min-width: 100%;
    }

    .banner .title {
        line-height: 1;
    }

    /* .watdoenwij */

    .watdoenwij_inner {
        flex-direction: column;
    }

    .watdoenwij_inner .left {
        max-width: 100%;
    }

    .watdoenwij_inner .right {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .item_block {
        max-width: 100%;
        min-width: 100%;
    }
}


@media only screen and (max-width: 910px) {
    .items_inner a{
        max-width: calc(100% / 3 - 20px);
    }
}
@media only screen and (max-width: 600px) {
    .items_inner a{
        max-width: calc(100% / 2 - 20px);
    }
}
@media only screen and (max-width: 450px) {
    .items_inner a{
        max-width: 100%;
    }
}

/* mobileMenu */
@media only screen and (max-width: 900px) {

    /* navbar */
    .navbar {
        display: none;
    }

    .burgerOpen {
        display: block;
    }

    .burgerClose {
        display: block;
    }

    .mobileMenu {
        display: block;
    }

    .burgerClose i {
        display: none;
        position: fixed;
        top: 30px;
        right: 30px;
        font-size: 50px;
        color: var(--lichtgroen);
        z-index: 11;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .burgerClose i:hover {
        color: var(--groen);
        transition: all 0.3s ease-in-out;
    }

    .burgerOpen i {
        display: block;
        position: fixed;
        top: 30px;
        right: 30px;
        font-size: 50px;
        color: #000;
        mix-blend-mode: multiply;
        z-index: 2;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .burgerOpen i:hover {
        color: var(--groen);
        transition: all 0.3s ease-in-out;
    }

    .mobileMenu {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: 100vh;
        background: var(--blue);
        z-index: 10;
    }

    .mobileMenuInner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100%;
    }

    .mobileMenuInner div a {
        color: #fff;
        font-size: 30px;
        padding: 0px 20px;
        font-family: var(--font1);
        font-weight: bold;
        text-decoration: none;
        transition: 0.3s ease-in-out;
    }

    .mobileMenuInner div a:hover {
        color: var(--groen);
        transition: 0.3s ease-in-out;
    }
}