/*Stylesheet*/
*{
    font-family: sans-serif;
    margin: 0;
    color: #1A214C;
    
}

html, body{
    margin: 0;
    padding: 0;     
    width: 100%;
    height: 100%;  
    scroll-behavior: smooth;
    
}

a{
    text-decoration: none;
    cursor: pointer;
}

a.button{
    color: white;
    text-decoration: none;
    background-color: #1A214C;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

body.active{
    overflow: hidden;
}
html.active{
    overflow: hidden;
}

.last{
    margin-bottom: 110px;
    padding-bottom: 110px;
}

/*
Animations
*/
.animate-scroll{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.animate-scroll.active{
  transform: translateY(0);
  opacity: 1;
}

.btn_menu.active{
    transform: rotate(0);
}

.btn_menu{
    transition: 0.5s ease all;
    transform: rotate(90deg);
}

/*
Side menu
*/
div.side-menu{
    transform: translateX(10px);
    
    position: fixed;
    
    width: 300px;
    height: 100%;
    
    top:0;
    right: -300px;
    
    transition: 0.5s all ease;
    
    background-color: white;
    
    box-shadow: 0px 0px 5px 2px #1F1F1F;
}
div.side-menu.active{
    transform: translateX(-300px);
}
div.side-menu .bg{
    position: absolute;
    
    width: 100%;
    height: 100%;
        
    background-image: url(background-images/section-2.jpg);
    
    background-repeat: no-repeat;
    background-size: cover;
    
    opacity: 0.05;
}
div.side-menu .menu-inside{
    margin: 0px;
    width: 280px;    
    max-height: calc(100% - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}
div.side-menu span{
    font-size: 35pt;
    cursor: pointer;
}
div.side-menu .menu-inside img{
    
    position: absolute;
    
    bottom: 20px;
    
    left: 20px;
    
    margin: 0;
    
    width: 140px;
}
div.side-menu .menu-inside .menu-btn{
    width: 240px;
    height: 50px;
    margin-left: 50px;
}
div.side-menu .menu-inside .menu-btn a{
    font-size: 20pt;
    
    position: relative;
    
    text-decoration: none;
    
    transition: text-decoration 1s linear 100ms;
    
}
div.side-menu .menu-inside .menu-btn a::after {
    content:'';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1A214C;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    transform: scaleX(0);
}
div.side-menu .menu-inside .menu-btn a:hover::after {
    transform: scaleX(1);
}

/*
HEADER
*/
div.header{
    width: 100%;
    height: auto;
}

div.header div.header-img{
    position: fixed;
    /*background-color: white;
    */
    top: 0;
    left: 10%;
    
    width: 150px;
    height: 50px;
    padding: 15px 20px 20px 15px;
    border-radius: 0 0 30px 30px;
    
    /*box-shadow: 0px 0px 10px 2px grey;*/
         
}

div.header div.header-title{
    position: fixed;
    background-color: white;
    
    top: 0;
    right: 10%;
    
    width: 70px;
    height: 50px;
    padding: 15px 15px 15px 15px;
    border-radius: 0 0 30px 30px;    
    
    box-shadow: 0px 0px 10px 2px grey;
    
    vertical-align: middle;
    
    cursor: pointer;

}

div.header div.header-title span{
    
    font-size: 30pt;
    
    width: 100%;
    height: 100%;
                
    vertical-align: middle;
    text-align: center;
    
    cursor: pointer;
}

@media screen and (max-width: 768px) { 
    div.header div.header-img{
        left: 0;
        border-radius: 0 0 30px 0;       
    }
    div.header div.header-title{  
        right: 0;        
        border-radius: 0 0 0 30px;    
    }
}


/*
SECTION 1
*/
div.section-1{
    position: relative;
    
    width: 100%;
    height: 600px;
}
div.section-1.subpage{
    height: 600px;
}
div.section-1 .bg{
    position: absolute;
    
    width: 100%;
    height: 100%;
        
    background-image: url(background-images/section-1.jpg);
    
    background-repeat: no-repeat;
    background-size: auto 100%;
    
    opacity: 0.4;
    
    animation: section1-bg 3s;
        
    
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
} 
div.section-1 .section-inside{
    
    margin: auto;
        
    width: 100%;
    height: 100%;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.section-1 .section-inside img{
    max-width: 300px;
    width: 100%;
}
div.section-1 .section-inside h3{
    text-align: center;
    color: #1C2146;
    
    animation: section1-title-description 4s;
}
div.section-1 .section-inside span{
    color: #1C2146;
    margin-top: 20px;
    margin-left: 150px;
    margin-right: 150px;
    
    width: 50px;
    
    text-align: center;
    
    font-size: 40pt;
    
    animation: section1-btn-down 4s;
    
    cursor: pointer;
    
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 90,
        'opsz' 48;
    
    transition: font-variation-settings 0.5s;
}
div.section-1 .section-inside span:hover{
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 90,
        'opsz' 48;

}

@keyframes section1-title-description{
    0%{
        opacity: 0;
        margin-top: 40px;
    }
    40%{
        opacity: 0;
        margin-top: 40px;
    }
    100%{
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes section1-btn-down{
    0%{
        opacity: 0;
    }
    80%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes section1-bg{
    0%{
        opacity: 0;
        background-position: center;
        background-size: auto 110%;
    }
    100%{
        opacity: 0.4;
        background-position: left;
        background-size: auto 100%;
    }
}

@media screen and (max-width: 768px) { 
    div.section-1.subpage{
        height: 250px;
    }
    div.section-1 .section-inside{
        width: 300px;
    }
    div.section-1 .section-inside h3{
        font-size: 10pt;
    }
    div.section-1 .section-inside span{
        margin-left: 100px;
        margin-right: 100px;
    }
}

/*
SECTION 2
*/
div.section-2{
    position: relative;
    
    width: 100%;
    height: 200px;
    
    margin-top: 30px;
} 
div.section-2 .section-inside{
    
    margin: auto;

    position: absolute;
    
    width: 80%;
    height: 100%;
    
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border-radius: 20px;
    
    border: 1px solid #1A214C;
    
    /*box-shadow: 0px 0px 5px 2px lightgrey;*/
}
div.section-2 .section-inside .title{
    margin: auto;
    position: absolute;
    
    width: 300px;
    height: 50px;
    text-align: center;
    
    top: 50px;
    left: 0;
    right: 0;
}
div.section-2 .section-inside .description{
    margin: auto;
    margin-top: 10px;
    position: absolute;
    
    width: 90%;
    height: auto;
    text-align: center;
    
    top: 100px;
    left: 0;
    right: 0;
}
div.section-2 .bg{
    
    margin: auto;

    position: absolute;
    
    width: 100%;
    height: 100%;
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border-radius: 20px;
        
    background-image: url(background-images/section-2.jpg);
    
    background-repeat: no-repeat;
    background-size: cover;
    
    opacity: 0.1;
} 

@media screen and (max-width: 768px) { 
    /*Mocht de tekst niet in de vakken passen op telefoon, kan het hier aangepast worden*/
    div.section-2{    
        height: 145px;
    } 
    div.section-2 .section-inside .title{
    
        top: 10px;

    }
    div.section-2 .section-inside .description{
        
        top: 45px;

    }
}

/*
SECTION 3
*/
div.section-3{
    position: relative;
    
    width: 100%;
    height: 300px;
    
    margin-top: 30px;
} 
div.section-3 .section-inside{
    position: relative;
    
    margin-left: auto;
    margin-right: auto;
    
    width: 80%;
    height: 100%;
    
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border-radius: 20px;
    
    /*box-shadow: 0px 0px 5px 2px lightgrey;*/
}
div.section-3 .section-inside  .block{    
    position: relative;
    
    float: left;
        
    width: 48%;
    
    height: 300px;
    
    padding: 0;
    
    margin:0;
}
div.section-3 .section-inside  .block:nth-child(1){
    margin-right: 2%; 
}
div.section-3 .section-inside  .block:nth-child(2){
    margin-left: 2%; 
}
div.section-3 .section-inside .block .block-inside{        
        
    width: 100%;
    height: 300px;
    
    border-radius: 20px;
    
    border: 1px solid #1A214C;
    
    /*box-shadow: 0px 0px 5px 2px lightgrey;*/
}
div.section-3 .section-inside  .block .block-inside .center-icon{
    display: flex; 
    justify-content: center;
}
div.section-3 .section-inside  .block .block-inside .center-icon img{
    width:50px;
    height:50px;
    
    padding: 10px;
    font-size: 40pt;
}
div.section-3 span{  
        
    width:50px;
    height:50px;
    
    padding: 10px;
    font-size: 40pt;
}
div.section-3 h4, div.section-3 p,
div.section-3 h1{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    text-align: center;
}
div.section-3 p {
    overflow: hidden;
    max-height: 90px;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
div.section-3 p iframe{
    border: none;
}
div.section-3 p img{
    width: 29%;
    float: left;
    margin: 2%;
}
div.section-3 .block-button{
    text-align: center;
    position: absolute;
    left: calc(50% - (100px/2));
    display: none;
    bottom: 5px;
}
div.section-3 .block-button.active{
    display: unset;
}

@media screen and (max-width: 768px) { 
    div.section-3{
        height: 630px;
    } 
    div.section-3 .section-inside  .block{
        width: 100%;
    }
    div.section-3 .section-inside  .block:nth-child(2){
        margin-top: 30px;
        margin-left: 0; 
    }
}

/*
Section 4
*/
div.section-4{
    position: relative;
    
    width: 100%;
    height: 350px;
    
    margin-top: 30px;
}
div.section-4 .section-inside{
    margin: auto;

    position: relative;
    
    width: 80%;
    height: 100%;
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border-radius: 20px;
    
    border: 1px solid #1A214C;
}
div.section-4 .section-inside .center-icon{
    display: flex; 
    justify-content: center;
}
div.section-4 h1, div.section-4 h4, div.section-4 p{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    text-align: center;
}
div.section-4 span{
    width:50px;
    height:50px;
    
    padding: 10px;
    font-size: 40pt;
}
div.section-4 .section-inside .block-outside{
    width: 100%;
}
div.section-4 .section-inside .block-outside .block{
    width: 50%;
    min-width: 300px;
    height: 200px;
    float: left;
}
div.section-4 .section-inside .center-icon img{
    width:50px;
    height:50px;
    
    padding: 10px;
    font-size: 40pt;
}
div.section-4 .section-inside .block-outside .block .layout{
    text-align: center;
}
div.section-4 .section-inside .block-outside .block .layout i{
    font-size: 20pt;
    margin: 10px;
}

@media screen and (max-width: 768px) {
    div.section-4{
        height: 550px;
        
    }
    div.section-4 .section-inside .block-outside .block{
        width: 100%;
        height: 200px;
        float: unset;
    }
}

/*
Section 5
*/
div.section-5{
    position: relative;
    
    width: 100%;    
    margin-top: 30px;
}
div.section-5 .section-inside{
    
    margin: auto;
    
    width: 80%;
    
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border-radius: 20px;
    
    border: 1px solid #1A214C;
    
    /*box-shadow: 0px 0px 5px 2px lightgrey;*/
}
div.section-5 .section-inside iframe{
    
    margin: auto;
    
    width: 100%;
    
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    
    border: none;
    
    min-height: 300px;

    /*box-shadow: 0px 0px 5px 2px lightgrey;*/
}

/*
Footer
*/
div.footer {
    width: 100%;
    height: 125px;
    margin-top: 30px;
    position: fixed;
    bottom: 0;
    background-color: white;
    box-shadow: 0px 0px 10px 2px grey;
    transform: translateY(110px);
    transition: 1s ease all;
}
div.footer.show {
    transform: translateY(0) !important;
}
div.footer .section-inside {
    margin: auto;

    position: relative;
    
    width: 80%;
    height: 100%;
    max-width: 1200px;
    min-width: 300px;
    
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
div.footer .section-inside img{
    position: absolute;
    right: 0;
    top: 12.5px;
    height:50px;
}
div.footer .section-inside p{
    position: absolute;
    right: 0;
    top: 70px;
    height:50px;
}
div.footer .section-inside h1, div.footer .section-inside h2, div.footer .section-inside h3, div.footer .section-inside h4, div.footer .section-inside h5, div.footer .section-inside h6{
    position: absolute;
    left: 0;
    top: 30px;
    height:50px;
}

@media screen and (max-width: 768px) {
    div.footer .section-inside h1, div.footer .section-inside h2, div.footer .section-inside h3, div.footer .section-inside h4, div.footer .section-inside h5, div.footer .section-inside h6{
        width: 150px;
        top: 20px;
        font-size: 15pt;
    }
    div.footer .section-inside img{
        height:35px;
    }
}

/*
Agenda
*/
div.agenda{
    position: relative;
    min-height: 120px;
    height: fit-content;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #1A214C;
}
div.agenda h5{
    height: 0;
    color: transparent;
}
div.agenda p.description{
    padding-bottom: 10px;
}
div.agenda .result_form {
    position: absolute;
    top: 5px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
div.agenda a{
    position: relative;
    text-align: center;
}
div.agenda a p{
    float: left;
    padding: 5px;
}
div.agenda b{
    float: left;
    padding: 5px;
}
@media screen and (max-width: 768px) {
    div.agenda h2{
        max-width: 220px;
    }
}

/*
Nieuws
*/
div.nieuws{
    min-height: 100px;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
}
div.nieuws img {
    width:200px;
}
div.nieuws p {
    padding-bottom: 10px;
    border-bottom: 1px solid #1A214C;
    white-space: pre-wrap
}
div.nieuws p a{
    text-wrap:wrap;
}
div.nieuws h5, div.nieuws h2 {
    padding-bottom: 5px;
}

/*
Form
*/

.outer-div{
    width: 100%;
    display: flex;
}
form .half-page{
    min-width: 50%;
}
form label{
    margin-top: 20px;
    font-size: 14pt;
    display: block;
    color: #1A214C;
}
form input, form select, form textarea{
    display: block;
    font-size: 14pt;
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #1A214C;
    width: 250px;
    max-width: 250px;
    min-width: 250px;
    box-sizing: content-box;
}
form h3{
    margin-top: 30px;
}

.switch {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: green;
}

input:focus + .slider {
    box-shadow: 0 0 1px black;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media screen and (max-width: 768px){
    .outer-div{
        width: 90%;
        display: block;
        margin-left: 5%;
        margin-right: 5%;
    }
    form .half-page{
        min-width: 100%;
        
    }
}
/*Window*/
.window{
    width: 90%;
    height: 90%;
    top: calc(50% - 45%);
    left: calc(50% - 45%);
    position: fixed;
    border-radius: 20px;
    background-image: url(../resources/img/skon_nieuwsoverzicht.jpeg?version=2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: white;
    z-index: 10;
    box-shadow: 0px 0px 20px 2px darkgray;
    display: unset;
}
.window a{
    position: relative;
    top: 10px;
    left: 10px;
    font-size: 30pt;
}