html {
    position: relative;
    width: 100%;
    height: 100%;
}

@font-face{
    font-family: 'SinkinSans';
    font-weight: 300;
    src: url(../fonts/SinkinSans-300Light.otf);
}
@font-face{
    font-family: 'SinkinSans';
    font-weight: 400;
    src: url(../fonts/SinkinSans-400Regular.otf);
}
@font-face{
    font-family: 'SinkinSans';
    font-weight: 600;
    src: url(../fonts/SinkinSans-600SemiBold.otf);
}
@font-face{
    font-family: 'SinkinSans';
    font-weight: 700;
    src: url(../fonts/SinkinSans-700Bold.otf);
}
@font-face{
    font-family: 'SinkinSans';
    font-weight: 800;
    src: url(../fonts/SinkinSans-800Black.otf);
}

body {
    height: 100%;
    float: left;
    background: #f8f7f9;
    font-family: 'SinkinSans';
}

#wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#pageContainer {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top: -150px;
    padding-top: 150px;
    padding-bottom: 0;
    overflow-x: hidden;
    box-sizing: content-box;
}

header{
    position: relative;
    width: 100%;
    background-color: #fff;
    background-image: url(../images/background.svg);
    background-size: 100px 100px;
}

footer{
    position: relative;
    padding: 20px 0;
    background-color: #fff;
    color: #757485;
    line-height: 1.4rem;
    font-size: 0.80rem;
}

footer h4{ line-height: 1.4rem;}

/********************************/
/**************Divs**************/
/********************************/

.logo{
    margin: 20px auto;
    height: 60px;
}

.nieuwsItem{
    position: relative;
    margin: 20px 0 0 0;
    font-size: 0.8rem;
}

.nieuwsItem span{
    display: block;
    color: #b5b5c2;
}

.nieuwsItem::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: #757485;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.6s;
}

.nieuwsItem:hover::after{
    transform: scaleX(1);
    opacity: 1;
}

.linkImage{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.linkImage .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.linkImage .bar{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(117, 116, 133, 1);
    mix-blend-mode: multiply;
    transition: all 0.4s;
    z-index: 2;
}

.linkImage .txt{
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: transparent;
    color: #fff;
    text-shadow: 0 0 6px #000;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.4s;
    z-index: 3;
}

.linkImage:hover .txt, .linkImage:hover .bar{
    height: 100%;
}

.linkImage svg{
    transition: all 0.4s;
}

.linkImage:hover svg:first-of-type{
    transform: translateX(5px);
}

.linkImage:hover svg:last-of-type{
    transform: translateX(-5px);
}

.social{
    margin: 10px 5px 0 0;
}

.social svg{
    transition: all 0.15s;
}

.social:hover svg{
    filter: invert(1);
}

#legalFooter{
    padding: 10px 0;
    background-color: #3c3b44;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 300;
}

/********************************/
/**********Other Pages***********/
/********************************/

/********************************/
/**************Menu**************/
/********************************/

#nav{
    position: relative;
    width: 100%;
    background-color: #fff;
    text-align: center;
    z-index: 14;
}

#nav > ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav > ul > li{
    display: inline-block;
    position: relative;
    margin: 0 18px 0 0;
    color: #b5b5c2;
    line-height: 50px;
    font-size: 0.85rem;
}

#nav > ul > li:hover{
    color: #757485;
}

#nav > ul > li > ul{
    display: none;
    position: absolute;
    left: 0;
    top: 38px;
    margin: 0;
    padding: 5px 7px;
    background-color: rgba(255, 255, 255, 0.85);
    line-height: normal;
    white-space: nowrap;
    list-style: none;
}

#nav > ul > li:hover > ul{
    display: block;
}

#nav > ul > li > ul > li{
    padding: 3px 0;
    color: #fff;
}

#nav > ul > li svg{
    transition: all 0.4s;
}

#nav > ul > li:hover svg:first-of-type{
    transform: translateX(3px);
}

#nav > ul > li:hover svg:last-of-type{
    transform: translateX(-3px);
}

