@import url('https://fonts.googleapis.com/css?family=Hind+Vadodara:400,600&display=swap');

html{
	min-height: 100vh;
}
#body_attente{
	margin:auto;
	display: flex;
	min-height: 100vh;
	background:url('../../../images/sites/site_en_travaux/fond_attente.svg') center center no-repeat;
	background-size:cover;
	font-family: 'Hind Vadodara', sans-serif;
	overflow: hidden;
	position:relative;
}
#container_attente{
	margin:auto;
	display:flex;
	flex-wrap: wrap;
	width:100%;
	max-width:1200px;
}
#container_attente>div{
	width:50%;
	margin:auto;
	opacity: 0;
	visibility: hidden;
}
#container_attente #infos_attente{
	transition:0.3s ease;
}
#container_attente #image_attente{
	transition:0.3s ease 1s;
}
body.active #container_attente #infos_attente, body.active #container_attente #image_attente{
	opacity: 1;
	visibility: visible;
}
#container_attente #infos_attente h1{
	color:#FFF;
	margin:auto auto 30px;
	font-weight:600;
	font-size: 4em;
    line-height: 1em;
}
#container_attente #infos_attente p{
	color:#FFF;
	margin:5px auto;
	font-size: 1.4em;
    line-height: 1.4em;
}
#container_attente #image_attente img{
	max-width: 500px;
    display: block;
    margin: auto;
}
#container_cercles{
	height: 100%;
	overflow: hidden;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.container_cercle{
	position:absolute;
}
.cercle{
	position:absolute;
	top:0;
	left:0;
	background:rgba(255, 255, 255, 0.25);
	border-radius:50%;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}
#cercle1{
	width: 225px;
	height: 225px;
	bottom: 50px;
	left: 50px;
	-webkit-animation:cercle 5s infinite linear;
}
#cercle2{
	width: 110px;
	height: 110px;
	bottom: 280px;
	left: -40px;
	-webkit-animation:cercle 3s infinite linear;
}
#cercle3{
	width: 150px;
	height: 150px;
	top: 30px;
	right: 20px;
	-webkit-animation:cercle 4s infinite linear;
}
#cercle4{
	width: 600px;
	height: 600px;
	bottom: -300px;
	right: -300px;
	-webkit-animation:cercle 6s infinite linear;
}
@-webkit-keyframes cercle {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
#footer{
	position:absolute;
	bottom:-100px;
	left:0;
	width:100%;
	padding:20px 0;
	background:#000;
	display:flex;
	justify-content: center;
	align-items: center;
	transition:0.4s ease 2s;
}
body.active #footer{
	bottom:0;
}
#footer #logo{
	width:60px;
	display:block;
}
#footer div{
	margin-left:30px;
	padding-left:30px;
	border-left:1px solid rgba(255, 255, 255, 0.6);
}
#footer p{
	margin: 2px auto;
}
#footer a{
	text-decoration: none;
	transition: 0.2s ease;
	color: #FFF;
	font-size:0.9em;
	display:inline-block;
	vertical-align: middle;
}
#footer a:hover{
	color:#2f9cd8;
}


@media screen and (max-width: 1240px) {
	#container_attente{
		flex-direction: column;
		text-align: center;
	}
	#container_attente>div{
		width:100%;
	}
	#container_attente #image_attente img{
		max-width:300px;
		margin-top:40px;
	}
	#container_attente #infos_attente h1{
		font-size:2.8em;
	}
	#container_attente #infos_attente p{
		font-size:1.2em;
	}
}