.container {
	display: flex;
	flex-direction: column;
}

.left, .right {
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	position: relative;
	display: flex;
}

.left:before, .right:before {
	content: '';
	display: block;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	position: absolute;
	left: 16px;
	top: 16px;
	border: 1px solid #ffffff;
}

.left:after, .right:after {
	content: '';
	display: block;
	width: calc(100% - 54px);
	height: calc(100% - 54px);
	position: absolute;
	left: 27px;
	top: 27px;
	border: 1px solid #ffffff;
	opacity: 0.5;
}

.left a.more, .right a.more {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	padding-top: 40px;
	color: #ffffff;
	z-index: 30;
	text-decoration: none;
	font-size: 14px;
	gap: 12px;
}

.left a.more span, .right a.more span{
	display: flex;
	gap: 12px;
	align-items: center;
	padding-bottom: 30px;
	font-weight: 500;
}

.left .shadow {
	display: none;
}

.left a.more span svg, .right a.more span svg{
	transition: .3s;
}

.left a.more:hover span svg, .right a.more:hover span svg{
	transform: translateX(10px);
}

.left > a > img, .right > a > img {
	margin: auto;
	width: 200px;
	position: relative;
	z-index: 10;
}

.left > a, 
.right > a {
	margin: auto;
	display: block;
	position: relative;
	z-index: 10;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
}

@media (min-width:1024px){

	.container {
		flex-direction: row;
	}

	.left, .right {
		width: 50%;
		height: 100vh;
	}

	.left > a > img, .right > a > img {
		margin: auto;
		width: 300px;
	}

	.left .shadow {
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
		z-index: 4;
		width: auto;
	}

}

@media (min-width:1900px){

	.left > a > img, .right > a > img {
		margin: auto;
		width: auto;
	}

}