.container {
	max-width: 1600px;
	margin: 0 auto;
	width: 100%;
}

.hero {
	position: relative;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.hero__logo {
	margin-bottom: 2rem;
	max-width: 120px;
	position: relative;
	z-index: 1;
}

.hero__title {
	position: relative;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: white;
	font-size: 3rem;
	text-transform: uppercase;
	z-index: 1;
}
@media (min-width: 640px) {
	.hero__title {
		font-size: 4rem;
	}
}

.hero__subtitle {
	position: relative;
	margin-top: 1.5rem;
	font-size: 1.25rem;
	z-index: 1;
	margin-bottom: 2rem;
}

.hero__video {
	position: absolute;
	opacity: 0.5;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}

.introduction {
	border-top: 5px solid white;
	background-color: black;
}

.introduction__title {
	font-size: 2rem;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	margin-top: 4rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.introduction__para {
	text-align: center;
	margin-bottom: 2rem;
}

.introduction__para:last-child {
	margin-bottom: 5rem;
}

.benefits {
	background-color: #17581c;
	counter-reset: benefits-number 0;
	padding: 2rem 0;
}

.benefits__section {
	margin-bottom: 2rem;
}

.benefits__section__title {
	text-transform: uppercase;
	vertical-align: middle;
	font-size: 2rem;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 1rem;
}

.benefits__section__title:before {
	counter-increment: benefits-number 1;
	content: counters(benefits-number, ".") " "; /* generates inherited counters from parents */
	font-size: 4rem;
	opacity: 0.5;
}

.benefits__section_para {
}

/* 
.playfair-display-title {
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
} */
