.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-description {
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
	bottom: 0;

	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
	color: var(--textTertiaryColor);
}

.mx-showcase .mx-showcase-link {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 130px;
	text-align: center;
	z-index: 1;
}

.mx-showcase .mx-showcase-arrow {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 60px;
	text-align: center;
	z-index: 1;
}

.mx-showcase .mx-showcase-arrow a:hover,
.mx-showcase .mx-showcase-arrow a:active {
	opacity: 0.6;
}

.mx-showcase .mx-showcase-arrow a svg path {
	color: var(--mainPrimaryColor);
}

.parallax-text {
	margin: 0 auto;
	padding: 10px 0 0 0;
	position: relative;
	top: 31%;
	max-width: 90%;
	font-family: var(--headingsFontFamily);
	line-height: 0.9;
	text-align: center;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
}

@media (max-width: 960px) {
	.mx-showcase {
		max-height: 600px;
	}

	.mx-showcase .mx-showcase-text {
		display: none;
	}

	.mx-showcase .mx-showcase-title {
		margin: 15px auto 0 auto;
		padding: 0 0 15px 0;
		display: block;
		position: absolute;
		top: 32%;
		left: 0;
		right: 0;
		width: 80%;
		font-family: var(--headingsFontFamily);
		line-height: 100%;
		font-weight: 400;
		font-size: 54px;
		text-align: center;
		letter-spacing: 0.165em;
		text-transform: uppercase;
		color: #ffffff;
	}

	.mx-showcase .mx-showcase-description {
		margin: 0 auto;
		padding: 0 0 15px 0;
		width: 80%;
	}

	.mx-showcase .mx-showcase-link {
		bottom: 90px;
	}

	.mx-showcase .mx-showcase-arrow {
		bottom: 20px;
	}
}

@media (max-width: 767px) {
	.mx-showcase .mx-showcase-description {
		top: 14%;
		max-width: 270px;
	}

	.mx-showcase .mx-showcase-image {
		background-position: center;
	}

	.mx-showcase .mx-showcase-title::before {
		content: '';
		position: absolute;
		border-bottom: 1px solid var(--bodyTextColor);
		width: 150px;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}