/*-----------------------------------------------------------*/
  /* INHOUD */
						/*  regel 09:  Account contact, registreren  */ 
						/*  regel 86:  Swap image Boek Review        */
						/*  regel 104: Mediaqueries 768, 1024, 1280  */
/*----------------------------------------------------------*/

.slideshow-container { position: relative; }

.mySlides {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center; }

.mySlides img {
	width: 100%;
	height: 450px;
	object-fit: cover; }

/* verloop slide naar next slide */
.fade {
  animation-name: fade;
  animation-duration: 1.5s; }

@-webkit-keyframes fade {
  from { opacity: .4; } to { opacity: 1; } }

@keyframes fade {
  from { opacity: .4; }  to { opacity: 1; } }

/* < en > */
.prev, .next {
  width: auto;
  position: absolute;
  top: 50%;
	transform: translateY(-50%);
  color: white;
  border-radius: 0 3px 3px 0;
  padding: 0.3rem 1rem;
  transition: 0.6s ease;
  user-select: none;
  cursor: pointer; }

.next                        { right: 0; border-radius: 3px 0 0 3px; }
.next .fas, .prev .fas       { font-size: 3rem; color: rgba(255, 255, 255, 0.7); }
.next .fas, .prev .fas, .dot { text-shadow: 0px 6px 8px rgba(0,0,0,0.35); }

.next .fas:hover, .prev .fas:hover { color: var(--blue_3); }

/* text over slider */
.numbertext {
	font-family: 'Merriweather';
	text-align: center; 
	width: 75%;
  padding: 8px 12px;
  position: absolute;
	text-shadow: 0px 0px 3px var(--black_1);
	
	margin-top: 4rem; }

.numbertext h2, .numbertext span { font-size: 1.1rem; color: var(--white); }
.numbertext span                 { margin: 0.8rem 0 3rem 0; }
.numbertext hr                   { width: 75%; height: 5px; margin: auto; }

/* pagination */
.dot {
  display: inline-block;
  width: 1rem;
  height: 1rem;
	border: 1px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
	padding: 0;
  margin: 0 2px; 
	position: relative;
	top: -0.5rem;
  cursor: pointer;  
  transition: background-color 0.6s ease;	}

/* positie van de .dotjes */
#slider div:last-child {
	text-align: center;
  margin-top: -1.3rem; }

.dot.active, .dot:hover { background-color: var(--blue_3); }


/*================SWAP IMAGE=====================*/
#galleryContainer {
	display: flex;
	flex-flow: column-reverse nowrap; }

#galleryPagination {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start; }

#galleryPagination li             { flex: 1 0 20%; margin: 1rem; }
#galleryPagination li:first-child { margin-left: 0; }
#galleryPagination img            { width: 100%; }

figure, figure img { width: 100%; }


/*===============================================*/
   /* MEDIA QUERIE 768 */
/*===============================================*/
@media only screen and (min-width: 768px) {
	
	
	.mySlides img             { object-fit: cover; 	height: auto; }
	.mySlides .numbertext img { height: 5rem; }

	.dot { width: 1.5rem; height: 1.5rem; }
		
	.numbertext                      { width: 65%; }
	.numbertext h2, .numbertext span { font-size: 1.5rem; }
	
  .prev, .next, .text { font-size: 2rem; }


/*================SWAP IMAGE=====================*/
	//#galleryPagination { width: 70%; }
	
}


/*===============================================*/
   /* MEDIA QUERIE 1024 */
/*===============================================*/
@media only screen and (min-width: 1024px) {
	
	.dot { top: -1rem; }
	.numbertext h2, .numbertext span { font-size: 2rem; }
	
}


/*===============================================*/
   /* MEDIA QUERIE 1280 */
/*===============================================*/
@media only screen and (min-width: 1280px) {

	.numbertext { width: 55%; }
	.numbertext span  { margin: 0.8rem 0 5rem 0; }
}



