body{
	background-color:#F2F2F2;
	font-family:Raleway, Arial, sans-serif;
	font-size:16px;
	color:#201646;
	margin:0;
	padding:0;
}

*{
	box-sizing:border-box;
}

/* bloc de gauche */
#visuel{
	background:url('../img/fond-landingpage.jpg');
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	display:flex;
	align-items:center;
	justify-content:center;
	min-height:calc(100vh - 30px);
}

#visuel #visuel-content{
	width:100%;
	max-width:600px;
	display:flex;
	flex-flow: column;
}

#visuel #visuel-content #container-logo{
	background:rgba(255,255,255,0.7);
	text-align:center;
	padding: 10px;
	display:flex;
	justify-content:space-around;
}

#visuel #visuel-content #container-logo img{
	width:auto;
	height:80px;
}

#visuel #visuel-content #container-texte{
	background-color:#FFF;
	padding:15px;
	width:100%;
	max-width:600px;
}

#visuel #visuel-content #container-texte h1{
	font-size:22px;
	margin:0;
	padding:0;
	margin-bottom:20px;
	font-weight:700;
}

#visuel #visuel-content #container-texte p{
	margin-bottom:15px;
}

#ligne-cta{
	text-align:right;
	margin-top:20px;
}

#ligne-cta .btn{
	text-decoration:none;
	font-family:Raleway, Arial, sans-serif;
	font-size:16px;
	color:#201646;
}

#footer{
	display:flex;
	justify-content:center;
	padding:5px 0;
	height:30px;
}
#footer ul{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:0;
}
#footer ul li:not(:last-child){
	margin-right:5px;
}
#footer ul li a{
	text-decoration:none;
	font-size:12px;
	color:#333;
}
#footer ul li:not(:last-child):after{
	content:' / ';
}

/* bloc de droite */
#calendar{
	background-color:#fff;
	height:calc(100vh - 30px);
}

#overlay {
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	cursor: pointer;
}

#overlay #text{
	background-color:#fff;
	padding:20px;
	width:100%;
	max-width:600px;
}

#overlay #text .tabtitre{
	background-color:#0094c7;
	color:#000;
	padding:10px 15px;
	text-align:center;
	font-weight:600;
}

#overlay #text .tabline{
	display:flex;
	flex-flow:row wrap;
	font-size:12px;
}

#overlay #text .tabline > div{
	background-color:#cfd5ea;
	border:1px solid #fff;
	padding:10px;
}

#overlay #text .tabline > div ul{
	margin:0;
	padding:0;
	padding-left: 20px;
}

#overlay #text .tabline > div + div{
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
}

.large .col-sm-7{
	width:65%;
}

.large .col-sm-5{
	width:35%;
}

@media only screen and (min-width: 768px){
	#calendar{
		padding-top:20vh;
	}
}

@media only screen and (max-width: 768px){
	#visuel #visuel-content #container-logo img{
		width:auto;
		height:60px;
	}
}