/********************************/
/**************Heads*************/
/********************************/

h1{
    margin-bottom: 1.5rem;
    color: #757485;
    font-size: 1.2rem;
    font-weight: 700;
}

h2{
    color: #757485;
    font-size: 1.2rem;
    font-weight: 700;
}

h4{
    margin: 0;
    color: #b5b5c2;
    font-size: 0.80rem;
    font-weight: 600;
}

/********************************/
/************Paragraphs**********/
/********************************/

p{
    font-size: 0.80rem;
}

/********************************/
/**************Buttons***********/
/********************************/

a, a:hover, a:link, a:visited, a:link:active, a:visited:active{ 
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.linkButton, a.linkButton:link, a.linkButton:visited, a.linkButton:link:active, a.linkButton:visited:active{
    display: flex;
    height: 100%;
    min-height: 46px;
    padding: 4px;
    background-color: #e5e9ed;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.80rem;
    transition: 0.25s;
}

a.linkButton:hover{
    background-color: #b7b7b7;
}

/********************************/
/**************Sliders***********/
/********************************/

#headerSlider{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 1;
}

#headerSlider > div{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: 1s;
    z-index: 1;
}

.headerSliderBars::before{
    content: "";
    display: inline-block;
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
}

.headerSliderBars::after{
    content: "";
    display: inline-block;
    position: absolute;
    right: -50px;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
}

#headerSlider > section{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

#headerSlider .ctrl{
    display: flex;
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    color: #3c3b44;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    cursor: pointer;
}

#headerSlider .ctrl.left{
    left: 0;
}

#headerSlider .ctrl.right{
    right: 0;
}

#headerSlider .ctrl svg{
    transition: all 0.25s;
}

#headerSlider .ctrl:hover svg{
    transform: scale(1.1);
}

/********************************/
/********************************/
/********************************/

.background{
    background-position: center;
    background-size: cover;
}

.white{
    background-color: #fff;
}

.gray{
    background-color: #e8e8ec;
}

.news_item h2 {
    font-size: 14px;
    margin-bottom: 5px;
}

.news_item p {
    margin: 0 0 -20px 0;
}

.news_item a {
    font-size: 12px !important;
}

.news_item {
    width: 100%;
    margin-bottom: 20px;
}

.contentBox a {
    text-decoration: underline;
    color: #757485;
}

.contentBox a:hover {
    color: #000000;
}

.gallery_thumb {
    float: left;
    margin: 0 0 30px 0;
}

.gallery_thumb img {
    max-width: 100%;
}

@media only screen and (max-width: 991px) {
    
    #nav{
        position: relative;
        width: 100%;
        z-index: 14;
    }

    #nav > ul{
        margin: 0;
        padding: 0;
        height: 0;
        list-style: none;
        overflow: hidden;
    }

    #nav > ul > li{
        display: list-item;
        position: relative;
        margin: 0;
        width: 100%;
        color: #b5b5c2;
        text-align: center;
        line-height: 35px;
        font-size: 0.90rem;
    }

    #nav > ul > li:hover{
        color: #757485;
    }

    #nav > ul > li > ul{
        display: block;
        position: static;
        left: 0;
        top: 0;
        margin: 0;
        height: 0;
        padding: 0;
        background-color: transparent;
        line-height: 30px;
        white-space: nowrap;
        list-style: none;
        overflow: hidden;
    }

    #nav > ul > li:hover > ul{
        display: block;
    }

    #nav > ul > li > ul > li{
        display: list-item;
        margin: 0;
        width: 100%;
        padding: 0 0;
        color: #023a78;
        text-align: center;
        font-size: 0.80rem;
    }
    
    #but-menu{
        margin: 10px auto;
        width: 32px;
        height: 32px;
        cursor: pointer;
        transform: 0.25s;
    }
    
    #but-menu:hover{
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 767px) {
    
    .linkImage .txt{
        font-size: 14px;
    }
    
}

@media only screen and (max-width: 576px) {
    
}

@media only screen and (max-width: 400px) {
    
}