.image-side-section-container{
	display: flex;
	align-items: stretch;
	position: relative;
}

.image-side-section-container.right{
	justify-content: end;
}

.image-side-section-container > div{
	flex-basis: 50%;
}

.image-side-section-container > div:not(.image-side-section-image){
	padding: 90px;
	padding-right: 15px;
	position: relative;
	max-width: calc(var(--max-width) / 2);
}

.image-side-section-container.right > div:not(.image-side-section-image){
	padding: 130px;
	padding-left: 15px;
}

.image-side-section-image{
	height: auto;
	background-size: cover;
	background-position: center;
	position: relative;
}

.image-side-section-image:after{
	content: '';
	background: linear-gradient(180deg, #00000000 37.15%, #07182ec7 104.73%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 849px){
	.image-side-section-container{
		margin-top: 0;
		margin-bottom: 75px;
		flex-direction: column;
	}
	
	.image-side-section-image{
		min-height: 400px;
		margin-right: 30px;
		order: 1;
	}
	
	.right .image-side-section-image{
		margin-right: 0;
		margin-left: 0;
	}
	
	.image-side-section-container > div:not(.image-side-section-image){
		max-width: unset;
		padding: 45px 15px 0 !important;
		order: 2;
	}
}