.peplynx-hero {
	position: relative;
	height: 100vh;
	display: block;
}
.hero-row {
	position: relative;
	z-index: 2;
	height: 100vh;
	display: flex;
	align-items: baseline;
}
.hero-title-wrapper {
	margin-top: 8rem;
}
.hero-title {
	color: var(--title-white);
	font-size: 2rem;
	font-weight: 500;
	line-height: 110%;
	max-width: 42.4375rem;
	margin-bottom: 2.31rem;
}
.hero-bg {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.hero-bg.mobile {
	object-position: center bottom;
}
.hero-bg.desktop {
	display: none;
}
.hero-bottom-row {
	background: rgba(0, 0, 0, 0.02);
	backdrop-filter: blur(36.650001525878906px);
	padding: 0.7rem 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
.hero-bottom-text {
	max-width: 34.4375rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	line-height: 130%;
	text-align: center;
	margin: auto;
}
@media screen and (min-width: 768px) {
	.hero-row {
		align-items: center;
	}
	.hero-title {
		font-size: 3.5rem;
	}
	.hero-bottom-text {
		text-align: left;
		margin: 0;
	}
	.hero-title-wrapper {
		margin: 0;
	}
	.hero-bg.desktop {
		display: block;
	}
	.hero-bg.mobile {
		display: none;
	}
}
