p {
   padding: 10px 5px 0;
   font-size: 1.05em;
   letter-spacing: 0.02em;
   line-height: 1.5em;
   text-align: justify;
}

#koptekst > h1 {
   font-size: 1.2rem;
   font-weight: 400;
   padding: 10px 10px 0;
   line-height: 1.3em;
   text-align: justify;   
}

#koptekst > h1 > a {
   color: #0E5997;
}

#kolom1 {
   width: 49%;
   display: inline-block;
   padding: 10px;
   background-color: white;
}

#resultaten > #image {
   float: right;
   width: 160px;
   padding-left: 1em;
   padding-top: 1em;
}

#lesduur > #image {
   float: left;
   width: 160px;
   padding-right: 1em;
   padding-top: 1em;
}

#flexibel > #image {
   float: left;
   width: 160px;
   padding-right: 1em;
   padding-top: 1em;
}

#opleiding > #image {
   float: right;
   padding-top: 1.1em; 
   padding-left: 1.1em;
   width: 200px;
}

#ophalen > #image {
   float: right;
   padding-top: 1.1em; 
   padding-left: 1.1em;
   width: 150px;
}

#instructeur > #image {
   float: right;
   padding-top: 1.1em; 
   padding-left: 1.1em;
   width: 180px;
}

#kolom1 h3 , #kolom2 h3 {
   color: #0C4D83;
   font-size: 1.3em;
   font-weight: 400;   
   padding-left: 8px;
   border-left: 5px solid #F7941E;
}

#kolom2 {
   width: 49%;
   float: right;
   padding: 10px;   
}

#banner {
   position: relative;
}

#banner h2 {
   font-size: 1em;
   font-weight: 300;
}

#banner .fa {
   transform: translateY(1px);
}

@media only screen and (max-width: 767px) {
   #kolom1 , #kolom2 {
    width: 100%;
   }
   #opleiding > #image {
      width: 160px;
   }
   #flexibel > #image {
      width: 120px;
      padding-left: 1em;
   }
   #ophalen > #image {
      width: 105px;
   }
   #resultaten > #image {
      width: 130px;
      float: left;
      padding-left: 1em;
      padding-right: 1em;
   }
   #lesduur > #image {
      width: 120px;
      float: right;
      padding-right: 0em;
      padding-left: 1em;
   }
   #instructeur > #image {
      float: left;
      padding-top: 1.1em;
      padding-left: 0.5em;
      padding-right: 1em;
      width: 150px;
   }
   #banner h2 {
      font-size: 0.8em;
   }
}  
@media only screen and (max-width: 399px) {
   #banner h2 {
      font-size: 0.6em;
   }
}
/*   #opleiding > #image , #flexibel > #image , #ophalen > #image , #resultaten > #image , #lesduur > #image , #instructeur > #image { 
      float: right;
      padding-left: 1em;
      padding-top: 1em;
    }
   #flexibel > #image , #ophalen > #image {
      width: 120px;
      padding-right: 0em;
   }
   #opleiding > #image {
      width: 170px;
   }
}*/

/* make keyframes that tell the start state and the end state of our object */
 
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
   opacity: 1\9; /* IE9 only */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	   -moz-animation:fadeIn ease-in 1;
	        animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	   -moz-animation-fill-mode:forwards;
	        animation-fill-mode:forwards;
 
	-webkit-animation-duration:1s;
	   -moz-animation-duration:1s;
	        animation-duration:1s;
}
 
.fade-in.one {
   -webkit-animation-delay: 0.7s;
      -moz-animation-delay: 0.7s;
           animation-delay: 0.7s;
   position: absolute;
   top: 30px;
   left: 30px;
}
 
.fade-in.two {
   -webkit-animation-delay: 1.5s;
       -moz-animation-delay:1.5s;
           animation-delay: 1.5s;
              position: absolute;
   top: 70px;
   left: 30px; 
}
 
.fade-in.three {
   -webkit-animation-delay: 2.3s;
      -moz-animation-delay: 2.3s;
           animation-delay: 2.3s;
   position: absolute;
   top: 110px;
   left: 30px; 
}

.fade-in.four {
   -webkit-animation-delay: 3.1s;
      -moz-animation-delay: 3.1s;
           animation-delay: 3.1s;
   position: absolute;
   right: 30px;
   bottom: 110px;
}
 
.fade-in.five {
   -webkit-animation-delay: 4.0s;
      -moz-animation-delay: 4.0s;
           animation-delay: 4.0s;
   position: absolute;
   right: 30px;
   bottom: 70px;
}
 
.fade-in.six {
   -webkit-animation-delay: 4.9s;
      -moz-animation-delay: 4.9s;
           animation-delay: 4.9s;
   position: absolute;
   right: 30px;
   bottom: 30px;
}

.box{
    height: 20px;
    position: relative;
    color: white;
    font-size: 1.5em;
}
 
@media only screen and (max-width: 1023px) {
   #banner h3 {
      font-size: 0.9em;
   }   
}
@media only screen and (max-width: 767px) {
   .fade-in.two {
      top: 60px;
   }
   .fade-in.three {
      top: 90px;
   }
   .fade-in.four {
      bottom: 90px;
   }
   .fade-in.five {
      bottom: 60px;
   }    
   .fade-in.one , .fade-in.two , .fade-in.three {
      left: 20px;
   }
   .fade-in.four , .fade-in.five , .fade-in.six {
      right: 20px;
   }   
   #banner h2 {
      font-size: 0.7em;
   }
   #koptekst > h1 {
    font-size: 1.1rem;
   }
}
@media only screen and (max-width: 499px) {
   .fade-in.one , .fade-in.two , .fade-in.three {
      left: 10px;
   }
   .fade-in.four , .fade-in.five , .fade-in.six {
      right: 10px;
   }
   p {
      line-height: 1.5em;
      font-size: 1rem;
   }   
   #koptekst > h1 {
      font-size: 1.04rem;
      line-height: 1.5em;
   }
   #banner-image img {
      height:240px;
   }   
}
