.image-side-section-container{
	display: flex;
	/* max-width: calc(var(--max-width) + 400px); */
	/* margin: 0 auto; */
	align-items: stretch;
	margin-top: 150px;
	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: 90px;
	padding-left: 15px;
}

.image-side-section-image{
	height: auto;
	background-size: cover;
	mask-image: url(/wp-content/themes/fly-athletics/assets/mask-left.png);
    mask-size: 100% 100%;
	background-position: center;
}

.right .image-side-section-image{
	mask-image: url(/wp-content/themes/fly-athletics/assets/mask-right.png);
}

.image-side-floating-element{
	position: relative;
	padding: 50px 0px 30px;
	background: #151b2b;
	margin-bottom: -20px;
}

.image-side-floating-element:after{
	content: '';
	background: #151b2b;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 215px;
}

.image-side-floating-element:before{
	content: '';
	background: #151b2b;
	mask-image: url(/wp-content/themes/fly-athletics/assets/mask-right-invert.png);
    mask-size: 100% 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	width: 300px;
}

@media screen and (max-width: 849px){
	.image-side-section-container{
		margin-top: 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: 30px;
	}
	
	.image-side-section-container > div:not(.image-side-section-image){
		max-width: unset;
		padding: 45px 15px 0 !important;
		order: 2;
	}
	
	.image-side-floating-element{
		padding: 30px 0px 10px;
	}
}