 /* Style de la page d'accueil */

header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 65px;
	background-color: #fff;
	color: #111;
}

div.img-titre {
	height: 150px;
	display: flex;
	align-items: flex-start;
}

div.titre {
	height: 150px;
	display: flex;
	flex-flow: wrap;
	flex-direction: column;
	align-content: space-around;
}

div.titre * {
	margin: auto 0;
}

div.titre h2 {
	font-weight: 400;
}

div.titre h2 span {
	letter-spacing: 7px;
}

header img {
	width: 150px;
	height: 150px;
	margin-right: 20px;
}

#toggleLang, #toggleLang a {
	color: #111;
	font-weight: 600;
}

#toggleLang a:hover {
	color: #5551FF;
	text-decoration: underline;
}

#boutonFR, #boutonEN {
	display: inline;
	width: 30px;
	text-align: center;
}

main {
	width: 100vw;
	display: flex;
	flex-direction: column;
	align-content: stretch;
	color: #fff;
}

article {
	width: 100%;
	height: auto;
	min-height: 90px;
	background-color: #111;
	display: flex;
	flex-direction: column;
	transition: max-height 1s linear -.2s;
}

article:nth-child(odd) {
	background-color: #5551FF;
}

article > .texte {
	width: 60%;
	height: 0%;
	margin: auto 65px;
	margin-bottom: 20px;
}

.marquee {
	position: relative;
	width: 100vw;
	max-width: 100%;
	height: 90px;
	overflow-x: hidden;
}

article:hover h3 {
	color: transparent;
	-webkit-text-stroke: 1px #fff;
}

.track {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	-webkit-animation: marquee 50s linear infinite -50s;
	animation: marquee 50s linear infinite -50s;
}

.track2 {
	position: absolute;
	text-align: right;
	white-space: nowrap;
	will-change: transform;
	-webkit-animation: marquee2 50s linear infinite -50s;
	animation: marquee2 50s linear infinite -50s;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@-webkit-keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes marquee2 {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}
@-webkit-keyframes marquee2 {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

.content {
	color: #fff;
}

footer {
	padding: 0px 65px;
	padding-bottom: 20px;
	display: inline-block;
	background-color: #5551FF;
	color: #fff;
}

footer .partenaires {
	display: inline-block;
	width: 100%;
}

footer .partenaires img {
	width: 170px;
	height: auto;
	filter: invert(100%);
	margin: 0 auto;
}

@media screen and (max-width: 900px){
	header {
		padding: 20px;
	}
}

@media screen and (max-width: 750px){
	h1 {
		font-size: 45px;
	}
	div.titre h2 {
		font-size: 24px;
		font-weight: 400;
		letter-spacing: -1px;
	}
	div.titre h2 span {
		letter-spacing: 3px;
	}

	div.titre{
		height: auto;
	}

	div.titre *{
		margin: 0;
	}

	div.img-titre {
		flex-direction: column;
		height: auto;
	}

	header img {
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 1280px){
	article:hover > .texte, article > .texte {
		margin: auto 20px;
		margin-bottom: 20px;
		width: auto;
		text-align: justify;
		opacity: 1;
		transition: none;
		transform: translateY(0px);
	}

	article {
		max-height: none;
	}

	footer {
		padding: 0px 20px;
	}

	footer .partenaires img {
		width: 90px;
		height: auto;
	}

}
