/*
 * Inhoud
 *
 * -Header
 * -Navigation
 * -Footer
 * -Media
 *  -Navigation
 *  -Watermerk
 *  -Overgang naar mobiel
 *  -Header
 *  -Watermerk
 *  -Hamburger Menu
 *  -Footer
 *  -Buttom Navigation
 * -Search field clear button
 */

body {
    padding-top: 270px;
}

/* Header */
header {
    background: #fff;
    z-index: 2;
    position: fixed;
    top: 0;
    width: 100%;
}
header .logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .logo img {
    height: 80px;
    width: auto;
}

/* Navigation */
.main-navigation {
    margin-left: auto;
}
.top-navigation {
    height: 100px;
    display: flex;
    align-items: center;
}
.nav-open .top-navigation {
    display: none;
}
.top-navigation .nav-item {
    font-weight: normal;
    margin-right: 15px;
}
.top-navigation .nav-item a {
    color: #9C9B9B;
    text-transform: uppercase;
    font-size: 15px;
}
.top-navigation .language-select {
    display: flex;
    margin-left: 40px;
    margin-right: 40px;
}
.top-navigation .language-select .language-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1F1E21;
    width: 28px;
    height: 28px;
}
.top-navigation .language-select .language-flag img {
    height: 10px;
}
.top-navigation .language-select .language-dropdown {
    width: 28px;
    height: 28px;
    border: 1px solid #1F1E21;
    border-radius: 0;
    margin-left: -1px;
}
.top-navigation .btn.search-button {
    width: 28px;
    height: 28px;
    padding: 2px;
}
.top-navigation .btn.search-button img {
    width: 100%;
    height: 100%;
}

.main-navigation .nav .nav-item {
    height: 150px;
    width: 150px;
    border: 1px solid #1f1e21;
    font-weight: normal;
    font-size: 20px;
    text-transform: uppercase;
    transition: .3s;
    position: relative;
    border-collapse: collapse
}
.main-navigation .nav .nav-item.btn-melden {
    border: 1px solid #FF0D00;
    background-color: #FF0D00;
}
.main-navigation .nav .nav-item.btn-melden:hover {
    background: #1f1e21;
}
.main-navigation .nav .nav-item.btn-melden a {
    color: #fff;
}
.main-navigation .nav .nav-item a {
    color: #1F1E21;
    font-size: 20px;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}
.main-navigation .nav .nav-item:hover {
    background: #EDF1F5;
    border-color: transparent;
}
.main-navigation .nav .nav-item:not(:last-child) {
    margin-right: 17px;
}

/* Hamburger Menu */
.nav-open .navbar-collapse {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}
.nav-open .navbar-collapse::after {
    content: "";
    background: #1f1e21;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.nav-open .navbar-toggler {
    position: fixed;
    right: 35px;
    top: 15px;
    height: 70px;
    width: 90px;
    padding: 20px;
}
.nav-open #fullmenu-button {
    z-index: 1;
    margin-left: auto;
    height: 80px;
    display: flex;
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
}
#fullmenu-button {
    height: 80px;
    width: 90px;
    padding: 20px;
    z-index: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.nav-open #fullmenu-button .navbar-toggler-icon {
    display: none;
}
#fullmenu-button .navbar-toggler-times {
    display: none;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}
#fullmenu-button .navbar-toggler-times.hidden-desktop {
    display: none !important;
}
.nav-open #fullmenu-button .navbar-toggler-times {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.nav-open #fullmenu-button .navbar-toggler-times img {
    height: 40px;
}
.navbar-collapse .nav-container {
    width: 1320px;
    z-index: 4;
    display: flex;
}
.navbar-collapse .navbar-nav {
    display: flex;
    justify-content: center;
    z-index: 4;
    width: 50%;
}
.navbar-collapse .navbar-nav .nav-item {
    padding: 5px 20px;
    height: inherit;
}
.navbar-collapse .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
}
.navbar-collapse .navbar-nav .nav-item:hover .nav-link,
.navbar-collapse .navbar-nav .nav-item.btn-melden .nav-link {
    color: #FF0D00;
}
.navbar-collapse .navbar-nav.left .nav-link {
    font-size: 80px;
    line-height: 1;
}
.navbar-collapse .navbar-nav.right .nav-link {
    font-size: 50px;
    line-height: 40px;
}

