.mx-showcase {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.mx-showcase .mx-showcase-background {
	position: absolute;
	top: -200px;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
}

.mx-showcase .mx-showcase-text {
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	bottom: 0;

	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}

.mx-showcase .mx-showcase-title {
	display: none;
}

.mx-showcase .mx-showcase-image {
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	bottom: 0;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
}

@media (max-width: 960px) {
	.mx-showcase {
		max-height: 600px;
	}

	.mx-showcase .mx-showcase-text {
		display: none;
	}

	.mx-showcase .mx-showcase-title {
		display: block;
		position: absolute;
		left: 20px;
		bottom: 30px;
		font-family: var(--headingsFontFamily);
		font-size: 140px;
		line-height: 88%;
		text-transform: capitalize;
	}
}

@media (max-width: 900px) {
	.mx-showcase .mx-showcase-image {
		background-size: cover;
	}
}