/*

Project : Crèche La Flottille
Author  : Mathieu DUBOIS
Version : v.1.0.0
Date    : 24/11/2017

*/

#googleForm {
	overflow-y: scroll;
}


/*--------------------------------------------*/
/* GLOBAL */
/*--------------------------------------------*/

html {
	box-sizing: border-box;
	font-size: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
	outline: none;
}

body {
	font-family: 'Raleway', sans-serif, 'HelveticaNeue-Light', 'Helvetica Neue Light',
	'Helvetica Neue', 'Helvetica', Arial, sans-serif;
	position: relative;
	font-size: 1em; /* soit 16px */
	line-height: 1.5;
	font-weight: 400;
	color: #76787c;
	background-color: #fff;
}

/* Typographie */
/*------------------------*/
h1, .h1-like,
h2, .h2-like,
h3, .h3-like,
h4, .h4-like,
h5, .h5-like,
h6, .h6-like {
	font-weight: 300;
	color: #fff;
	line-height: 1.5;
	margin: 0 0 0.625em 0;
}

h1, .h1-like {
	font-size: 1.72em;
	font-weight: bold;
	/*text-transform: uppercase;*/
}

h2, .h2-like {
	font-size: 1.55em;
	font-weight: bold;
}
h3, .h3-like {
	font-size: 1.25em;
}
h4, .h4-like {
	font-size: 1.25em;
}
h5, .h5-like {
	font-size: 1.125em;
	/*text-transform: uppercase;*/
}
h6, .h6-like {
	font-size: 0.9em;
}
p {
	/*margin: 0 0 0.625em 0;*/
	margin: 0 0 1em 0;
}
/* links */
/*------------------------*/

a {
	text-decoration: none;
	color: #f37022;
}


/* table */
/*---------------------------*/
table {
	width: 100%;
	margin: 0.625em 0;
	table-layout: fixed;
	border-collapse: collapse;
}
tr,
td,
th {
	vertical-align: middle;
}
thead th {
	padding: 0.625em 0;
	border-bottom: 2px solid #c1c1c4;
	text-align: left;
	font-weight: 700;
}
tbody td {
	padding: 0.625em;
	border-bottom: 1px solid #c1c1c4;
}
tbody tr:nth-child(even) {
	background: #E7E7E7;
}


/* Forms */
/* -----------------------------------------------------*/
form ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
input,
label,
select {
    display: block;
    font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    font-size: 1em;
}

label {
    margin-bottom: .35938em;
    font-weight: 700;
    cursor: pointer;
}

label.required:after {
    content: " *";
}

textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple="multiple"] {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: .71875em;
    padding: .625em;
    border: 1px solid #e8e8e9;
    border-radius: 0;
    font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    font-size: 1em;
    background-color: #fff;
    box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

textarea:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="url"]:hover,
input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
select[multiple="multiple"]:hover {
    border-color: #ceced0;
}

textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple="multiple"]:focus {
    border-color: #f36;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 51, 102, 0.9);
}

textarea {
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin-right: .71875em;
}

input[type="file"] {
    width: 100%;
    margin-bottom: .71875em;
    padding-bottom: .23958em;
}
input[type="submit"] {
   cursor: pointer;
}
select {
    width: auto;
    margin-bottom: .71875em;
    max-width: 100%;
}

fieldset {
    margin: 0 0 .71875em 0;
    padding: 1.4375em;
    border: 1px solid #e8e8e9;
    border-radius: 0;
    background: #fafafa;
}

::-webkit-input-placeholder {
    color: #c8c9ca;
}

:-moz-placeholder {
    color: #c8c9ca;
}

::-moz-placeholder {
    color: #c8c9ca;
}

:-ms-input-placeholder {
    color: #c8c9ca;
}
/*input[id="nom"], input[id="prenom"] {
    display: inline-block;
    width: 75%;
}
 label[for="nom"], label[for="prenom"] {
    display: inline-block;
    width: 20%;
}
*/
/* Grouping content */
/*------------------------*/

