@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(--sml-radius);
}

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

.image-text .text-box h2 {
	color: var(--act-primary);
}

.image-text-wrap.background {
	background-color: var(--shd-light);
    padding: 50px 0;
}

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

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

.text-editor p {
	margin-bottom: 15px;
}

@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;
	}
}