/*------------------------------------------------- General -------------------------------------------------*/

*{
	margin: 0;
	padding: 0;
}

:root {
	--main-blue: #3668ad;
	--txt-white: #fff;
	--txt-black: #000;
}

html{
	font: normal 16px sans-serif;
	color: #fff;
	background-color: #3668ad;
	width: 100%;
}

@media all and (max-width: 600px){
	html{
		font: normal 11px sans-serif;
		color: #fff;
		background-color: #3668ad;
		width: 100%;
	}
}

.allSections{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 5%;
	top: 100px;
	width: 100hv;
}

nav{
	list-style: none;
}

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

a:hover{
	color: #3668ad;
}

hr{
	width: 80%;
	height: 2px;
	background-color: #3668ad;
	border: 0;
	margin-left: 10%;
	margin-right: 10%;
}

h1{
	font: bold 52px 'Open Sans', sans-serif;
}

@media all and (max-width: 1100px){
	h1{
		font: bold 36px 'Open Sans', sans-serif;
	}
}

@media all and (max-width: 600px){
	h1{
		font: bold 24px 'Open Sans', sans-serif;
	}
}

h2{
	margin-left: 50px;
}

h3{
	font: bold 28px sans-serif;
	margin: 30px 0 10px 10%;
	text-align: left;
}

@media all and (max-width: 1100px){
	h3{
		font: bold 28px sans-serif;
		margin: 0px 0 10px 10%;
		padding-top: 30px;
		text-align: left;
	}
}

@media all and (max-width: 600px){
	h3{
		font: bold 21px sans-serif;
		margin: 0px 0 10px 10%;
		padding-top: 30px;
		text-align: left;
	}
}

h4{
	font: normal 28px 'Open Sans', sans-serif;
	margin-bottom: 20px;
}

@media all and (max-width: 1100px){
	h4{
		font: normal 20px 'Open Sans', sans-serif;
		margin-bottom: 10px;
	}
}

@media all and (max-width: 600px){
	h4{
		font: normal 16px 'Open Sans', sans-serif;
		margin-bottom: 10px;
	}
}

h5{
	font: bold 18px 'Open Sans', sans-serif;
	margin-bottom: 10px;
}

@media all and (max-width: 600px){
	h5{
		font: bold 14px 'Open Sans', sans-serif;
		margin-bottom: 10px;
	}
}

h6{
	font: normal 12px 'Open Sans', sans-serif;
}

section{
	margin-bottom: 10px;
}

/*------------------------------------------------- Header -------------------------------------------------*/