img,
audio,
video {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
audio {
	min-height: 35px;
}

figure {
	margin: 0;
}
/* browsehappy */
/*------------------------*/
.browsehappy {
	background-color: #5ab1ab;
	color: #324b4b;
	padding: 20px;
	margin: 20px 0;
	border:10px solid;
	text-align: center;
}
.browsehappy a {
	color: #fff;
	text-decoration: underline;
}
.browsehappy a:hover {
	color: #fff;
	text-decoration: none;
}

/* iframe responsive */
/*------------------------*/
.box-iframe {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.box-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* buttons */
/*------------------------*/
.btn {
	position: relative;
	display: inline-block;
	background-color: #f36;
	color: #fff;
	border:none;
	border-radius: 1px;
	padding: 0 1.25em;
	line-height: 2.5;
/*	white-space: nowrap;*/
}
.btn--line-small {
	line-height: 2;
}
.btn--small {
	font-size: 0.75em;
}
.btn--large {
	font-size: 1.5em;
}

.btn--secondary {
	color: #fff;
	background-color: #f67b2c;
	border: 2px solid #f67b2c;
	text-transform: uppercase;
}


/*--------------------------------------------*/
/* GRID CSS */
/*--------------------------------------------*/

.grid:before,
.grid:after {
	display: block;
	content: '';
	clear: both;
}


.grid {
	margin-left: -10px;
	margin-right: -10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
[class*="col-"] {
	width: 100%;
}
.grid [class*="col-"] {
/*
	float: left;*/
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
}
.col-m-1 {
	width: 8.333%;
}
.col-m-2 {
	width: 16.667%;
}
.col-m-3 {
	width: 25%;
}
.col-m-4 {
	width: 33.333%;
}
.col-m-5 {
	width: 41.667%;
}
.col-m-6 {
	width: 50%;
}
.col-m-7 {
	width: 58.333%;
}
.col-m-8 {
	width: 66.667%;
}
.col-m-9 {
	width: 75%;
}
.col-m-10 {
	width: 83.333%;
}
.col-m-11 {
	width: 91.667%;
}
.col-m-12 {
	width: 100%;
}


.order-m-1 {
	order: 1;
}
.order-m-2 {
	order: 2;
}
.order-m-3 {
	order: 3;
}
.order-m-4 {
	order: 4;
}
.order-m-5 {
	order: 5;
}
.order-m-6 {
	order: 6;
}
.order-m-7 {
	order: 7;
}
.order-m-8 {
	order: 8;
}
.order-m-9 {
	order: 9;
}
.order-m-10 {
	order: 10;
}
.order-m-11 {
	order: 11;
}
.order-m-12 {
	order: 12;
}


.offset-m-1 {
	margin-left: 8.333%;
}
.offset-m-2 {
	margin-left: 16.667%;
}
.offset-m-3 {
	margin-left: 25%;
}
.offset-m-4 {
	margin-left: 33.333%;
}
.offset-m-5 {
	margin-left: 41.667%;
}
.offset-m-6 {
	margin-left: 50%;
}
.offset-m-7 {
	margin-left: 58.333%;
}
.offset-m-8 {
	margin-left: 66.667%;
}
.offset-m-9 {
	margin-left: 75%;
}
.offset-m-10 {
	margin-left: 83.333%;
}
.offset-m-11 {
	margin-left: 91.667%;
}
.offset-m-12 {
	margin-left: 100%;
}
.hide-m {
	display: none;
}
/* grid tablet view */
@media (min-width: 481px) {
	.col-t-1 {
		width: 8.333%;
	}
	.col-t-2 {
		width: 16.667%;
	}
	.col-t-3 {
		width: 25%;
	}
	.col-t-4 {
		width: 33.333%;
	}
	.col-t-5 {
		width: 41.667%;
	}
	.col-t-6 {
		width: 50%;
	}
	.col-t-7 {
		width: 58.333%;
	}
	.col-t-8 {
		width: 66.667%;
	}
	.col-t-9 {
		width: 75%;
	}
	.col-t-10 {
		width: 83.333%;
	}
	.col-t-11 {
		width: 91.667%;
	}
	.col-t-12 {
		width: 100%;
	}



	.order-t-1 {
		order: 1;
	}
	.order-t-2 {
		order: 2;
	}
	.order-t-3 {
		order: 3;
	}
	.order-t-4 {
		order: 4;
	}
	.order-t-5 {
		order: 5;
	}
	.order-t-6 {
		order: 6;
	}
	.order-t-7 {
		order: 7;
	}
	.order-t-8 {
		order: 8;
	}
	.order-t-9 {
		order: 9;
	}
	.order-t-10 {
		order: 10;
	}
	.order-t-11 {
		order: 11;
	}
	.order-t-12 {
		order: 12;
	}
	


	.offset-t-1 {
		margin-left: 8.333%;
	}
	.offset-t-2 {
		margin-left: 16.667%;
	}
	.offset-t-3 {
		margin-left: 25%;
	}
	.offset-t-4 {
		margin-left: 33.333%;
	}
	.offset-t-5 {
		margin-left: 41.667%;
	}
	.offset-t-6 {
		margin-left: 50%;
	}
	.offset-t-7 {
		margin-left: 58.333%;
	}
	.offset-t-8 {
		margin-left: 66.667%;
	}
	.offset-t-9 {
		margin-left: 75%;
	}
	.offset-t-10 {
		margin-left: 83.333%;
	}
	.offset-t-11 {
		margin-left: 91.667%;
	}
	.offset-t-12 {
		margin-left: 100%;
	}

}/* end of grid tablet view */


/* grid desktop view */
@media (min-width: 769px) {
	.col-d-1 {
		width: 8.333%;
	}
	.col-d-2 {
		width: 16.667%;
	}
	.col-d-3 {
		width: 25%;
	}
	.col-d-4 {
		width: 33.333%;
	}
	.col-d-5 {
		width: 41.667%;
	}
	.col-d-6 {
		width: 50%;
	}
	.col-d-7 {
		width: 58.333%;
	}
	.col-d-8 {
		width: 66.667%;
	}
	.col-d-9 {
		width: 75%;
	}
	.col-d-10 {
		width: 83.333%;
	}
	.col-d-11 {
		width: 91.667%;
	}
	.col-d-12 {
		width: 100%;
	}


	.order-d-1 {
		order: 1;
	}
	.order-d-2 {
		order: 2;
	}
	.order-d-3 {
		order: 3;
	}
	.order-d-4 {
		order: 4;
	}
	.order-d-5 {
		order: 5;
	}
	.order-d-6 {
		order: 6;
	}
	.order-d-7 {
		order: 7;
	}
	.order-d-8 {
		order: 8;
	}
	.order-d-9 {
		order: 9;
	}
	.order-d-10 {
		order: 10;
	}
	.order-d-11 {
		order: 11;
	}
	.order-d-12 {
		order: 12;
	}



	.offset-d-1 {
		margin-left: 8.333%;
	}
	.offset-d-2 {
		margin-left: 16.667%;
	}
	.offset-d-3 {
		margin-left: 25%;
	}
	.offset-d-4 {
		margin-left: 33.333%;
	}
	.offset-d-5 {
		margin-left: 41.667%;
	}
	.offset-d-6 {
		margin-left: 50%;
	}
	.offset-d-7 {
		margin-left: 58.333%;
	}
	.offset-d-8 {
		margin-left: 66.667%;
	}
	.offset-d-9 {
		margin-left: 75%;
	}
	.offset-d-10 {
		margin-left: 83.333%;
	}
	.offset-d-11 {
		margin-left: 91.667%;
	}
	.offset-d-12 {
		margin-left: 100%;
	}
	.show-d {
		display: block;
	}
}/* end of desktop tablet view */

/* 
/* helpers */
/*------------------------*/
.v-top {
	vertical-align: top;
}
.v-middle {
	vertical-align: middle;
}
.v-bottom {
	vertical-align: bottom;
}

.txt-right {
	text-align: right;
}

.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}


.txt-light {
	color: #fff;
}
.txt-medium {
	color: #ddd;
}
.txt-dark {
	color: #333;
}

.txt-blue {
	color: #3045a6;
}


.bg-light {
	background-color: #fff;
	padding-top: 40px;
	padding-bottom: 40px;
}
.bg-medium {
	background-color: #d8d8d8;
	padding-top: 40px;
	padding-bottom: 40px;
}
.bg-dark {
	background-color: #161b1f;
	padding-top: 40px;
	padding-bottom: 40px;
}
.center-box {
	float: none!important;
	margin-left: auto!important;
	margin-right: auto!important;
}

.round-box {
	border-radius: 50%;
}

.ul-clean {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style-type: none;
}
.overlay {
	background-color: rgba(0, 0, 0, 0.35);
;
	/*padding: 40px 0;*/
	padding: 20px 0;
}
/*
m = margin
a, t, b = all, top, bottom
n, s, m, l = none, small, medium, large
*/

.man {
	margin: 0!important;
}
.mas {
	margin: 20px!important;
}
.mam {
	margin: 40px!important;
}
.mal {
	margin: 60px!important;
}


.mtn {
	margin-top: 0!important;
}
.mts {
	margin-top: 20px!important;
}
.mtm {
	margin-top: 40px!important;
}
.mtl {
	margin-top: 60px!important;
}


.mbn {
	margin-bottom: 0!important;
}
.mbs {
	margin-bottom: 20px!important;
}
.mbm {
	margin-bottom: 40px!important;
}
.mbl {
	margin-bottom: 60px!important;
}
.mls {
	margin-left: 20px!important;
}
.mrs {
	margin-right: 20px!important;
}
/*--------------------------------------------*/
/* CONTENT */
/*--------------------------------------------*/
 /*.wrap {
 	max-width: 1210px;
 	width: 100%;
 	padding-left: 40px;
 	padding-right: 40px;
 	margin-left: auto;
 	margin-right: auto;
 }*/

 .wrap {
 	max-width: 960px;
 	width: 100%;
 	padding-left: 40px;
 	padding-right: 40px;
 	margin-left: auto;
 	margin-right: auto;
 }


/* header */
/*------------------------*/
#header { /* ou [id="header"] qui vaut 10*/
	background-color: #fff;
	margin-top: 20px;
}



/* logo */
/*------------------------*/
.logo a {
	display: inline-block;
	
}

.logo {
	text-align: center;
}

/* nav */
/*------------------------*/

.menu {
	opacity: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.menu-collapse {
	opacity: 1;
	height: auto;
}
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-bottom: 0;
}

.menu a {
	display: block;
	color: #3c55a9;
	font-size: 20px;
	padding: 1em;
	text-align: center;
}

.menu a:hover {
	background-color: #3c55a9;
	color: #fff;
	font-size: 20px;
	/*padding: 1em;*/
	text-align: center;
}

.menu .current {
	color: #f67b2c;
	background-color: #fff;
	/*font-weight: bold;*/
}


/* Burger */
/*------------------------*/
.btn-menu {
	position: absolute;
	top: 20px;
	right: 10px;
	color: #f26910;
}

/* main */
/*------------------------*/
.banner {
	background-image: url('../img/background06.jpg');
	padding: 0;
}
.banner-app {
	background-image: url('../img/img-02.jpg');
}

.banner-app {
	
	background-repeat: no-repeat;
	-webkit-background-size: cover; /*Bien prefixer pour un affichage correct sur IOS*/
	background-size: cover;			/* NOTA : si on met un bg attachment fixed 
										en vue mobile et tablette on fait planter
										le COVER sur IOS !!! TAKE CARE!!!*/

	background-position: 68% 50%; /* cadrage de l'image*/
}
/* team */
/*------------------------*/
.team-title {
	color: #fff;
	font-style: italic;
	text-transform: uppercase;
	font-size: 1.25em;
	margin: 10px 0 0 0 ;
}
.team-detail {
	font-style: italic;
	font-size: 1.15em;
}
/* footer */
/*------------------------*/
#footer {
	background-color: #fff;
	padding: 20px 0;
	background-image: url('img/corde-01.png');
	background-repeat: no-repeat;
	padding: 0;
}
#footer .wrap {
	/*border-top: 1px solid #adadad;
	padding-top: 20px;*/
	background-image: url('../img/corde.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	padding-top: 43px;
}

