@charset "utf-8";
/* CSS Document */

/* MAIN CSS */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: arial;
}
body a {
	text-decoration: none;
	color: #d48500;
}

h1 {
	font-size: 24px;
	color: #004487;
}

.lang {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	background-color: #004487;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 16px;
	font-weight: 700;
}
.lang a {
	color: #fff;
}


/* HEADER */
header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}
.logo img {
	width: 130px;
	height: auto;
	margin: 10px 10px 10px 40px;
}
header h1 {
	font-size: 2em;
	color: #193754;
	margin-left: 20px;
}

.headertel {
	margin-top: 20px;
	margin-right: 40px;
	margin-left: auto;
}
.headertel p {
	font-size: 1.8em;
	font-weight: 700;
	color: #004487;
}
.headertel h4 {
	margin-top: -1.0em;
	font-size: 2em;
	font-weight: 800;
	color: #d48500;
}
@media (max-width: 1000px) {
	.logo img {
		width: 100px;
	}
	header h1 {
		font-size: 1.5em;
	}
	.headertel {
		text-align: center;
	}
	.headertel p {
		font-size: 1.2em;
	}
	.headertel h4 {
		font-size: 1.5em;
	}
}
@media (max-width: 800px) {
	header {
		flex-flow: column nowrap;
		justify-content: flex-start;
		align-items: center;
	}
	.logo img {
		maring: 10px;
	}
	.headertel {
		margin: 0px;
	}
}

/* SPLASH */
.splash {
	width: 100%;
	height: 500px;
	background-image: url(img/splash.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
}
.splash h1 {
	margin-left: 40px;
	color: #fff;
	background-color: #006bd3;
	padding: 20px;
	text-transform: uppercase;
	font-size: 1.6em;
}
.splash h2 {
	font-size: 1.4em;
	color: #fff;
	background-color: #006bd3;
	padding: 20px;
	margin-left: 40px;
	margin-top: 0.2em;
	text-transform: uppercase;
}


/* INTRO */
#intro {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	aling-items: flex-start;
}
.introzone1 {
	width: 42%
}
.introzone2 {
	width: 42%;
}
@media (max-width: 800px) {
	#intro {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
	}
	.introzone1 {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.introzone2 {
		width: 100%;
	}
	.introzone2 img{
		width: 100%;
	}
}

.vendeurs {
	margin-top: 40px;
	color: #004487;
}
li {
	color: #193754;
	font-weight: 600;
}

/* SLOGAN */
#slogan  {
	background-color: #eee;
	width: 100%;
	height: 150px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	align-items: center;
}
#slogan h1 {
	font-size: 2em;
	text-align: center;
	text-transform: uppercase;
}
#slogan img {
	width: 100px;
	hwight: 100px;
}
@media (max-width: 1200px) {
	#slogan h1 {
		font-size: 1.5em;
	}
}
@media (max-width: 1000px) {
	#slogan h1 {
		font-size: 1.2em;
	}
}
@media (max-width: 800px) {
	#slogan {
		flex-flow: column nowrap;
	}
	#slogan h1 {
		font-size: 1em;
	}
	#slogan img {
		width: 75px;
		height: 75px;
	}
}



/* CONTACT */
#contact {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
	background: rgb(0,68,135);
	background: linear-gradient(0deg, rgba(0,68,135,1) 0%, rgba(0,157,211,1) 100%);
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	alig-items: center;
}
.contactintro h1 {
	font-size: 2em;
	color: #fff;
}
.contactintro h3 {
	margin-top: -1em;
	color: #eee;
}
.contactintro h2 {
	margin-top: 40px;
	color: #fff;
}
.contactinfo {
	margin-top: auto;
	margin-bottom: auto;
}
.contactinfo h4 {
	color: #eee;
}
.contactinfo h3 {
	color: #fff;
	margin-top: -0.8em;
}

@media (max-width: 800px) {
	#contact {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
	}
	.contactintro {
		text-align: center;
	}
}

/* FOOTER */
footer {
	width: 100%;
	background-color: #193754;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
footer p {
	font-size: 0.9em;
	color: #fff;
}
.footercopyright {
	margin-left: 40px;
}
.footereco {
	margin-right: 40px;
}
.footerlegal a {
	color: #fff;
}

.stc {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.stc img {
	width: 50px;
	height: auto;
	margin-left:10px;
}
@media (max-width: 800px) {
	footer {
		flex-flow: column nowrap;
	}
	.footercopyright {
		margin-left: auto;
		margin-right: auto;
	}
	.footereco {
		margin: 10px auto 10px auto;
	}
}

/* ANIMATION */
.animtitle1 {
	animation-name: text-focus;
	animation-duration: 1.5s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fil-mode: none;
}
.animtitle2 {
	animation-name: text-focus;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fil-mode: none;
}
@keyframes text-focus {
	0% {
		filter: blur(12px);
		opacity: 0;
	}
	50% {
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		filter: blur(0);
		opacity: 1;
	}
}