*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.hide{
    display: none;
}

::selection{
    background-color: #caa793;
    color: black;
}
h1{
    font-family: 'Cardo', serif;
    
    
    

    
}
.home{
    display: flex;
    flex-direction: column ;

}
.titel-gallerij{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
@media(max-width:768px){
    .titel-gallerij{
        margin-top: 500px;
    }
}


.titel-gallerij h2{
    font-size: 36px;
    font-family: 'Cardo', serif;
    font-weight: 600;
}
.container{
    max-width: 1224px;
    width: 90%;
    margin: auto;
    padding: 40px;
    display: block;
}
.title{
    margin-bottom: 2rem;
}

.photo-gallery{
    display: flex;
    gap: 20px;

}

.column{
    display: flex;
    flex-direction:column ;
    gap: 20px;
}
.photo img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

@media(max-width:768px){
    .photo-gallery{
        flex-direction: column;
    }
    .groot{
        height: 400px;
    }
}








.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,5,6,0.5),rgba(4,5,6,0.5)), url(images/voorfoto.png);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:#caa793;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;

}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
   

}
.text-box h1{
    font-size: 102px;
    font-family: 'Cardo', serif;
    font-weight: 540;
    animation: reveal 1.5s ;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 24px;
    color: #fff;
    font-family: 'Cardo', serif;
    line-height: 45px;
    animation: reveal 1.5s ;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 3px solid ;
    background: transparent;
    transition: 0.1s;
}

nav .fa{
    display: none;
}

@media(max-width:700px){
    .text-box h1{
        font-size: 50px;
    }
    .text-box p{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background-color: #997b72;
        background-size: cover;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }
    .nav-links ul{
        padding: 30px;
    }
}







.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    display: flex;
    

}
.waarom{
    text-align: center;

}
.course div{
    width: 100%;
    height: 250px;
}
.course div img{
    height: 300px;
    width: 100%;
    
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 16px;
    font-weight: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;

}
.course-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;

}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
@media(max-width:700px){
    .row{
        flex-direction: column;
    }
}





.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
    width: 100%;
    display: block;
}
.layer{
    background:transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0.;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(226,0,0,0.7);

}
.layer h3{
    width: 100%;
    font-weight:500 ;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}





.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.facilities-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities-col img{
    width: 100%;
    border-radius: 10px;
}

.facilities-col p{
    padding: 0;
    
}

.facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}






.waarom p{
    font-size: 20px;
}

.testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}
.testimonials h1{
    display: flex;
    margin-top: px;
    margin-bottom:0;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    
}
.testimonial-col h3{
    margin-bottom: 50px;
    text-align: center;

}
.testimonial-col{
    margin: 0;
}

.row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-left: 200px;
    margin-right: 200px;
}
.speciaalteken{
    font-size: 100px;
    margin: 0;
}
.row p{
    text-align: center;
    font-size: 24px;
}
.waarom{
    margin-bottom: 0;
}
@media(max-width:600px){
    .row{
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media(max-width:1000px){
    .row{
        margin-left: 200px;
        margin-right: 200px;
    }
}






.cta{
    margin: 100px auto;
    width: 80%;
    background-image:  url(images/contactusprobeerfoto.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;

}
.cta h1{
    color:#fff ;
    margin-bottom: 40px;
    padding: 0;

}
@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}








.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;

}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: black;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}








.sub-header{
    height: 50vh;
    width: 100%;
    background-image:linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(images/voorfoto4.png) ;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 80px;
}



.red-btn{
    border: 4px solid #caa793;
    background: transparent;
    color: #caa793;
    font-size: 20px;
    font-weight: 20px;
    transition: 0.5s;

}
.red-btn:hover{
    background-color: #caa793;
    color: white;
    border: 4px solid #caa793;
    transition: 0.5s;
}
.over-ons{
    display: flex;
    flex-direction: column;
}
.wie{
    display: flex;
    flex-direction: row;
}
.wie-foto{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
}
.wie-foto-foto{
    width: 600px;
}
.wie-tekst{
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px;
    
   
}

    


.waarin{
    display: flex;
    flex-direction: row;
}
.waarin-foto{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
   
}
.waarin-foto-foto{
    width: 600px;
}
.waarin-tekst{
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px;
}

.waarin2{
    display: flex;
    flex-direction: row;
}
.waarin-foto2{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
   
}
.waarin-foto-foto2{
    width: 600px;
}
.waarin-tekst2{
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px;
    text-align: center;
}
.waarin2{
    display: none;
}

.wie-tekst, .waarin-tekst, .waarin-tekst2 h3 {
    font-size: 28px;

}


    


