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

.image-text {
	display: flex;
	gap: var(--std-gap);
	flex: 1 1 0px;
	align-items: flex-start;
}

.image-text img {
	width: 45%;
	height: 400px;
	object-fit: cover;
	border-radius: var(--big-radius);
}

.image-text .text-box {
	width: 55%;
}

.image-text.reverse {
	flex-direction: row-reverse;
}

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



/* EXTRA CLASSES */
.image-text.gedachten-wissel {
	align-items: center;
	background-color: var(--act-primary-trans);
	border-radius: var(--big-radius);
	padding: 30px;
}



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

@media screen and (max-width: 768px) {
	.image-text {
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	}
	
	.image-text img {
		width: 100%;
		height: 300px;
	}
	
	.image-text .text-box {
		flex-grow: 1;
	}
	
	.image-text.reverse {
		flex-direction: unset;
	}
	
	.image-text.reverse .text-box {
		justify-items: unset;
		text-align: left;
	}
}