#footer small {
	text-align: center;
}

#footer a {
	color: #3c55a9;
	font-size: 16px;
}
.footer-menu {
	text-align: center;
}
/*#totop {
	display: block;
	text-align: center;
	background-color: #f36;
	color: #fff;
	padding: 1em 2em;
	margin: 20px 0;
	border-radius: 5px;
}*/

#totop {
	color: #fff;
	background-color: #f67b2c;
	padding: 5px;
	position: fixed;
	z-index: 3000;
	bottom: 10px;
	right: 10px;
	display: none; /*cf app.js pour affichage au scroll vers le bas */

}

.filet {
	background-image: url('img/corde-footer-02.jpg');
	background-repeat: no-repeat;
	padding: 0;
}

/* portraits équipe */
/*------------------------*/

#projects { /* ciblage du bloc portant l'ID projects pour forcer l'affichage du "cadre" et empÃªcher les autres Ã©lÃ©ments (main et aside) de remonter/flotter */
	clear: both;
	overflow: hidden;
}

#projects article {
	float: left;
	width: 300px;
	height: 250px;
	margin-right: 10px;
}

#projects article:last-child { /* ciblage spÃ©cifique du dernier article pour supprimer sa marge de droite et lui permettre de rentrer dans la zone impartie (940 VS 300+20+300+20+300)*/
	margin-right: 0px;
}