.navbar-collapse.collapse .wt-mark-1,
.navbar-collapse.collapse .wt-mark-2 {
    z-index: 6;
}

.navbar-collapse.collapse .socials {
    position: fixed;
    bottom: 21px;
    right: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}
.navbar-collapse.collapse .socials a {
    border: 1px solid #707070;
    background-color: #707070;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}
.navbar-collapse.collapse .socials a img {
    width: auto;
    height: 100%;
    padding: 0.5rem;
}

/* Sticky header */
header.sticky {
    height: 80px;
    z-index: 4;
}
header.sticky .main-navigation {
    margin-left: 0;
}
header.sticky .top-navigation {
    display: none;
}
header.sticky .logo {
    display: none;
}
header.sticky .main-navigation .nav .nav-item {
    display: none;
}
header.sticky .main-navigation .nav .nav-item.btn-melden {
    display: flex;
    height: 80px;
}

header.sticky #fullmenu-button {
    display: flex;
    margin-left: auto;
    z-index: 1;
    right: 0;
    top: 0;
}
.nav-open header {
    z-index: 5;
    background: none;
    height: 100px;
    display: flex;
    background: #1f1e21;
}
.nav-open .logo,
.nav-open .main-navigation {
    display: none;
}
header.sticky .wt-mark-1,
.nav-open .wt-mark-1 {
    display: flex;
}
header.sticky .nav-open .wt-mark-1 {
    z-index: 10;
}
header.sticky .wt-mark-1 .call-icon.second,
.nav-open header.sticky .wt-mark-1 .call-icon {
    display: none;
}
.nav-open header.sticky .wt-mark-1 .call-icon.second {
    display: block;
}


/* Body elementen */
.wt-mark-1 {
    display: none;
    align-items: center;
    font-size: 24px;
}
.wt-mark-1 img {
    height: 55px;
}
.wt-mark-1 .call-icon {
    height: 30px;
    margin: 0px 11px 0 16px;
}
.nav-open .wt-mark-1 .call-icon {
    display: none
}
.nav-open .wt-mark-1 .call-icon.second {
    display: flex;
}

.body-items .wt-mark-2 {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 35px 20px;
}
.nav-open .body-items .wt-mark-2 {
    z-index: 10;
}
.body-items .wt-mark-2.mobiel {
    display: none;
}
.body-items .wt-mark-2 p {
    font-size: 18px;
    font-family: 'Teko', sans-serif;
}

/* Buttom navigation */
.bottom-navigation {
    padding: 20px 0;
    justify-content: center;
    background: #fff;
    z-index: 1;
}
.bottom-navigation .footer-nav-item {
    padding: 0 15px;
    font-size: 18px;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #f5f8fa;
    z-index: 1;
}
footer h4 {
    margin-bottom: 20px;
}
.col-contact {
    width: calc(100% / 2 - 100px);
}
.col-links {
    width: calc(100% / 2 - 100px);
}
.col-certification {
    width: 200px;
    display: flex;
    flex-direction: column;
}

