#asns-title-text-image-background-content-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}

.asns-title-text-image-background-content-content-container {
	position: relative;
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	padding: 70px 5%;
}

.asns-title-text-image-background-content-image-container {
	position: relative;
	display: flex;
	flex: 0 0 50%;
	flex-direction: row;
	aspect-ratio: 1;
	background-color: var(--background-color-blue);
	border-radius: 30px;
}

.asns-title-text-image-background-content-image-container img {
	position: absolute;
	top: -50px;
	height: 100%;
	width: 100%;
	object-fit: contain;
}



/* Mobiel */
@media (max-width: 767px) {
	#asns-title-text-image-background-wrapper {
		margin: 35px 0!important;
	}

	#asns-title-text-image-background-content-wrapper {
		flex-direction: column;
	}

	.asns-title-text-image-background-content-content-container {
		flex: 0 0 100%;
		padding: 70px 5%;
	}

	.asns-title-text-image-background-content-image-container {
		flex: 0 0 80%;
		width: 80%;
		margin: 0 auto;
		aspect-ratio: 1;
		background-color: var(--background-color-blue);
		border-radius: 30px;
	}

	.asns-title-text-image-background-content-image-container img {
		position: absolute;
		top: -50px;
		height: 100%;
		width: 100%;
		object-fit: contain;
	}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {}

/* Desktop */
@media (min-width: 1025px) {}