#projects figure {
	position: relative; /* on dÃ©finit le "parent" comme point d'ancrage en le dÃ©clarant en relatif*/
	margin: 0;
}

#projects figcaption {
	position: absolute; /* l'enfant dÃ©clarÃ© va se placer aux coordonnÃ©es prÃ©cises dÃ©clarÃ©es*/
	top:0 ;
	left:0 ;
	right:0 ;
	bottom:0 ;
	background-color: rgba(61, 92, 149, 0.78); /* ajuster l'effet avec la transparence*/
	opacity: 0; /* on masque par dÃ©faut cet Ã©tat*/
}

#projects h3 {
	text-transform: uppercase;
}

#projects h4 {
	text-align: center;
	color: #fff;
	margin-top: 32%; 
	font-size: 40px;
}

#projects a:hover figcaption {
	opacity: 1; /* on dÃ©finit un affichage spÃ©cifique au survol du LIEN */
}



/*--------------------------------------------*/
/* RWD */
/*--------------------------------------------*/


/* tablet view -------------------------------*/

@media (min-width: 481px) {
	/* nav */
	/*------------------------*/
	.menu {
		opacity: 1;
		height: auto;
	}


	.menu li {
		display: inline-block;
	}
	.menu a {
		padding: 0.5em 0.8em;
	}
	/* burger */
	/*------------------------*/
	.btn-menu {
		display: none;
	}

	/* footer */
	/*------------------------*/
	#footer small {
		text-align: left;
	}
	/* #totop {
		display: inline;
		text-align: inherit;
		background-color: initial;
		color: #f36;
		padding: 0;
		margin: 0;
		border-radius: 0;
	} */

}/* end of tablet view -----------------------*/