.footer-row {
    display: flex;
    margin-bottom: 25px;
}
.footer-row-contact {
    flex-direction: column;
}
.footer-row .footer-content {
    display: inline-block;
}
.footer-row .footer-description {
    margin-left: 48px;
}
.footer-row .footer-icon {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    margin-right: 18px;
    display: inline-block;
}
.footer-row .footer-icon img {
    width: 100%;
}
.footer-row .footer-description p {
    font-size: 15px;
    font-family: 'Roboto';
    margin-bottom: 0px;
}
.footer-row .footer-content h5 {
    font-size: 24px;
}
.footer-row .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
    font-size: 24px;
}
.footer-row .nav-list li {
    font-size: inherit;
    line-height: inherit;
    font-family: 'TekoBold', sans-serif;
    margin-bottom: 15px;
}
.footer-row .footer-list-item a,
.col-contact a {
    text-decoration: none;
    color: #1f1e21;
    line-height: 1.2;
    font-size: 24px;
    display: block;
}
.footer-row .footer-list-item a:hover,
.col-contact a:hover {
    color: #FF0D00;
}

footer .certifications {
    display: block;
}

footer .certifications .outer-img {
    display: block;
    width: 50%;
    float: left;
}
footer .certifications .outer-img:nth-child(odd) {
    padding-right: 20px;
}
footer .certifications .outer-img:nth-child(even) {
    padding-left: 20px;
}

footer .certifications .outer-img img {
    width: 100%;
    height: auto;
    max-width: 80px;
}

footer .socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}
footer .socials a {
    border: 1px solid #1f1e21;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .socials a img {
    width: auto;
    height: 100%;
    padding: 0.5rem;
}

/* Media */
@media (max-width: 1700px) {
    .navbar-collapse.collapse.show .nav-container {
        width: 1140px;
    }
}

@media (max-width: 1500px) {
    /* Navigation */
    .main-navigation .nav .nav-item {
        width: 125px;
        height: 125px;
    }
    .main-navigation .nav .nav-item a {
        font-size: 18px;
    }

    /* Logo */
    header .logo {
        height: 125px;
    }
    header .logo img {
        height: 60px;
    }

    /* Watermerk */
    .body-items .wt-mark-1 {
        top: 22px;
        font-size: 18px;
    }
    .body-items .wt-mark-1 img {
        height: 35px;
    }
    .body-items .wt-mark-1 .call-icon {
        height: 15px;
        margin: 0 6px 0 11px
    }
}