.wie-tekst  p{
    font-size: 20px;
}
.waarin-tekst2 p{
    font-size: 20px;
}
.waarin-tekst p{
    font-size: 20px;
}
@media(max-width:1100px){
    .waarin{
        display: none;
    }
    .wie{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center; 
    }
    .waarin2{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .wie-tekst{
        text-align: center;
    }
   
}
@media(max-width:700px){
   
    .wie-foto-foto{
        width: 130%;
    }
    .waarin-foto-foto2{
        width: 130%;
    }
    .wie-tekst{
        width: 80%;
    }
    .waarin-tekst2{
        width: 80%;
    }
    .titel-gallerij {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 90px;
    }
}





 











.location{
    width: 100%;
    margin-top: 50px;
    
    margin-bottom: 0px;
    
}
.location iframe{
    width: 100%;
}

.brievenbus{
    width: 30px;
    margin-right: 20px;
}


.info{
    margin-top: 70px;
}

@media (max-width:500px){
    .titel-gallerij{
        margin-top: 220px;
    }
}
@keyframes reveal {
    0% {
      transform: translate(0,100%);
    }
    100% {
      transform: translate(0,0);
    }
  }
  @keyframes reveal {
    0% {
      transform: translate(0,100%);
    }
    100% {
      transform: translate(0,0);
    }
  }

  .contact{
    display: flex;
    flex-direction: row;
  }
 
  .contact-links{
    background-color: white;
    width: 40%;
    height: 600px;
    margin: 20px;
    margin-left: 70px;
    margin-top: 100px;
  }
.gegeven1  {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 50px;
}
.gegeven2  {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 50px;

}
.gegeven3  {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 50px;
}
.gegeven1 img, .gegeven2 img, .gegeven3 img{
    margin-right: 30px;
    width: 85px;

}
.gegeven1 p , .gegeven2 p, .gegeven3 p{
    font-size: 18px;
}
.contact-info{
    display: flex;
    flex-direction: column;
}
.titel-links p{
   margin-top: 30px;
    padding: 0;

}
.contact-rechts{
    background-color:rgba( 202, 167, 147, 0.4);
   
    width: 50%;
    height: 700px;
    margin: 20px;
    margin-right: 70px;
    margin-top: 100px;
    padding: 40px;
}
.titel-rechts p{
    padding: 0;
    margin-top: 20px;
}
.bericht1, .bericht2, .bericht3{
    display: flex;
    justify-content: center;
}
input{
   
    border: hidden;
    height: 50px;
    padding: 10px;
    
    
   
    width: 400px;
}

.input-naam{
    margin-right: 10px;
    margin-top: 50px;
}
.input-telefoon{
    margin-right: 10px;
    margin-top: 30px;
}
.input-onderwerp{
    margin-left: 10px;
    margin-top: 30px;
}
.input-mail{
    margin-left: 10px;
    margin-top: 50px;

}
.bericht{
    width: 100%;
    margin: 0;
    margin-top: 30px;
    border: hidden;
    padding: 10px;
}
.knop{
    width: 200px;
    height: 40px;
    background-color: #6c463e;
    border: hidden;
    color: white;
    font-size: 20px;
    margin-top: 30px;
}
.knop:hover{
    color: #6c463e;
    background-color:transparent ;
    border: solid;
    border-width: 1px;
    border-color: #6c463e;
}
.break{
    display: none;
}
@media(max-width:1000px){
    .contact{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
   .contact-links{
    width: 80%;
    margin: 0;
    margin-top: 100px;
   }
   .contact-rechts{
    width: 80%;
    margin: 0;
    margin-top: 80px;
   }
    
}
@media(max-width:600px){
    .bericht1, .bericht2, .bericht3{
        display: flex;
        flex-direction: column;
    }
    .input-mail{
        margin-left: 0;
        margin-top: 30px;

    }
    .input-onderwerp{
        margin-left: 0;

    }
    input{
        width: 100%;
    }
    .contact-rechts{
        margin-top: 180px;
        height: auto;
    }


}
@media(max-width:345px){
    .contact-rechts{
        margin-top: 300px;
    }
    .knop{
        width: 150px;
    }
  

}

@media(max-width:400px){
      .break{
        display: flex;
    }
}

.titelopfoto h1 {
    font-size: 50px;
    
}
.ontwerp{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    
    
}
.ontwerp1{
    width: 50%;
    height: 50vh;
   
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    
}
.ontwerp1 h1{
    font-size: 50px;
}
.ontwerp1 p{
    font-size: 20px;
}
.ontwerp2{
    width: 50%;
    height: 50vh;
    
   
    object-fit: cover;
    
    overflow: hidden;
}
.ontwerp2 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.snijplank{
    margin-top: 0px;
display: flex;
justify-content: center;
flex-direction: column;

}
.titel-snijplank{
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    

}
.titel-snijplank2{
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    

}

.titel-snijplank h1{
    font-size: 55px;
}
.titel-snijplank2 h1{
    font-size: 55px;
}
.content-snij{
    display: flex;
    align-items: center;
    justify-content: center;
}
.content{
    width: 50%;
    height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    
    text-align: center;
    line-height: 60px;
    padding: 50px;
    
    
}
.content p{
    line-height: 25px;
    margin-top: 50px;
}

.snij{
    width: 50%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content2{
    width: 50%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 200px;
}
.snij2{
    width: 50%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    
}
.versus{
    display: flex;
justify-content: center;
align-items: center;

}
.kopshout{
    display: flex;
justify-content: center;
align-items: center;
}
.centerkop{
    text-align: center;
}
.centerkop h1{
    margin-bottom: 20px;
}
.plusmin{
    display: flex;
    align-items: center;
}
.content3{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    margin-top: 180px;
    padding: 40px;
}
.snij3{
    width: 100%;
    height: auto;
    margin-top: 180px;
    margin-bottom: 100px;
    overflow: hidden;
    padding: 30px;
    
}
.k3{
    display: flex;
}
.snij3 img{
    height: 100%;
    width: 100%;
    
}
.tapas121{
    display: flex;
    flex-direction: row;

}
.tapas122{
    display: flex;
    flex-direction: row;
}
.tapa1{
    width: 50%;
    height: 50vh;
    overflow: hidden;
    padding: 30px;

}
.tapa2{
    width: 50%;
    height: 50vh;
    padding: 40px;
    margin-bottom: 100px;
    

}
.tapa1 img{
    height: 100%;
    width: 100%;
}
.over{
    width: 50%;
    height: 50vh;
    padding: 50px;

}
.bestel{
    width: 50%;
    height: 40vh;
    padding: 40px;
    background-image: url(images/contactusprobeerfoto.jpg);
    background-size: cover;
    border-radius: 10px;
    margin: 50px;
    text-align: center;
    
}
.overtuigen{
    display: flex;
}
.bestel img {
    width: 100%;
    height: 100%;
}
.bestel h1{
    color: white;
    margin-bottom: 50px;
    margin-top: 30px;
}
@media(max-width:1200px){
    .ontwerp{
        justify-content: normal;
        align-items: center;
        flex-direction: column;

    }
    .versus{
        justify-content: normal;
        align-items: center;
        flex-direction: column;
    }
    .kopshout{
        justify-content: normal;
        align-items: center;
        flex-direction: column-reverse;
    }
    .k3{
        justify-content: normal;
        align-items: center;
        flex-direction: column;
    }
    .tapas121{
        justify-content: normal;
        align-items: center;
        flex-direction: column-reverse;
    }
    .tapas122{
        justify-content: normal;
        align-items: center;
        flex-direction: column;
    }
    .overtuigen{
        justify-content: normal;
        align-items: center;
        flex-direction: column;
    }

.ontwerp1, .ontwerp2, .content, .snij,
.content2,
.snij2,
.tapa1,
.tapa2,
.over,
.bestel{
    width: 100%;
}
.titel-snijplank{
    margin-bottom: 0;
    margin-top: 100px;
}
.titel-snijplank2{
    margin-bottom: 0;
    margin-top: 100px;
}

.koptekst{
    padding: 30px;
    padding-bottom: 0;
    
}
.plusmin{
    padding: 30px;
    padding-top: 0;
}
.content3{
    padding: 0;
}
.snij3 img{
    width: 55%;
    height: 55%;
}
.snij3{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
}
.tapa2{
    height: 30vh;
    margin-top: 30px;
}
.tapa1 img{
    width: 50%;
    height: 90%;
}
.tapa1{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bestel{
    width: 70%;
    margin-top: 0;
}
.snij3 img {
    width: 75%;
    height: 55%;
}
.tapa1 img {
    width: 70%;
    height: 90%;
}

}
@media(max-width:650px){

    .snij img{
        width: 90%;
    }
    .ontwerp2 img{
        width: 90%;
    }
    .ontwerp2{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .content2 img{
        width: 90%;
    }
    .snij3 img{
        width: 90%;
    }
    .content3{
        height: 65vh;
    }
    .tapa1 img{
        width: 90%;
    }
    .tapa2{
        height: 40vh;
    }
    .over{
        height: 75vh;
    }
 

}
@media(max-width:400px){
    .titel-snijplank{
        height: 30vh;
        margin-bottom: 40px;
        margin-top: 0;
        
    }
    .titel-snijplank2{
        height: 15vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
   
   .content2{
    margin-top: 270px;
   }
   .content3{
    margin-top: 60px;
   }
   .snij3 img{
    margin-top: 100px;
   }
   .tapa2{
    margin-top: 0;
   }
   .over{
    height: 90vh;
   }
   .bestel{
    height: 350px;
   }
   .hide{
    display: flex;
   }
   .titel-snijplank2{
    padding: 20px;
    text-align: center;
   }
}






