@charset "UTF-8";
/* CSS Document */

.afbeelding-tekst {
	gap: var(--std-gap);
}

.afbeelding-mask {
	/*-webkit-mask-image: url(https://bamdex.dev-imc.com/wp-content/uploads/2023/11/img-mask.svg);
    mask-image: url(https://bamdex.dev-imc.com/wp-content/uploads/2023/11/img-mask.svg); */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	width: 45%;
	aspect-ratio: 1 / 1;
}

.afbeelding-tekst img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.afbeelding-tekst .text-box {
	width: 55%;
}

.afbeelding-tekst.reverse {
	flex-direction: row-reverse;
}

.afbeelding-tekst.reverse .text-box {
	justify-items: end;
	text-align: right;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
    
}

@media screen and (max-width: 768px) {
	.afbeelding-tekst {
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	}
	
	.afbeelding-mask {
		flex-grow: 1;
		max-width: 400px;
		margin: 0 auto;
	}
	
	.afbeelding-tekst .text-box {
		flex-grow: 1;
	}
	
	.afbeelding-tekst.reverse {
		flex-direction: unset;
	}
	
	.afbeelding-tekst.reverse .text-box {
		justify-items: unset;
		text-align: left;
	}
}