.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;
}

.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;
}

.mx-showcase .mx-showcase-arrow {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 60px;
	text-align: center;
}

.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);
}

@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: 110px;
	}

	.mx-showcase .mx-showcase-arrow {
		bottom: 20px;
	}
}