
/*BASIS-CSS*/

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    background-color: whitesmoke;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

ul{
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.personen{
    display: inline-block;
}
          /*titel pagina*/
h1.begintitel{
    width: 60%;
    margin:auto;
    padding-top: 60px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
          /*div voor pagina te bewerken*/
div.standaardinfo{
    
    text-align: center;
    
}

div.spatie{
    height: 260px;
}

div.grotespatie{
    height: 100vh;
}
div.spatienavbar{
    height: 50px;
    background-color: white;
}






/*NAVBAR*/


            /*ul*/
ul.nav{
    font-weight: bold;
    display: flex;
    list-style-type: none;
    position: fixed; /* Set the navbar to fixed position */
    top: 0;
    width: 100%;
    background-color: whitesmoke;
    z-index:300;
    background-color: rgba(209, 209, 209, 0.9);
    transition: top 0.3s;
}
             /*tekst*/
a{
    color:rgba(0, 0, 0, 0.719);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    
}

a:hover{
    color: black;
}


            /*logo trekhaak*/
li.logo{
    background-image: url(foto/logo.png);
    background-size: 80px;
    display: flex;
    height: 42px;
    position: relative;
    top: -10px;
    text-indent: -99999px;
    width: 80px;
    margin-top: 10px;
    
}

           /*geometrie*/
li.navv{
    margin-right: 100px;
    margin-top: 15px;
    width: 100%;
}
.nav li:first-child{
    margin-left: 120px;
    margin-right: 140px;
}

.nav li:last-child{
    margin-right: 50px;
}




nav{
    font-weight: bold;
    position: fixed; /* Set the navbar to fixed position */
    top: 0;
    width: 100%;
    height: 60px;
    z-index:300;
    background-color: rgba(209, 209, 209, 0.9);
  }
  
  nav ul{
    float: right;
    margin-right: 0px;
  }
  nav ul li{
    display: inline-block;
    line-height: 60px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0 5px;

  }
  nav ul li a{
    color: rgb(41, 41, 41);
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  nav ul li a:hover{
      color: black;
  }
 
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 60px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media(max-width: 100000px){
      label.logo{
          padding-left: 50px;
      }
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
      label.logo{
          font-size: 30px;
      padding-left: 50px;
      }
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 55px;
      left: -300%;
      z-index: 400;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    
    #check:checked ~ ul{
      left: 0;
    }
  }


           /*button logo*/
button {
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden; 
    outline:none;    
  }
  
  button #logo {
    background-image: url(foto/logo.png);
    background-size: 80px;
    background-repeat: no-repeat;
    display: flex;
    height: 42px;
    position: relative;
    top: -10px;
    text-indent: -99999px;
    width: 80px;
    margin-top: 10px;
    margin-right: 50px;
    
  }

/*HEADER_PAGINA*/
/* css voor fading 4 afbeeldingen */
.responsive{
    width: 100%;
    height: auto;
    
}

.slide1,.slide2,.slide3{
    position: absolute;
    width: 100%;
    height: 100%;
    
  }
  .slide1{
    background-image: url(foto/trekhaak1.png);
    background-repeat: no-repeat;
    background-size: 100%;
    animation: fade1 12s infinite;
  }
  .slide2{
    background-image: url(foto/trekhaak2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    animation: fade2 12s infinite;
  }
  .slide3{
    background-image: url(foto/trekhaak3.png);
    background-size: 100%;
    background-repeat: no-repeat;
    animation: fade3 12s infinite;
  }
  .slide4{
    background-image: url(foto/trekhaak4.png);
    background-size: 100%;
    background-repeat: no-repeat;
    animation: fade4 12s infinite;
  }
  
  @keyframes fade1{
    0%
    {
      opacity: 1;
    }
    25%
    {
      opacity: 0;
    }
    50%
    {
      opacity: 0;
    }
    75%{
      opacity: 0;
    }
    100%
    {
      opacity: 1;
    }
  }
  
  @keyframes fade2{
    0%
    {
      opacity: 0;
    }
    25%
    {
      opacity: 1;
    }
    50%
    {
      opacity: 0;
    }
    75%{
      opacity: 0;
    }
    100%
    {
      opacity: 0;
    }
  }
  
  @keyframes fade3{
    0%
    {
      opacity: 0;
    }
    25%
    {
      opacity: 0;
    }
    50%
    {
      opacity: 1;
    }
    75%{
      opacity: 0;
    }
    100%
    {
      opacity: 0;
    }
  }
  
  @keyframes fade4{
    0%
    {
      opacity: 0;
    }
    25%
    {
      opacity: 0;
    }
    50%
    {
      opacity: 0;
    }
    75%{
      opacity: 1;
    }
    100%
    {
      opacity: 0;
    }
  }











/*SHOP-PAGINA*/


/*div.vraagemail{
    width: 40%;
    height: 70%;
    margin-right: 2%;
    text-align: center;
    float: left;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
    border-radius: 25px;
    background-color: rgb(183, 205, 233);
    z-index: 101;
}*/

div.shopdiv{
    overflow: hidden;
    height: 550px;
    margin-bottom: 20px;
}
h2.zoek{
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 5%;
    margin-right: 5%;
    /*margin-right: 58%;*/
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

                     /*API google maps*/
#map{
    height: 60%;
    width: 60%;
    margin-left: 7%;
    margin-right: 7%;
    padding: 2% 13% 2% 13%;
    /*float:left;*/
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
  }
 
  *{
    margin: 0;
    padding: 0;
  }

/*div.aanvraaggegevens{
    margin: 50px;
    background-color: coral;
    padding: 20px;
}
*/





/*PARTNERS_PAGINA*/
.VE_logo{
    margin-top: 20px;
    width: 150px;
    height: 150px;
    display: inline-block;
    background-image: url(foto/AfbeeldingVaultEngeneering.png);
    background-size: 105%;
    border-radius: 50%;
    background-position: center;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
    margin-bottom: 100px;
}

.uitlegpartners{
    
    width: auto;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 30px;
    padding-left: 20%;
    padding-right: 20%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
   
}






/*product_PAGINA*/
.trekhaak{
    padding-top: 70px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 30px;
    
    margin: 20px;
}






/*OVER_ONS_PAGINA*/
.uitleg_overons{
    
    width: auto;
    text-align: center;
    padding-top: 70px;
    padding-left: 20%;
    padding-right: 20%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}


.personen{
    margin-top: 70px;
    margin-bottom: 100px;
    margin-left: 4%;
    margin-right: 4%;
    border-radius: 25px;
}

.personen_ul li:last-child{
    margin-right: 5%;
}

.personen_ul li:first-child{
    margin-left: 5%;
}

.pers1{
    background-image: url(foto/OverOns\ Stan.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 350px;
    height: 480px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
}


.pers2{
    background-image: url(foto/OverOns\ Lomme.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-x: center;
    border-radius: 25px;
    width: 350px;
    height: 480px;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
}

.pers3{
    background-image: url(foto/OverOns\ Ward.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 25px;
    background-position-x: center;
    width: 350px;
    height: 480px;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
}

.pers4{
    background-image: url(foto/OverOns\ Alec.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 25px;
    background-position-x: center;
    width: 350px;
    height: 480px;
    box-shadow: 0 5px 25px rgba(0,0,0,.5);
}


/*Contact_pagina*/

.uitlegcontact{
    
  width: auto;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 30px;
  padding-left: 20%;
  padding-right: 20%;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
 
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}


div.bodem{
  margin-top: 100px;
  text-align: center;
  
}

center.bodemkipper{
  margin-top: 100px;
}



@media only screen and (max-width:800px) {
  
  
  .trekhaak{
    
    padding-top: 7%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 3%;
    margin: 0px;
    font-size: 15px;
  }

  .uitlegpartners{
    width: auto;
    text-align: center;
    padding-top: 7%;
    padding-bottom: 3%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
   
  }

  .uitleg_overons{
    
    width: auto;
    text-align: center;
    padding-top: 7%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 15px;
  }



   

}



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

  .uitleg_overons{
    font-size: 15px;
  }


  .uitlegpartners{
    font-size: 15px;
  }

  .trekhaak{
    font-size: 10px;
  }
}









  
  