.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;
	z-index: 1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.mx-showcase .mx-showcase-link {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 130px;
	text-align: center;
	z-index: 3;
}

.mx-showcase .parallax-text {
	margin: 0 auto;
	padding: 10px 0 0 0;
	position: relative;
	top: 40%;
	font-family: var(--parallax_font_family);
	font-size: var(--parallax_desktop_font_size);
	letter-spacing: var(--parallax_letter_spacing);
	max-width: 90%;
	line-height: 0.9;
	text-align: center;
}

.mx-showcase .first-layer-text,
.mx-showcase .first-layer-image {
	z-index: 2;
}

@media (max-width: 960px) {
	.mx-showcase {
		max-height: 600px;
	}

	.mx-showcase .parallax-text {
		font-size: var(--parallax_mobile_font_size);
		text-align: left;
	}

	.mx-showcase .mx-showcase-text {
		z-index: 1;
	}

	.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;
	}
}