/*Default css*/
h1 {
    font-size: ; /*50px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

h2 {
    font-size: ; /*40px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

h3 {
    font-size: ; /*30px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

h4 {
    font-size: ; /*23px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

h5 {
    font-size: ; /*18px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

h6 {
    font-size: ; /*15px*/
    font-family: ;
    font-weight: ;
    font-style: ;
    line-height: ;
    letter-spacing: ;
    color: ;
}

a, abbr, acronym, address, applet, b, big, blockquote, body, button, caption, center,
cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, footer, form, header,
html, i, input, iframe, img, ins, kbd, label, legend, li, link, nav, object, ol, p, pre,
q, s, samp, section, small, span, strike, strong, sub, sup, select, table, tbody, td,
tfoot, th, thead, title, tr, tt, textarea, text, u, ul, var, option {
    font-size: ; /*15px*/
    font-family: ;
    font-weight: ;
    font-style: ;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: none;
}

.lockScroll {
    width: 100%;
    overflow: hidden;
    position: fixed;
}

.full-link-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 2;
    top: 0;
    left: 0;
}

.main-content-wrapper {
    width: 100%;
    position: relative;
    background: white;
    padding-top: 60px;
}

.plate--container {
    width: 100%;
    max-width: unset;
    /*Deze padding is te veranderen per project */
    padding-left: 5%;
    padding-right: 5%;
}

/*Use this class to make element or section full width*/
.none {
    width: 100%;
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
}

.section-container {
    width: 100%;
    /*Deze padding is te veranderen per project*/
    padding-left: 120px;
    padding-right: 120px;
}

.fl-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fl-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.fl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fl-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ai-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* 404 message */
.error-message{
    width: 100%;
    height: 500px;
    z-index: 3;
    margin-top: -276px;
    background: #dddddd;
    position: relative;
    }


/*Navigation styling*/

#navigation {
    width: 100%;
    height: 90px;
    position: relative;
    background-color: #e6e6e6;
}

nav.navbar {
    position: relative;
    height: 100%;

    display: flex;
    flex-flow: row;
}

.navbar-inner{
    position: relative;

    display: flex;
    justify-content: space-between;
}

.navbar-brand {
    height: 80px;
    width: auto;
    position: relative;
    max-width: 20%;
    z-index: 100;
}

.navbar-collapse {
    position: relative;
    width: 80%;
    float: right;
    padding: 20px 0 20px 20px;

    display: flex;
}

.navbar-toggler{
    display: none;
    padding-right: 0px;
    z-index: 100;
}

.dropdown-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: none;
    min-width: 100px;
    padding: 10px 0;
    margin: 0 0 0 0;
    background-color: #fff;
    border: 1px solid #007bff;
    border-radius: .25rem;}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 15px;
    clear: both;
    font-weight: 400;
    color: #007bff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: rgba(0, 123, 255, 0.84);
    text-decoration: none;
    background-color: #ffffff;
}

.bars {
    position: relative;
    height: auto;
    width: 35px;}

.bar {
    width: 100%;
    height: 3px;
    background: #007bff;
    margin-bottom: 5px;

    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;}

.bar.bar-3{
    margin-bottom: 0;}

.menu-open .bars{
    margin: 0;
}

.menu-open .bar-1 {
    transform: rotate(45deg);
}

.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -16px;
}

.menu-open .bar-2{
    opacity: 0;
}

ul.navbar-nav {
    position: relative;
    width: 100%;

    display: flex;
    flex-flow: row;
    justify-content: flex-end;
}

img.logo {
    position: relative;
    height: 100%;
    width: 100%;
}

ul.navbar-nav li {
    padding-right: 20px;
}

ul.navbar-nav li.last{
    padding-right: 0;
}

