.fotogalerij a{
	position: relative;
	display: block;
	text-decoration: none !important;
}

.fotogalerij .row{
	row-gap: var(--bs-gutter-x);
}

@supports not (row-gap: 1rem) {
   /* 
	Isolated code for not supporting flexbox row-gap so have to work with margins. Thanks Safari :/ 
	*/
	.fotogalerij .row > div{
		margin-bottom: var(--bs-gutter-x);
	}
}

.fotogalerij.geen_extra_marge_onderkant + .fotogalerij{
	padding-top: var(--bs-gutter-x) !important;
}

.fotogalerij .last-no-margin{
	
}

.fotogalerij a:after{
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(39,23,110, 0.2);
	opacity: 0;
	-webkit-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}

.fotogalerij a:after,
.fotogalerij a:before{
	pointer-events: none;
}

.fotogalerij a:hover:after,
.fotogalerij a:hover:before{
	opacity: 1;
}

.fotogalerij a:before{
	opacity: 0;
	content: "\f00e";
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 400;
	color: #fff;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	-webkit-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
	z-index: 150;
	font-size: 3.6rem;
}

.fotogalerij .container{
	max-width: 186rem;
}

.fotogalerij .row {
    --bs-gutter-x: 2.5rem;
}

.fotogalerij .col-xl-5 {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.fotogalerij .col-xl-5 a{
	height: 50%;
}

.fotogalerij .col-xl-7 a{
	height: 100%;
}

.fotogalerij picture{
	display: flex;
	height: 100%;
	width: 100%;
}

.fotogalerij img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

@media (max-width:767px)
{		
	
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}