.infoCard {
	position: relative;
}
.infoCard img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
}
.info {
	padding: 2em;
	background-color: white;
	color: black;
	position: absolute;
	top: 0px;
	bottom: 0px;
	word-wrap: break-word;
}
.infoR {
	right: 0px;
	left: 60%;
	border-right: 5px solid blueviolet;
}
.infoL {
	left: 0px;
	right: 65%;
	border-left: 5px solid blueviolet;
}
@media only screen and (max-width: 1080px) {
	.infoR {
		left: 60%;
	}
	.infoL {
		right: 60%;
	}
}
@media only screen and (max-width: 990px) {
	.info {
		position: static;
	}
	.infoCard img {
		height: 300px;
		margin: 0;
	}
}