header{
	position: fixed;
	float: left;
	background-color: #000;
	height: 80px;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

@media all and (max-width: 1100px){
	header{
		position: fixed;
		float: left;
		background-color: #000;
		height: 60px;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: #fff;
	}
}

@media all and (max-width: 600px){
	header{
		position: fixed;
		float: left;
		background-color: #000;
		height: 40px;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		vertical-align: center;
		color: #fff;
	}
}

.logo{
	opacity: 1;
}

.logo:hover{
	opacity: 0.8;
}

.logo img{
	max-height: 100%;
	object-fit: contain;
}

@media all and (max-width: 1100px){
	.logo img{
		width: 70%;
		object-fit: scale-down;
	}
}

@media all and (max-width: 600px){
	.logo img{
		width: 80%;
		top: 0;
		object-fit: contain;
	}
}

header nav{
	display: flex;
	justify-content: center;
}

@media all and (max-width: 1100px){
	header nav{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: -65px;
		left: 0;
		right: 0;
		margin-top: 120px;
		background-color: #000;
		text-align: center;
		vertical-align: center;
		width: auto;
		height: 40px;
	}
}

@media all and (max-width: 600px){
	header nav{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin-top: 40px;
		background-color: #000;
		text-align: center;
		vertical-align: center;
		width: auto;
		height: 30px;
	}
}

header nav li{
	margin: 0 20px;
}

@media all and (max-width: 1100px){
	header nav li{
		margin: 0 20px;
		position: relative;
		float: left;
		left: 0;
		right: 0;
		text-align: center;
		vertical-align: center;
	}
}

@media all and (max-width: 600px){
	header nav li{
		margin: 0 10px;
		position: relative;
		float: left;
		left: 0;
		right: 0;
		text-align: center;
		vertical-align: center;
	}
}

.menu-item{
	display: inline-block;
	position: relative;
}

@media all and (max-width: 1100px){
	.menu-item{
		display: inline;
		float: left;
		position: relative;
		text-align: center;
		vertical-align: center;
		font-size: 12px;
	}
}

@media all and (max-width: 600px){
	.menu-item{
		display: inline;
		float: left;
		position: relative;
		text-align: center;
		vertical-align: center;
		font-size: 8px;
	}
}

.menu-item:after{
	content: '';
	display: block;
	margin: auto;
	height: 1px;
	width: 0px;
	background: transparent;
	transition: width .4s ease, background-color .4s ease;
}

.menu-item:hover:after{
	width: 100%;
	background: #3668ad;
}

.lang-image{
	margin-right: 50px;
	opacity: 1;
}

@media all and (max-width: 1100px){
	.lang-image img{
		width: 60%;
		opacity: 1;
	}
}

@media all and (max-width: 600px){
	.lang-image img{
		width: 60%;
		opacity: 1;
	}
}

.lang-image:hover{
	opacity: 0.8;
}

header hr{
	display: none;
}

@media all and (max-width: 1100px){
	header hr{
		position: absolute;
		top: 55px;
		display: inline;
	}
}

@media all and (max-width: 600px){
	header hr{
		position: absolute;
		top: 40px;
		display: inline;
	}
}

/*------------------------------------------------- Accueil -------------------------------------------------*/

.home{
	position: relative;
	background-color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: calc(100vh - 100px);
	margin-top: 90px;
	color: #fff;
	text-align: center;
}

@media all and (max-width: 1100px){
	.home{
		position: relative;
		background-color: #fff;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		width: 100%;
		height: calc(100vh - 100px);
		margin-top: 100px;
		color: #fff;
		text-align: center;
	}
}

@media all and (max-width: 600px){
	.home{
		position: relative;
		background-color: #fff;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		width: 100%;
		height: calc(100vh - 100px);
		margin-top: 80px;
		color: #fff;
		text-align: center;
	}
}

.titre{
	background-color: #3668ad;
	opacity: 0.75;
	width: 100%;
	height: 150px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media all and (max-width: 1100px){
	.titre{
		background-color: #3668ad;
		opacity: 0.75;
		width: 100%;
		height: 70px;
		padding: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media all and (max-width: 600px){
	.titre{
		background-color: #3668ad;
		opacity: 0.75;
		width: 100%;
		height: 50px;
		padding: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.titre p{
	text-align: center;
	padding: 0 200px;
}

.home .background-image{
	position: absolute;
	height: auto;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	background-size: no-repeat fixed 0;
	text-align: center;
	vertical-align: center;
	object-fit: contain;
}

.home .background-image img{
	position: relative;
	width: 100%;
	height: calc(100vh - 100px);
	text-align: center;
	vertical-align: center;
	object-fit: contain;
	min-width: 100%;
	min-height: auto;
}

/*------------------------------------------------- À propos -------------------------------------------------*/

.about{
	display: flex;
	justify-content: space-between;
	align-items : stretch;
	padding-top: 90px;
	margin-top: -90px;
}

@media all and (max-width: 1100px){
	.about{
		display: inline;
		width: 100%;
		padding-top: 100px;
		margin-top: -100px;
	}
}

@media all and (max-width: 600px){
	.about{
		display: inline;
		width: 100%;
		padding-top: 80px;
		margin-top: -80px;
	}
}

.about div{
	background-color : #000;
}

.about p{
	text-align: justify;
	margin: 10px 10% 30px 10%;
}

.about-text img{
	width: 70%;
	margin-bottom: 30px;
	margin-left: 15%;
}

.about-text{
	width: 60%;
	margin-right: 10px;
	padding-bottom: 30px;
}

@media all and (max-width: 1100px){
	.about-text{
		width: 100%;
		padding-bottom: 30px;
		margin-bottom: 10px;
	}
}

.about-image{
	width: 40%;
	height: auto;
	text-align: center;
	padding: 30px 0;
}

@media all and (max-width: 1100px){
	.about-image{
		width: 100%;
		height: auto;
		text-align: center;
		padding: 30px 0;
	}
}

.collab{
	font: bold 24px 'Open Sans', sans-serif;
	text-align: center;
	margin: 0px 10%;
}

@media all and (max-width: 600px){
	.collab{
		font: bold 16px 'Open Sans', sans-serif;
		text-align: center;
		margin: 0px 10%;
	}
}

.about-image img{
	width: 50%;
	height: auto;
	object-fit: contain;
	margin: 20px 0px;
}

.about-image a{
	z-index: 2;
	font-size: 18px;
}

@media all and (max-width: 600px){
	.about-image a{
		z-index: 2;
		font-size: 12px;
	}
}

.about-image a img{
	width: 50%;
	margin: 20px 0px;
}

.about-image h5{
	margin: 20px 0px;
}

.about-image li{
	margin: 10px 10%;
	text-align: left;
}

.about-image ul{
	margin-bottom: 20px;
}

.biotonix{
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.biotonix:hover{
	opacity: 0.8;
}

/*------------------------------------------------- Produit -------------------------------------------------*/

.product{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	color: #000;
	padding-top: 90px;
	margin-top: -90px;
	overflow: hidden;
}

@media all and (max-width: 1100px){
	.product{
		display: inline;
		width: 100%;
		color: #000;
		padding-top: 100px;
		margin-top: -100px;
		overflow: hidden;
	}
}

@media all and (max-width: 1100px){
	.product{
		display: inline;
		width: 100%;
		color: #000;
		padding-top: 80px;
		margin-top: -80px;
		overflow: hidden;
	}
}

.product div {
	background-color: #fff;
}

.product p, .product ul{
	text-align: justify;
	margin: 10px 10% 30px 10%;
}

.product h5{
	margin: 10px 10%;
}

.product li{
	margin-left: 20px;
}

.product-image{
	width: 40%;
	height: auto;
	margin-right: 10px;
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
	overflow: hidden;
}

@media all and (max-width: 1100px){
	.product-image{
		width: 100%;
		height: auto;
		margin-right: 10px;
		margin-bottom: 10px;
		padding-top: 100px;
		padding-bottom: 100px;
		text-align: center;
		overflow: hidden;
	}
}
	
.product-image img{
	width: 90%;
	height: auto;
	object-fit: contain;
	margin-bottom: 20px;
	overflow: hidden;
}

.product-image .prix{
	font-size: 24px;
	margin-bottom: 0px;
	text-align: center;
}

.product-text{
	width: 60%;
	padding-bottom: 30px;
	height: auto;
	overflow: hidden;
}

@media all and (max-width: 1100px){
	.product-text{
		width: 100%;
		padding-bottom: 30px;
		height: auto;
		overflow: hidden;
	}
}

.product ol{
	margin: 0px 40px;
}

.colors-list{
	list-style: none;
	display: flex;
	flex-direction: space-around;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-around;
}

.colors-list li{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.colors{
	width: 65px;
	margin: 20px 2px 10px;
}

@media all and (max-width: 600px){
	.colors{
		width: 40px;
		margin: 20px 5px 10px;
	}
}

/*------------------------------------------------- Vidéo -------------------------------------------------*/

.video{
	display: flex;
	justify-content: space-between;
	align-items : stretch;
	color : #fff;
	padding-top: 90px;
	margin-top: -90px;
}

@media all and (max-width: 1100px){
	.video{
		display: inline;
		color : #fff;
		padding-top: 100px;
		margin-top: -100px;
	}
}

@media all and (max-width: 600px){
	.video{
		display: inline;
		color : #fff;
		padding-top: 80px;
		margin-top: -80px;
	}
}

.video div{
	background-color: #000;
}

.video p{
	text-align: justify;
	margin: 10px 10% 30px 10%;
}

.video-empty{
	width: 15%;
}

@media all and (max-width: 1100px){
	.video-empty{
		display: none;
	}
}

.video-video{
	width: 70%;
	margin: 0 10px;
}

@media all and (max-width: 1100px){
	.video-video{
		width: 100%;
		margin-left: 0;
	}
}

.video video{
	width: 80%;
	height: auto;
	margin: 30px 0 30px 10%;
}

/*------------------------------------------------- Contact -------------------------------------------------*/

.contact{
	display: flex;
	justify-content: space-between;
	align-items : stretch;
	color : #000;
	padding-top: 90px;
	margin-top: -90px;
}

@media all and (max-width: 1100px){
	.contact{
		display: inline;
		color : #000;
		padding-top: 100px;
		margin-top: -100px;
	}
}

@media all and (max-width: 1100px){
	.contact{
		display: inline;
		color : #000;
		padding-top: 80px;
		margin-top: -80px;
	}
}

.contact div{
	background-color: #fff;
}

.contact p{
	text-align: justify;
	margin: 10px 10% 30px 10%;
}

.contact .infos{
	margin-top: -10px;
	margin-bottom: 10px;
	text-align: center;
}

.contact-form{
	width: 40%;
	margin-right: 10px;
	padding-bottom: 30px;
	text-align: center;
	max-height: 500px;
	overflow: hidden;
}

@media all and (max-width: 1100px){
	.contact-form{
		width: 100%;
		margin-right: 10px;
		margin-bottom: 10px;
		padding-bottom: 30px;
		text-align: center;
		min-height: 350px;
		max-height: 550px;
		overflow: hidden;
	}
}

.contact-form img{
	width: 50%;
	margin: 20px 0;
}

.contact-map{
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	overflow: hidden;
}

@media all and (max-width: 1100px){
	.contact-map{
		width: 100%;
		height: 500px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		vertical-align: center;
		padding: 0;
		margin: 0;
		overflow: hidden;
	}
}

.contact-map iframe{
	width: 90%;
	height: 90%;
}

/*------------------------------------------------- Footer -------------------------------------------------*/

footer{
	position: absolute;
	align-items: center;
	text-align: center;
	vertical-align: bottom;
	color: #fff;
	background-color: #000;
	height: 50px;
	width: 100%;
	display: flex;
	justify-content: center;
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}

@media all and (max-width: 600px){
	footer p{
		text-transform: uppercase;
		font-size: 10px;
		color: rgba(255,255,255,0.6);
	}
}