/* desktop view -------------------------------*/
@media (min-width: 769px) {
	

	.wrap {
		padding-left: 10px;
		padding-right: 10px;
	}
	/* links */
	/*------------------------*/
	a {
		/*-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;*/
	}
	a:hover, a:active {
		color: #ff5781;
	}
	
	/* buttons */
	/*------------------------*/
	.btn {
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.btn:hover {
		color: #fff;
		background-color: #ff5781;
	}
	.btn:active {
		top: 1px;
	}
	.btn--secondary:hover {
		color: #f67b2c;
		background-color: transparent;
	}
	/* logo */
	/*------------------------*/
	.logo a {
		-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
	}
	.logo a:hover {
		/*opacity: 0.8;*/
		transform: scale(0.8);
	}
	/* nav */
	/*------------------------*/

	.menu a {
		overflow: hidden;
	}
	.menu a:hover {
		color: #FFF;
	}
	.menu a:after {
		display: block;
		/*content: '';
		height: 8px;
		background-color: #fff;
		/* opacity: 0; */
		/*transform: translateY(20px);
		
		-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;*/
	}
	.menu a:hover:after {
	/* 	opacity: 1; */
		/*transform: translateY(0px);*/
	}
	/* Main */
	/*------------------------*/
	.banner, .banner-app {
		background-attachment: fixed;
	}
	
	/* team */
	/*------------------------*/
	/*
	1- agrandir l'image
	2- on masque ce qui depasse
	3- mettre en position absolue la team box
	4- cacher les éléments à l'état initial
	5- afficher les éléments à l'état hover
	6- on temporise les affichages
	*/

	.team {
		overflow: hidden; /*2*/
		cursor: pointer;
		position: relative; /*3*/
	}
	.team img {
		-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
	}
	.team:hover img {
		transform: scale(1.5); /*1*/
	}
	.team-box { /*3*/
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(0,0,0,0.7);
		-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
		opacity: 0; /*4*/
	}
	.team:hover .team-box {
		opacity: 1; /*5*/
	}
	.team-title, .team-detail {
		opacity: 0; /*4*/
	}
	.team:hover .team-title {
		opacity: 1; /*5*/
		padding-left: 20px;
		-webkit-transition: all 0.3s ease-in-out 0.3s;
			transition: all 0.3s ease-in-out 0.3s;
	}
	.team:hover .team-detail {
		opacity: 1; /*5*/
		padding-left: 20px;
		-webkit-transition: all 0.3s ease-in-out 0.5s;
			
			transition: all 0.3s ease-in-out 0.5s;
	}
	.footer-menu {
		text-align: left;
	}
	/* footer */
	/*------------------------*/
	#totop:hover {
		color: #fff;
	}
}/* end of desktop view -----------------------*/


/*--------------------------------------------*/
/* Styles for animated modal */
/*--------------------------------------------*/

/* Start state */
.animated-modal {
  max-width: 550px;
  border-radius: 4px;
  overflow: hidden;
  
  transform: translateY(-50px);
  transition: all .7s;
}

.animated-modal h2,
.animated-modal p {
  transform: translateY(-50px);
  opacity: 0;
  
  transition-property: transform, opacity;
  transition-duration: .4s;
}

/* Final state */
.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal h2,
.fancybox-slide--current .animated-modal p {
  transform: translateY(0);
  opacity: 1;
}

/* Reveal content with different delays */
.fancybox-slide--current .animated-modal h2 {
  transition-delay: .1s;
}

.fancybox-slide--current .animated-modal p {
  transition-delay: .3s;
}


.article-actu {
	border: 1px solid grey;
	padding: 20px;
}

.article.a {
	font-weight: bold;
}