/* BUTTONS */
.button {
    display: inline-block;
    position: relative;
    min-width: 180px;

    background-color: #e6e6e6;
    border: 1px solid #000000;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.button a {
    position: relative;
    min-width: 100%;
    text-align: center;
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 18px 15px;
    height: 100%;
    z-index: 1;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.button:hover,
.form-field.file:hover .button {
    background-color: #000000;
    border: 1px solid #e6e6e6;
}
.button:hover a,
.form-field.file:hover .button a {
    color: #e6e6e6;
}

/* CONTACTFORM STYLING */

.form-field {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-field--is-active .form-field__control::after {
    color: #000;
    opacity: .8;
    -webkit-transform: scaleX(150);
    -ms-transform: scaleX(150);
    transform: scaleX(150);
}

.form-field--is-active .form-field__label {
    color: #000;
    opacity: .8;
    font-size: 11px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.form-field--is-filled .form-field__label {
    font-size: 11px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.form-field-container .form-field--is-active .form-field__control::after {
    -webkit-transform: scaleX(150);
    -ms-transform: scaleX(150);
    transform: scaleX(150);
}

.form-field-container .form-field--is-active .form-field__label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.form-field-container .form-field--is-filled .form-field__label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.form-field__label {
    display: block;
    font-size: unset;
    font-weight: unset;
    font-family: unset;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    z-index: -1;
    color: unset;
    opacity: .5;
}
.form-field_check_label {
    position: relative;
    margin-bottom: 5px!important;

    display: flex;
    align-items: center;
}
.form-field_check_label span {
    margin-left: 10px;
}

.form-field__control {
    background: #eee;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.form-field__control::after {
    border-bottom: 2px solid rgba(69, 87, 96, 0.48);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 1%;
}

.form-field__input,
.form-field__textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #333333;
    color: #333333;
    display: block;
    margin-top: 24px;
    outline: 0;
    width: 100%;
    z-index: 5;
}

.form-field-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding-top: 24px;
    width: 100%;
}

.form-field-container label {
    position: relative;
    margin-bottom: 10px;
}

.form-field-container input{
    margin-top: 0;
}

.form-field.first label {
    display: block;
}

.form-field.select select{
    padding: 5px;
    border: 1px solid #333333;
}

textarea,
input[type="text"],
input[type="file"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.form-field input[type="file"] {
    padding-left: 0;
    -webkit-appearance: none;
}
.form-field input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}
.form-field input[type="file"]:before {
    content: 'Bestand kiezen';
    display: inline-block;
    padding: 5px 15px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}
.form-field input[type="checkbox"] {
    position: relative;
    -webkit-appearance: none;
    padding: 9px;
    width: 20px;
    height: 20px;
    border: 1px solid #333333;
}
.form-field input[type="checkbox"]:checked {
    color: #99a1a7;
}
.form-field input[type="checkbox"]:after {
    content: '';
    position: absolute;
    width: 20px!important;
    height: 20px!important;
    top: -1px;
    left: -1px;
    background-color: transparent;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-field input[type="checkbox"]:checked:after {
    background-color: #333333;
}

.form-field input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    padding: 9px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #333333;
}
.form-field input[type="radio"]:checked {
    color: #99a1a7;
}
.form-field input[type="radio"]:after {
    content: '';
    position: absolute;
    width: 20px!important;
    height: 20px!important;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    top: -1px;
    left: -1px;
    background-color: transparent;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-field input[type="radio"]:checked:after {
    background-color: #333333;
}


textarea {
    height: 200px;
    min-height: 100px;
    max-height: 350px;
}

input.form-submit {
    background: transparent;
    border: none;
}

.submit-form-btn {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 0;
}

.submit-form-btn input {
    width: 100%;
    font-size: unset;
    line-height: unset;
    letter-spacing: unset;
    font-weight: unset;
    text-transform: unset;
    padding: 15px;
    color: #000000;
    border: 1px solid #ffffff00;
}

.submit-form-btn:hover input {
    color: #e6e6e6;
    background-color: #000000;}

/* post header & home header */
.post-header-wrapper, .home-header-wrapper {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background: #007bff;}

.home-header-wrapper{
    min-height: 800px;
}

.home-header-wrapper .buttons .button:nth-child(1n+2){
    margin-left: 10px;
}

.post-header-wrapper, .home-header-wrapper {
    color: #ffffff;
}

/* post item */
.items-container{
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

.item-wrapper {
    position: relative;
    width: 23.5%;
    background: #e6e6e6;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
    border: 1px solid #000000;
    border-radius: 12px;

    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.item-wrapper:hover{
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.items-container .item-wrapper:nth-child(4n){
    margin-right: 0;
}

.item-wrapper .item-wrapper-inner{
    padding: 15px;
    color: #000000;
}

.item-wrapper .item-wrapper-inner p{
    margin-bottom: 0;
}

.item-wrapper .item-image{
    height: 250px;
    background-position: center center;
    background-size: cover;
}

/* company info */
.company-info svg {
    height: 16px;
    width: 16px;
    color: #007bff;
}

/* menu element */
ul.menu {
    padding: 0 0 0 20px;
}

/* section */
.section{
    position: relative;
}

.section-content{
    position: relative;
    z-index: 3;
}
/* footer */
.footer{
    padding: 100px 0;
    position: relative;
    background: #E6E6E6;
}

@media screen and (max-width: 1400px){

}

@media screen and (max-width: 989px) {
    .plate--container{
        padding-left: 30px;
        padding-right: 30px;
    }
    /* menu */
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse{
        position: absolute;
        top: 85px;
        background: #dddddd;
        left: -110vw;
        width: calc(100% + 60px);
        padding: 30px;
        min-height: 100vh;
        height: auto;
        opacity: 0.5;
        z-index: 99;

        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear;
    }

    .menu-open .navbar-collapse{
        display: block;
        opacity: 1;
        left: -30px;
    }

    .navbar-collapse .navbar-nav {
        flex-flow: column;
    }

    .dropdown-menu{
        display: block;
        background: #ffffff00;
        border: 0;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu .dropdown-item:before {
        content: "- ";
    }

    /* itemwrapper */
    .item-wrapper{
        width: 49%;
        margin-right: 2%;
    }

    .item-wrapper:nth-child(2n){
        margin-right: 0;
    }

    .item-wrapper:nth-child(4n){
        margin-right: unset;
    }

}

@media screen and (max-width: 600px) {
    .navbar-brand{
        max-width: 50%;
    }

    .item-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}
