.myde-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.myde-hero__image {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.myde-hero__poster,
.myde-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.myde-hero__poster {
	z-index: 0;
}

.myde-hero__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.myde-hero__video {
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.myde-hero__video.is-ready {
	opacity: 1;
}

.myde-hero__text {
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 100%;
	padding-bottom: 80px;
}

.myde-hero__title {
	max-width: 463px;
	font-weight: 300;
	font-size: 36px;
	line-height: normal;
	color: #e6e6e6;
	text-transform: uppercase;
}

.myde-hero__desc {
	max-width: 192px;
	margin-top: 20px;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: #e6e6e6;
}

.myde-hero__button {
	margin-top: 30px;
}

.myde-hero__shadow {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
}

@media (min-width: 1440px) {
	.myde-hero {
		height: clamp(800px, calc(58.333vw - 40px), 1080px);
		overflow: hidden;
	}

	.myde-hero__image {
		height: 100%;
	}

	.myde-hero__text {
		padding-bottom: clamp(80px, 5.208vw, 100px);
	}
}

@media (min-width: 1024px) and (max-width: 1439px) {
	.myde-hero {
		height: 768px;
		overflow: hidden;
	}

	.myde-hero__image {
		height: 100%;
	}

	.myde-hero__text {
		padding-bottom: 50px;
	}

	.myde-hero__title {
		width: 463px;
		margin-bottom: 0;
		font-size: 36px;
		line-height: normal;
	}

	.myde-hero__desc {
		margin-top: 20px;
	}
}

@media (max-width: 1023px) {
	.myde-hero {
		min-height: 640px;
		align-items: stretch;
		overflow: hidden;
	}

	.myde-hero__image {
		height: 100%;
		min-height: 640px;
	}

	.myde-hero__text {
		padding-bottom: 40px;
	}

	.myde-hero__title {
		max-width: 100%;
		margin: 0;
		font-size: 32px;
		line-height: normal;
	}

	.myde-hero__desc {
		width: 100%;
		max-width: 100%;
		margin-top: 18px;
	}

	.myde-hero__button {
		width: fit-content;
		min-width: 0;
	}
}