/* Overgang naar mobiel */
@media (max-width: 1260px) {
    body {
        padding-top: 50px;
    }
    /* Header */
    .nav-open header {
        height: 100px;
        background: #1f1e21;
    }
    .top-navigation {
        display: none;
    }
    .main-navigation {
        margin: 0;
    }
    .main-navigation .nav .nav-item {
        display: none;
    }
    .main-navigation .nav .nav-item.btn-melden {
        display: flex;
    }

    .body-items {
        height: 70px;
        min-height: 70px;
    }
    header #fullmenu-button {
        display: flex;
        margin-left: auto;
        height: 125px;
        transition: .5s;
    }
    header.sticky #fullmenu-button {
        height: 80px;
    }

    /* Watermerk */
    .nav-open .body-items .navbar-collapse.collapse {
        z-index: 4;
    }
    .nav-open .body-items .navbar-collapse.collapse::before {
        content: "";
        background: #fff;
        position: fixed;
        left: 0;
        top: 0;
        height: 100px;
        width: 100%;
        z-index: 4;
    }
    .body-items .navbar-collapse.collapse .navbar-toggler {
        z-index: 5;
        height: 100px;
        top: 0;
        right: 100px;
    }
    .nav-open #fullmenu-button .navbar-toggler-icon {
        display: none;
    }
    .nav-open #fullmenu-button .navbar-toggler-times.hidden-mobile {
        display: flex;
        justify-content: center;
    }
    .nav-open #fullmenu-button .navbar-toggler-times.hidden-desktop {
        display: none;
        z-index: 1;
    }
    .body-items .wt-mark-1 .call-icon.second,
    .nav-open .body-items .wt-mark-1 .call-icon.second {
        display: none;
    }
    .nav-open .body-items .wt-mark-1 .call-icon {
        display: block;
    }
    .body-items .btn-primary {
        top: 0;
        width: 100px;
        height: 100px;
        font-size: 18px;
        line-height: 18px;
        z-index: 5;
    }
    #fullmenu-button {
        right: 100px;
        top: 0;
        height: 100px;
        width: 90px;
        padding: 20px;
        z-index: 10;
    }
    #fullmenu-button .navbar-toggler-times {
        display: none;
    }
    .body-items .wt-mark-1 {
        top: 0;
        font-size: 15px;
        height: 100px;
        z-index: 2;
    }
    .nav-open .body-items .wt-mark-1 {
        z-index: 10;
    }
    .body-items .wt-mark-1 img {
        height: 37px;
    }
    .body-items .wt-mark-1 .call-icon {
        height: 20px;
        margin: 0 11px 0 7px;
    }
    .body-items .wt-mark-1 .call-icon.desktop,
    .body-items .wt-mark-2.desktop,
    .navbar-collapse.collapse .wt-mark-2 {
        display: none;
    }
    .body-items .wt-mark-2.mobiel {
        display: flex;
        background: #fff;
        line-height: 40px;
        padding: 0;
        justify-content: center;
        width: 100%;
        z-index: 2;
    }
    .nav-open .body-items .wt-mark-2.mobiel {
        z-index: 10;
    }
    .body-items .wt-mark-2.mobiel p {
        padding: 0 2px;
    }

    /* Hamburger Menu */
    .nav-open .navbar-collapse .nav-container {
        flex-direction: column;
        align-items: center;
    }
    .navbar-collapse .navbar-nav {
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }
    .navbar-collapse .navbar-nav.left .nav-link {
        font-size: 36px;
        line-height: 36px;
        padding: 0;
    }
    .navbar-collapse .navbar-nav.right .nav-link {
        font-size: 25px;
        line-height: 25px;
        padding: 0;
    }

    .navbar-collapse.collapse .socials {
        width: 100%;
        right: 0;
        justify-content: center;
        bottom: 90px;
    }
    .navbar-collapse.collapse .socials a {
        height: 30px;
        width: 30px;
        margin: 7px !important;
    }

    /* Footer */
    footer {
        padding: 40px 0 16px 0;
    }
    footer .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    footer .container > div {
        flex-direction: column;
        align-items: center;
    }
    footer .container > div > div {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .footer-row {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border-bottom: 1px solid;
        margin-bottom: 0;
    }
    footer h4 {
        font-size: 30px;
    }
    footer .footer-row .footer-icon {
        min-width: inherit !important;
        max-width: inherit !important;
    }
    footer .footer-row .footer-icon img {
        width: 26px !important;
        height: 26px;
    }
    footer .col-links,
    footer .col-certification .socials {
        display: none !important;
    }
    footer .footer-row .footer-description {
        margin-top: 10px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 30px;
    }
    footer .footer-content h5 {
        font-size: 22px;
    }
    footer .socials a {
        margin: 4px;
    }
    footer .certification {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    footer .certification span {
        height: 54px;
        width: 54px;
        margin: 5px !important;
    }
    footer .col-certification {
        margin-top: 26px;
        line-height: 26px;
    }
    footer .col-certification .socials {
        display: flex!important;
    }

    /* Buttom Navigation */
    .bottom-navigation {
        padding: 20px 0 60px 0;
    }
    .bottom-navigation .footer-nav-item {
        padding: 0 5px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    header.sticky #fullmenu-button {
        height: 80px;
        width: auto;
    }
    .wt-mark-1 .call-icon {
        height: 20px;
    }
    .wt-mark-1 a {
        font-size: 22px;
    }
}

@media (max-height: 600px) {
    .navbar-collapse.collapse .socials {
        display: none;
    }
    .nav-open .body-items .navbar-collapse.collapse {
        z-index: 4;
        margin-top: 110px;
        margin-bottom: 50px;
        overflow: scroll;
        padding: 220px 0 200px 0;
    }
}

/* Search field clear button */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }