#hero-container {
	position: relative;
	margin-bottom: 5rem;
}

.atropos {
	perspective: unset !important;
}

.my-atropos {
	width: 101%;
	height: calc(100vh - 4rem);
	background-color: var(--white-color);
	transform: translateX(-0.5%) ;
}

.hero-img-container {
	position: relative;
	overflow: hidden;
}

.hero-img-container > div.hero-background {
	position: absolute;
	width: 110%;
	bottom: -5%;
	left: -5%;
	right: 0;
	margin: 0 auto;
	overflow: visible;
}

.hero-title {
	position: absolute;
	left: 0;
	right: 0;
	top: 25vh;
	bottom: 40vh;
	margin: 0 auto;
	width: max-content;
	height: max-content;
	margin-top: 2rem;
	z-index: 1;
}

.hero-title h1 {
	color: var(--black-color);
}

.hero__separator {
	height: 4rem;
	background-color: var(--blue-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero__separator a {
	transition: transform 300ms ease-in-out;
}

.hero__separator a:hover {
	transform: scale(1.1);
}

.menu-container {
	position: absolute;
	bottom: 30%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	box-shadow: inset 0px -10px 10px -3px rgba(0,0,0,0.1);
	border-radius: 10px;
}

.hero__text {
	margin-top: 2rem;
	position: absolute;
	top: 32vh;
	width: max-content;
	height: max-content;
	margin-top: 2rem;
	z-index: 1;
	left: 0;
	right: 0;
}

.hero__text > p {
	color: var(--white-color);
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.25rem;
}

@media all and (max-width: 964px) {

	#hero-container {
		height: auto;
		background-image: url('/app/uploads/2023/08/header_vosgesinfo.svg');
		background-position: center 10vh;
		background-repeat: no-repeat;
		background-size: cover;
		margin-bottom: 0;
		display: flex;
		min-height: 100vh;
		flex-direction: column;
	}
	
	.my-atropos {
		display: none !important;
	}

	.menu-container {
		position: relative;
		bottom: unset;
		left: unset;
		right: unset;
		width: auto;
		box-shadow: none;
	}
}

/* @media all and (min-width: 965px) {
	.hero__text {
		display: block;
	}
} */