* {
	font-family: inter-variable, sans-serif;
	color: #ffffff;
}

body {
	background: #000000;
}

hr {
	height: 1px;
	border: 0;
	background: #fff;
	opacity: 1;
	margin: 40px;
}

.center-align {
	text-align: center;
}

header {
	background: #16412f;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
/*	position: fixed;*/
	width: 100%;
}

header marquee {
	font-family: minerva-modern, sans-serif;
	color: #eae0cf;
	text-transform: uppercase;
	font-size: 1.5rem;
}

#bandeau {
	display: flex;
	background: #eae0cf;
	padding: 20px;
}

#bandeau div {
	width: calc(25% - 10px);
	margin: 5px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 2.5 / 1;
}

#bandeau div::before, #bandeau div::after {
	content: "";
	position: absolute;
	z-index: 3;
	left: .5rem;
	right: .5rem;
	height: 2px;
	background-color: #fff;
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(.65,0,.35,1);
}

#bandeau div::before {
	top: .5rem;
}

#bandeau div::after {
	bottom: .5rem;
}

#bandeau div:hover::before, #bandeau div:hover::after {
	opacity: .5;
}

#bandeau div img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}

#bandeau div:hover img {
	transform: scale(1.1);
}

#carrousel-container {
	position: relative;
	aspect-ratio: 16 / 9;
}

#carrousel {
	position: absolute;
/*	top: 50px;*/
	height: 100%;
	width: 100%;
	opacity: .6;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

#carrousel div {
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}

#carrousel img {
/*	display: none;*/
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#content {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
}

#content::before, #content::after {
	content: "";
	position: absolute;
	z-index: 3;
	left: .5rem;
	right: .5rem;
	height: 1px;
	background-color: #fff;
	transition: opacity 0.5s cubic-bezier(.65,0,.35,1);
}

#content::before {
	top: .5rem;
}

#content::after {
	bottom: .5rem;
}

#logo {
	margin-top: 30px;
	width: 200px;
	margin-bottom: 10px;
}

h1, h2 {
	font-family: minerva-modern, sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 4rem;
	line-height: 90%;
	margin: 20px 0;
}

h4 {
	font-weight: 300;
/*	font-family: minerva-modern, sans-serif;*/
}

h4 a {
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
/*	font-family: minerva-modern, sans-serif;*/
}

h4 a:hover {
	color: #eae0cf;
	text-decoration: underline;
}

.btn {
	margin-top: 20px;
	position: relative;
	display: inline-block;
	gap: .75rem;
	min-width: 11.125rem;
	padding: 0.8125rem;
	border: solid 2px #16412f;
	background-color: #16412f;
	border-radius: .3125rem;
	text-align: center;
	text-decoration: none !important;
	font-family: "minerva-modern", sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	color: #eae0cf;
	transition: .3s;
}

.btn:hover {
	background: #eae0cf !important;
	color: #16412f !important;
}

@media (max-width: 1300px) {
	#carrousel-container, #carrousel, #carrousel div {aspect-ratio: 13 / 9;}
	h1, h2 {font-size: 3rem;}
	h4 {font-size: 1.5rem}
}

@media (max-width: 1100px) {
	#carrousel-container, #carrousel, #carrousel div {aspect-ratio: 5 / 9;}
	h1, h2 {font-size: 2rem;}
	h4 {font-size: 1.25rem}
}

@media (max-width: 992px) {
	#bandeau {flex-wrap: wrap;}
	#bandeau div {width: calc(50% - 10px);}
	#carrousel-container, #carrousel, #carrousel div {aspect-ratio: 4 / 12;}
}