@font-face {
	font-family: Geolight;
	src: url(../assets/GeosansLight.ttf);
}

html {
	font-family: GeoLight, arial;
	color: #060606;
}

body {
	margin: 0;
	padding: 0;
}

header#menu_desktop {
	z-index: 1000000;
}

nav#nav_desktop {
	background-color: #f8f7f7;
	font-size: 3em;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: stretch;
	margin: 0;
	z-index: 1000;
	box-shadow: 0px 0px 20px 0px #060606;
}

nav#nav_desktop > div a{
	/*background-color: pink; TEST*/
	text-decoration: none;
	color: #060606;
}

nav#nav_desktop > div a:hover{
	color: #f46464;
}

nav#nav_desktop > div {
	/*background-color: blue; TEST*/
	height: 90px;
	display: flex;
	align-items: center;
}

#downarrowcontact {
	color: #060606;
	font-size: 0.6em;
	opacity: 0.85;
	transition: all 0.2s ease-in-out;
	transform: rotate(-90deg);
	position: relative;
	left: 7px;
	top: 4px;
	height: 4vw;
}

#addresslogo{
	position: absolute;
	top: 10px;
	left: 10px;
}

#logomenu {
	height: 70px;
	opacity: 0.90;
}

#contactpos {
	position: relative;
}

#hovercontact:hover #dropdownmenugeneral {
	visibility: visible;
	transform: rotateX(0deg);
	opacity: 1;
}

#hovercontact:hover #boxshadowdropdown {
	visibility: visible;
	transform: rotateX(0);
	opacity: 1;
}

#hovercontact:hover #downarrowcontact {
	transform: rotate(0deg);
}

#boxshadowdropdown {
	transform: rotateX(90deg);
	visibility: hidden;
	background-color: transparent;
	position: absolute;
	top: 90px;
	padding: 0px 20px;
	width: 20vw;
	height: 30vh;
	margin-left: -20px;
	box-shadow: 0px 0px 20px 0px #060606;
	transition: transform 0.2s ease-out, opacity 0.15s ease-out;
	clip-path: polygon(-20% 0, 120% 0, 120% 120%, -20% 120%);
	transform-origin: top center;
}

#dropdownmenugeneral {
	visibility: hidden;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	background-color: #f8f7f7;
	top: 90px;
	padding: 0px 20px;
	width: 20vw;
	height: 30vh;
	margin-left: -20px;
	font-size: 2.5vw;
	transform: rotateX(90deg);
	opacity: 0;
	transition: transform 0.2s ease-out, opacity 0.15s ease-out;
	transform-origin: top center;
}

#dropdownmenugeneral div {
	text-align: left;
	height: 90px;
	width: 100%;
}

.margintopless {
	 padding-top:2vh;
 }


/* Flèche retour */

#fleche {
	height: 50px;
	width: 50px;
	background-color: #f8f7f7;
	border-radius:50%;
	z-index: 1;
}

#fleche_retour {
	position: fixed;
	bottom: 3vh;
	right: 3vh;
	z-index: 1;
}

/* Footer */

footer {
	position: relative;
	bottom:0%;
	color:white;
	margin-top:200px;
	background-color: #080808;
	width:100%;
	font-size: 150%;
}

footer a {
  text-decoration:none;
  color:white;
}

footer h1 {
	font-size: 150%;
	text-align: left;
}

#footer_div {
	display: flex;
	flex-direction: row;
	width:100%;
	flex-wrap: wrap;
	flex-grow: 1;
}

footer > div div {
	flex-grow: 1;
	align-items: center;
	display: inline-block;
	margin-left: 1vw;
	width: calc(25% - 3vw);
}

footer div ul li a {
	transition: color .3s;
}

footer div ul li a:hover {
		color:#f46464;
}

#copyright {
	bottom: 2%;
	right: 1%;
	text-align: right;
	margin-right: 2%;
	margin-bottom: 1%;
	font-size: 60%;
}

#li_footer_legal {
	overflow-wrap: break-word;
	max-width: 30vw;
}

.footer_photos {
	width:2vw;
	margin-right: 1vw;
	margin-left: 1vw;
}

/* Responsive */

#header_responsive {
	display: none;
}

@media(max-width: 1275px){
	#menu_desktop {
		display: none;
	}

	#header_responsive {
		display: block;
	}

	header#header_responsive nav {
		background-color: #f8f7f7;
		font-size: 3em;
		box-shadow: 0px 0px 20px 0px #060606;
		height:5vw;
	}

 	nav img {
		height:4vw;
		position: absolute;
		top:0.5vw;
		left:46vw;
	}

	#menuToggle {
	  position: relative;
		top:1.5vw;
		margin-left: 2.5vw;
	  z-index: 1;
	}

	#menuToggle input
	{
	  width: 4vw;
	  height: 3.2vw;
	  position: absolute;
	  top: -0.7vw;
	  left: -0.7vw;
	  cursor: pointer;
	  opacity: 0;
	  z-index: 2;
	}

	#menuToggle span
	{
	  display: block;
	  width: 3.3vw;
	  height: 0.4vw;
	  margin-bottom: 0.5vw;
	  position: relative;
	  background: #cdcdcd;
	  border-radius: 3px;
	  z-index: 1;
	  transform-origin: 4px 0px;
	  transition: all 0.5s;
	}

	#menuToggle span:first-child
	{
	  transform-origin: 0% 0%;
	}

	#menuToggle span:nth-last-child(2)
	{
	  transform-origin: 0% 100%;
	}

	#menuToggle input:checked ~ span
	{
	  opacity: 1;
	  transform: rotate(45deg) translate(-2px, -1px);
	  background: #232323;
	}

	#menuToggle input:checked ~ span:nth-last-child(3)
	{
	  opacity: 0;
	  transform: rotate(0deg) scale(0.2, 0.2);
	}

	#menuToggle input:checked ~ span:nth-last-child(2)
	{
	  transform: rotate(-45deg) translate(0, -1px);
	}

	#menu
	{
	  position: absolute;
	  width: 50vw;
	  margin: -100px 0 0 -50px;
	  padding: 5vw;
	  padding-top: 10vw;
	  background: #f8f7f7;
	  transform: translate(-100%, 0);
	  transition: transform 0.5s;
		box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
	}

	#menuToggle input:checked ~ div#menu
	{
	  transform: none;
	}

	#menu div a{
		color: #060606;
		text-decoration: none;
	}

	#menu div {
		padding: 2vh 0 2vh 0;
		border-bottom: 1px solid black;
	}

	#menu div a:hover{
		color:  #f46464;
	}
}

/* Syling général */

.title {
	font-size:2.5em;
	color: #060606;
}

.subtitle {
	font-size: 1.8em;
	color: #060606;
}

.div_title {
	font-size: 1.5em;
	color: #060606;
}

.text {
	font-size: 1em;
	color: #060606;
}

.mega_div {
	color: #060606;
	width:80%;
	background-color: #F8F9F9;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.sub_div {
	color: #060606;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s ease-out;
}

.sub_div:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	transform: scale3d(1.03, 1.03, 1);
}

.link {
	font-style: italic;
	font-weight: bold;
	color: hotpink;
}


.link:hover {
	color:  #f46464;
}

.button {
	text-align: center;
	transition: transform .2s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding : 0.7vw 4vw 0.7vw 4vw;
	background-color: #36ae85;
}

.button:hover {
	transform:scale3d(1.1, 1.1, 1);
	transition: transform .4s;
	box-shadow: inset 0px 0px 10px 0px rgba(0,128,0,0.75);
}
