*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}


body {
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	font-family: "Barlow Condensed", serif;
}

i {
	font-weight: italic;
}

b,
strong {
	font-weight: 700;
}

section {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	position: relative;
}

.content {
	gap: 6rem;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	min-height: 100vh;
	position: relative;
	padding: 4rem 1rem;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.logo {
	width: 100%;
	display: flex;
	max-width: 800px;
	text-align: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.logo img {
	width: 250px;
	margin-bottom: 1.5rem;
}

.logo h1 {
	margin: 0;
	color: #fff;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.25;
	font-size: clamp(1.6rem, 7.5vw, 3rem);
}

.text {
	width: 100%;
	display: flex;
	max-width: 800px;
	text-align: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.text p {
	margin: 0;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
	line-height: 1.5;
	font-size: clamp(0.9rem, 4vw, 1.2rem);
}

.text a {
	color: #fff;
	text-decoration: none;
}

.text a:visited {
	color: #fff;
}

.text a:hover,
.text a:focus {
	color: #BABEB4;
}

.bg {
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
 }

.bg::after {
	top: 0;
	left: 0;
	width: 100%;
	content: '';
	height: 100%;
	position: absolute;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 0) 100%);
}

.bg video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	pointer-events: none;
}
