.mx-showcase {
	height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 11vh;
}

.mx-showcase .mx-showcase-bg-right {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.mx-showcase .mx-showcase-bg-left {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.mx-showcase-background,
.mx-showcase-image {
	position: absolute;
	top: -1px;
	left: 0;
	right: -1px;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.mx-showcase-background {
	z-index: 0;
}

.mx-showcase-image {
	position: absolute;
	top: 0;
	left: -20%;
	right: -20%;
	bottom: 0;
	background-size: contain;
	background-position: center bottom;
	z-index: 2;
}

.mx-showcase-background-mobile,
.mx-showcase-image-mobile {
	display: none;
}

.mx-showcase-line {
	width: 1px;
	height: 3px;
	background-color: rgba(244, 99, 30, 1);
	z-index: 0;
}

.mx-showcase-description {
	/* margin: 2rem 0; */
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: var(--textTertiaryColor);
	font-size: clamp(2.1rem, 5vw, 5.05rem);
	letter-spacing: 0.01em;
	z-index: 4;
	font-family: var(--headingsFontFamily);
	font-weight: 700;
	margin: 0;
}

.mx-showcase-subtitle {
	margin-top: 1rem;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: var(--textTertiaryColor);
	font-size: clamp(1rem, 2vw, 1.5rem);
	letter-spacing: 0.4em;
	font-family: var(--headingsFontFamily);
	font-weight: 600;
	z-index: 4;
}

.mx-showcase-link {
	margin-top: 2rem;
	text-align: center;
	z-index: 4;
}

.mx-showcase-arrow {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.mx-showcase-arrow a:hover,
.mx-showcase-arrow a:active {
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.mx-showcase-arrow svg path {
	fill: var(--mainPrimaryColor);
}

/* @media (max-width: 1600px) {
	.mx-showcase-image {
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
	}
} */

@media (max-width: 1400px) {
	.mx-showcase .mx-showcase-bg-right,
	.mx-showcase .mx-showcase-bg-left {
		display: none;
	}
}

@media (max-width: 960px) {
	.mx-showcase {
		height: auto;
		min-height: 100vh;
		max-height: none;
	}

	.mx-showcase-text {
		display: none;
	}

	.mx-showcase-title {
		display: block;
		margin: 1rem 0;
		font-family: var(--headingsFontFamily);
		line-height: 1;
		font-weight: 400;
		font-size: clamp(2rem, 8vw, 3.375rem);
		text-align: center;
		letter-spacing: 0.165em;
		text-transform: uppercase;
		color: #ffffff;
	}

	.mx-showcase-image {
		top: 0;
		left: 0;
		right: 0;
		background-size: cover;
		background-position: center bottom;
		height: auto;
	}

	.mx-showcase-description {
		font-size: clamp(3.4rem, 12vw, 5rem);
	}

	.mx-showcase-subtitle {
		font-size: clamp(1rem, 2vw, 1.5rem);
		position: absolute;
		bottom: 5rem;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		letter-spacing: 0.8em;
	}

	.mx-showcase-arrow {
		bottom: 1rem;
	}
}

@media (max-width: 767px) {
	.mx-showcase-image-desktop {
		display: none;
	}

	.mx-showcase-image-mobile {
		display: flex;
	}

	.mx-showcase-image {
		background-size: contain;
		max-width: none;
	}

	.mx-showcase-subtitle {
		font-size: 18px;
		letter-spacing: 0.4em;
	}
}

@media (max-width: 650px) {
	.mx-showcase-image {
		margin: auto;
	}
}

@media (max-width: 600px) {
	.mx-showcase-background-desktop {
		display: none;
	}

	.mx-showcase-background-mobile {
		display: flex;
	}
}

@media (max-width:520px) {
	.mx-showcase-image {
		background-size: cover;
	}
}


@media (max-width: 457px) {
	.mx-showcase-subtitle {
		padding: 0 10px;
	}
}

@media (max-width: 400px) {
	.mx-showcase-description {
		padding: 0 10px;
	}
}