/*CSS index*/

/*---------- POLICE --*/
@font-face {
    font-family: 'robotothin';
    src: url('fonts/Roboto-Thin-webfont.eot');
    src: url('fonts/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Thin-webfont.woff2') format('woff2'),
         url('fonts/Roboto-Thin-webfont.woff') format('woff'),
         url('fonts/Roboto-Thin-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Thin-webfont.svg#robotothin') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotoregular';
    src: url('fonts/Roboto-Regular-webfont.eot');
    src: url('fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Regular-webfont.woff2') format('woff2'),
         url('fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'roboto_condensedregular';
    src: url('fonts/RobotoCondensed-Regular-webfont.eot');
    src: url('fonts/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/RobotoCondensed-Regular-webfont.woff2') format('woff2'),
         url('fonts/RobotoCondensed-Regular-webfont.woff') format('woff'),
         url('fonts/RobotoCondensed-Regular-webfont.ttf') format('truetype'),
         url('fonts/RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotomedium';
    src: url('fonts/Roboto-Medium-webfont.eot');
    src: url('fonts/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Medium-webfont.woff2') format('woff2'),
         url('fonts/Roboto-Medium-webfont.woff') format('woff'),
         url('fonts/Roboto-Medium-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Medium-webfont.svg#robotomedium') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*---------- CORPS DE LA PAGE --*/
body
{
	font-family: 'Source code pro', Calibri, serif;
	margin: auto;
	padding: auto;
	width: 100%;
	height: auto;
	background-color: #fff;
	display: float;
}

/*-------------------------------------------HEADER-*/
header{
	width: 100%;
	height: 140px;
	background-color: #fff;
	position: absolute;
	top: 0%;
	position: fixed;
	box-shadow: 10px 5px 10px gray;
}

header > img {
	margin-top: 5px;
	margin-left: 38%;
}

@media screen and (max-width: 1000px){
	header {
		height: 190px;
	}
	
	header > img {
		width: 420px;
		margin-left: 30%;
	}
}


/*-------------------------MENU-------------------------*/

#menu {
	position: absolute;
	top: 20px; left: 20px;
}

#menu2 {
	position: absolute;
	top: 20px; left: 130px;
	width: 60%;
	max-width: 700px;
	min-width: 400px;
}

.menu01{
	display: flex;
	position: absolute;
	top: 15px; left: 25px;
	cursor: pointer;
	width: 5%;
}

nav{
	width: 100%;
	height:50px;
	margin: auto;
	position: absolute;
	top: 35px;
	left: 10px;
	position: fixed;
	display: flex;
	justify-content: space-between;
}

li{
	font-size: 1.1em;/*Taille texte menu*/
	font-family: arial, sans serif;
	background-color: #fff;/*COULEUR DU SOUS MENU*/
}

.submenu li:hover a{/*--TAILLE DU TEXTE HOVER--*/
	color: #000;
	font-size: 1.1em;
	background-color: #fff;
}

.submenu li a{/*--TAILLE DU SOUS-MENU--*/
	padding: 15px 30px;
	font-size: 1em;
	font-family: arial, sans serif;
	color: #616A6B;/*COULEUR DU TEXTE DU MENU*/
	width: 300px;
	height: 20px;
}

nav > ul{
	margin: 0px;
	padding: 0px;
}

nav > ul::after{
	content:"";
	display: block;
	clear: both;
}

nav > ul > li{
	float: left;
	position: relative;
}

nav > ul > li > a{
	padding: 20px 30px;
	color: #616A6B;
}

nav > p{
	position: absolute;
	top: -10x;
	left: 55px;
	color: #FFF;
	font-family: arial;
	font-size: 9em;
	font-weight: bold;
	display: flex; 
	justify-content: space-between;
}

nav > ul > li:hover a{
	padding: 15px 30px 20px 30px;
	cursor: pointer;
}

nav li{
	list-style-type: none;
}

.submenu{
	display: none;
}

nav a{
	display: inline-block;
	text-decoration: none;
}

nav li:hover .submenu{
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 0px;
	padding: 0px;
	z-index: 1000;
}

@media screen and (max-width: 1000px) {
	li{
		font-size: 1.1em;/*--TAILLE DU TEXTE DU MENU--*/
		font-family: arial, sans serif;
		background-color: #fff;
}

	.submenu li:hover a{/*--TAILLE DU TEXTE HOVER--*/
		color: #000;
		font-size: 2.4em;
		background-color: #fff;
}

	.submenu li a{/*--TAILLE DU SOUS-MENU--*/
		padding: 15px 30px;
		font-size: 2em;
		font-family: arial, sans serif;
		color: #616A6B;
		width: 900px;
		height: 80px;
}
	
}





/*-----------------------------STUCTURE DE LA PAGE -----------------------*/
#bloc_page{
	margin: auto;
	width: auto;
	height: auto;
	background-color: #fff;
}




/*---------------------------------PAGE INDEX------------*/
#garde {
	width: 99%;
	height: auto;
	margin: auto;
	margin-top: 20px;
	background: transparent;
	background-position: center;
	background-color: #fff;
	border: 1px solid none;
}

#ID_LOGO {
	width: 100%;
	
	height: auto;
	margin: auto;
	border: 1px solid none;
}

#ID_LOGO > img {
	width: 50%;
	min-width: 400px;
	height: auto;
	margin: 0 25% 0 25%;
	border: 1px solid none;
}

#garde > h1 {
	font-size: 5em;
	font-family: robotothin;
	color: #3B5FA3;
	text-align: center;
	margin-top: 10%
}

.projet {
	width: 72.5%;
	height: auto;
	margin: auto;
	font-size: 1.4em;
	font-family: arial, sans-serif;
	text-align: center;
	color: #fff;
	padding:3%;
	background-color: #3B5FA3;
	border: 1px solid #fff;
	border-radius: 10px;
}

.projet:hover {
	color: #3B5FA3;
	background-color: #fff;
	border: 1px solid #3B5FA3;
}

.projet_index {
	width: 89%;
	height: auto;
	margin-left: 2.5%;
	margin-right: 2.5%;
	font-size: 1.4em;
	font-family: arial, sans-serif;
	text-align: center;
	color: #fff;
	padding:3%;
	background-color: #2585ED;
	position: absolute;
	bottom: 1.5%;
	position: fixed;
	border: 1px solid #2585ED;
	border-radius: 5px;
}

.projet_index:hover {
	color: #2585ED;
	background-color: #fff;
	border: 1px solid #2585ED;
}

@media screen and (max-width: 1000px){
	.projet {
	width: 84%;
	font-size: 2.2em;
	padding: 7%;
	font-family: arial, sans-serif;
	font-weight: bold;
}
		.projet_index {
			width: 81%;
	font-size: 3em;
	padding: 7%;
	font-family: arial, sans-serif;
}
}
#image_garde {
	width: 70%;
	height: auto;
	margin: auto;
	border: 1px solid none;
}

#image_garde > img {
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 20px;
	border: 1px solid none;
}

#image_garde > h1 {
	width: 100%;
	height: auto;
	margin: auto;
	font-size: 2.9em;
	font-family: arial, sans-serif;
	text-align: center;
	color: #000;
	padding: 10% 0 5% 0;
	background-color: #fff;
}

#image_garde > p {
	width: 100%;
	height: auto;
	margin: auto;
	font-size: 1.4em;
	font-family: arial, sans-serif;
	text-align: justify;
	color: #000;
	background-color: #fff;
	padding-bottom: 5%;
}


@media screen and (max-width: 1000px){
	#image_garde {
		width: 96%;
	}
	#image_garde > h1 {
	width: 96%;
	font-size: 3.6em;	
}
	#image_garde > p {
	width: 96%;
	font-size: 2.6em;	
	font-family: arial, sans-serif;
}
}



/*---------------------------------PAGE ACCUEIL -------------------*/
#page_index {
	width: auto;
	height: auto;
	margin: auto;
	background: transparent;
	background-position: center;
}

.bandeau_index {
	width: 100%;
	margin: auto;
	margin-top: 140px;
}

@media screen and (max-width: 1000px){
	.bandeau_index {
		margin-top: 190px;
}
}

#page_index > p{
	margin: auto;
	margin-top: 26px;
	width: 95%;
	font-family: robotomedium;
	color: #626567;
	font-size: 2.4em;
	font-weight: bold;
	text-align: center;
	
}

.don {
	width: 95%;
	height: auto;
	margin: auto;
	margin-top: 20px;
	
}

#don1 {
	margin: 2.5%;
	width: 95%;
	height: auto;
	border-radius: 5px;
	border: 1px solid #000;
	text-align: justify;
	background-color: #000;
}

.don02 {
	width: 90%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 20px;
	margin: auto;
	font-family: trebuchet ms;
	font-weight: bold;
	font-size: 2.4em;
	color: #fff;
	text-align: center;
}

.don021 {
	width: 90%;
	margin: auto;
	padding-bottom: 50px;
	margin: auto;
	font-family: arial, sans-serif;
	font-size: 1.29em;
	text-align: justify;
	line-height: 1.29em;
	color: #fff;
}

.don03 {
	width: 50%;
	margin: auto;
	padding: 3%;
	font-family: arial;
	text-align: center;
	color: #fff;
	font-size: 1.6em;
	background-color: #2585ED;
	border-radius: 5px;
	border: 2px solid #fff;
}

.don03:hover {
	background-color: #fff;
	color: #2E86C1;
	border: 2px solid #2585ED;
}

.don04 {
	width: 100%;
	margin: auto;
	font-family: roboto_condensedregular;
	font-size: 1.4em;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 50px;
	color: #fff;
}

.don05 {
	width: 70%;
	margin: auto;
	font-family: roboto_condensedregular;
	font-size: 1.4em;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 50px;
	color: #000;
}

@media screen and (max-width: 1000px){
	.don02 {
		font-size: 3.6em;
	}
	
	.don03 {
		width: 70%;
		font-size: 2.8em;
		padding: 7%;
	}
	
	.don021 {
	font-size: 3.7vw;
	line-height: 1.2em;
	font-size: arial,sans-serif;
	}
	
	.don04 {
		font-size: 1.6em;
	}
	
		.don05 {
		font-size: 2em;
	}
}

@media screen and (max-width: 1000px) {
	#page_index > p{
		font-size: 7vw;
		font-family: robotomedium;
		width: 90%;
	}
	
}

hr {
	width: 80%;
	margin-top: 100px;
	margin-bottom: 100px;
}

/*--CHABBAT--*/
#CHABBAT {
	width: 95%;
	max-width: 1100px;
	height: 220px;
	margin: auto;
	margin-top: 100px;
	border: 1px solid none;
	background-color: #fff;
	box-shadow: 15px 15px 10px lightgray;
	display: flex;
	border-radius: 10px;
}

.CHABBAT1 {
	width: 30%;
	height: auto;
	margin: 0;
	border: 1px solid none;
	background-image: url('images/chabbat.jpg');
	background-size: cover;
	border-radius: 10px 150px 150px 10px;
}

.CHABBAT2 {
	width: 70%;
	height: auto;
	margin-left: 20px;
	font-family: robotomedium;
	border: 1px solid none;
}

.CH2_p {
	width: 100%;
	height: 25%;
	border: 1px solid none;
	font-size: 1.6em;
}

.Paris {
	color: grey;
	font-size: 2vw;
	font-family: robotoregular;
}

.Paracha {
	color: #000;
	font-size: 4vw;
	font-family: trebuchet MS;
	color: #2874A6;
	font-weight: bold;
}

.Date {
	color: #000;
	font-size: 2vw;
}

.Heures {
	color: #000;
	font-size: 2.6vw;
	font-family: robotoregular;
}

.bandeau_sidra {
	width: 90%;
	max-width: 1100px;
	height: auto;
	margin: auto;
	margin-top: 50px;
	border: 1px solid none;
}

.bandeau_sidra > h1{
	text-align: center; 
	font-size: 3.5vw;
	font-family: robotomedium;
	margin: auto;
	text-align: center;
	color: #365B73;
}

.bandeau_sidra2b {
	width: 30%;
	height: auto;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	border: 1px solid none;
}

@media screen and (max-width: 1000px){
	#CHABBAT {
		height: 260px;
	}
	
	.CH2_p {
	width: 100%;
	height: 25%;
	border: 1px solid none;
	font-size: 1.6em;
}

.Paris {
	color: grey;
	font-size: 3vw;
	font-family: robotoregular;
}

.Paracha {
	color: #000;
	font-size: 6vw;
	font-family: trebuchet MS;
	color: #2874A6;
	font-weight: bold;
}

.Date {
	color: #000;
	font-size: 3vw;
}

.Heures {
	color: #000;
	font-size: 3.5vw;
	font-family: robotoregular;
}

}

#chabbat7 {
	width: 100%;
	height: 770px;
	margin: auto;
	background-image: url('images/beth7.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-opacity: 0.7;
}

.horaires {
	width: 80%;
	height: 50%;
	margin: auto;
	border: 1px solid none;
	position: relative;
	top: 10%;
	background-color: rgba(215, 189, 226, 0.7);
	border-radius: 10px;
}

/*------FIL ACTU------*/
#TITRE {
	width: 90%;
	height;: auto; 
	margin: auto;
	border: 1px solid none;
	font-family: roboto_condensedregular;
	text-align: center;
	font-size: 8vw;
	margin-bottom: 15%;
	color: #34495E;
	padding-top: 2.5%;
	padding-bottom: 2.5%;
	border: 2px solid none;
	border-radius: 3px;
	box-shadow: 5px 5px 15px gray;
}

#kislev_01 {
	width: 90%;
	height: auto;
	margin: auto;
	border: 1px solid none;
}

video {
	width: 50%;
	height: auto;
	margin: 0 25% 0 25%;
	border: 1px solid none;
}

@media screen and (max-width: 1000px){
	video {
	width: 90%;
	height: auto;
	margin: 0 5% 0 5%;
	border: 1px solid none;
}
}


#video-event {
	width: 100%;
	height: 800px;
	margin: auto;
}

#Pessah {
	width: 90%;
	height: auto;
	margin: auto;
	border: 1px solid none;
	margin-bottom: 100px;
}

#Pessah > h1 {
	width: 80%;
	margin: auto;
	text-align: center;
	font-family: verdana;
	font-size: 4vw;
	color: #34495E;
	padding-top: 2.5%;
}

#FIL_ACTU {
	width: 90%;
	height: auto; 
	margin: auto; 
	border: 1px solid none;
}

.FIL_ACTU2 {
	width: 50%;
	height: auto;
	margin: auto;
	border: 1px solid none;
}

.FIL_ACTU2 > a > img {
	border-radius: 15px;
}

.FIL_ACTU3 {
	width: 93.8%;
	height: auto;
	margin: auto;
	border: 1px solid none;
	padding-left: 2.6%;
	padding-right: 2.6%;
}

.FIL_ACTU3 > p {
	font-family: arial;
	font-size: 1.5em;
	line-height: 1.5em;
	text-align: center;
}

.FIL_ACTU3 > h3 {
	font-family: robotomedium;
	font-weight: bold;
	color: #34495E;
	font-size: 3em;
	text-align: center;
}

.FIL_ACTU3 > h2 {
	font-family: robotoregular;
	color: #34495E;
	font-size: 1.6em;
	padding-bottom: 2%;
}

.FIL_ACTU3 > h2 {
	font-family: robotoregular;
	color: #34495E;
	font-size: 1em;
	padding-bottom: 2%;
}


#leilou {
	width: 100%;
	height: auto;
	margin: auto;
	margin-bottom: 150px;
	border-radius: 7px;
}

.bougie {
	width: 100%;
	height: 800px;
	margin: auto;
	background: url('images/leilou.jpg') no-repeat center center;
	background-size: cover;
	border-radius: 10px;
}

.bougie > h1 {
	width: 100%;
	color: #fff;
	font-size: calc(1.8em + 1.6vw);
	padding: 30px;
	font-family: robotothin;
	text-align: center;
}

.FIL  {
	color: red;
}

@media screen and (max-width: 1000px){
#TITRE {
	width: 95%;
	font-size: calc(4em + 4vw);
}

#FIL_ACTU {
	width: 85%;
}

.FIL_ACTU3 > p {
	font-size: 4.2vw;
	line-height: 1.29em;
	text-align: justify;
}

.FIL_ACTU3 > h3 {
	font-size: 7vw;
	font-family: arial;
}

.FIL_ACTU3 > h2 {
	font-size: calc(1.6em + 1.6vw);
	font-family: arial;
	
}
.FIL_ACTU2 {
	width: 100%;
}

}




#actu {
	width: 95%;
	height: auto;
	margin: auto;
	margin-top: 1.6em;
	margin-bottom: 250px;
	border: 1px solid #fff;
	background-color: #fff;
	box-shadow: 10px 10px 15px lightgray;
	border-radius: 0px 0px 7px 7px;
}

.new {
	font-size: 3vw;
	font-family: robotoregular;
	font-weight: bold;
	line-height: 1vw;
	color: red;
	padding-top: 30px;
	padding-left: 30px;
}

#actu > a > img {
	width: 90%;
	padding: 2%;
	margin-top: 2%;
	border: 1px solid #fff;
}



#actu > p {
	padding-top: 20px;
	padding-left: 30px;
	font-family: robotomedium;
	font-size: 2.2vw;
	line-height: 0.1em;
	color: #717D7E;
}

#actu > h1 {
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	line-height: 4.5vw;
	font-size: 4vw;
	font-family: robotomedium;
	color: #E9967A;
}

#actu > h2 {
	padding-left: 30px;
	padding-right: 30px;
	line-height: 3.5vw;
	font-size: 3vw;
	font-family: arial, sans-serif;
	color: #2E4053;
}

#actu > a {
	padding: 30px;
	line-height: 3.8vw;
	font-size: 3vw;
	font-family: roboto_condensedregular;
	color: gray;
	text-decoration: underline;
}

#actu2 {
	width: 50%;
	height: 100px;
	line-height: 100px;
	text-align: center;
	margin: auto; 
	color: #751D80;
	background-color: #FBDDFF;
	border-radius: 10px;
	font-size: 2.2vw;
}

#actu2:hover {
	background-color: #751D80;
	color: #FBDDFF;
}

#video {
	width: 90%;
	max-width: 700px;
	height: auto;
	margin: auto;
}

#video > h1 {
	width: 100%;
	height: auto; 
	margin: auto;
	text-align: center;
	font-size: 5.5vw;
	font-family: trebuchet MS;
	padding-top: 0.5em;
	color: #3498DB;
}

#video > p {
	width: 100%;
	height: auto; 
	margin: auto;
	text-align: justify;
	font-size: 3.7vw;
	font-family: arial, sans-serif;
	padding-top: 0.5em;
}



#event_1 {
	width: 60%;
	height: auto;
	margin: auto;
}

#event_1 > h2 {
	width: 100%;
	text-align: center;
	font-size: 2.6em;
	font-family: robotomedium;
	color: #148F77;
	letter-spacing: 0.1em;
}

#event_1 > h3 {
	width: 100%;
	text-align: center;
	font-size: 3em;
	font-family: robotomedium;
	color: #BA4A00;
	letter-spacing: 0.1em;
}

#event_2 {
	width: 60%;
	height: auto;
	margin: auto;
}

#event_2 > h2 {
	width: 100%;
	text-align: center;
	font-size: 2.6em;
	font-family: robotomedium;
	color: #D30798;
	letter-spacing: 0.1em;
}

#campagne {
	width: 770px;
	height: auto;
	margin: auto;
	border: 1px solid none;
}




.h2 {
	width: 100%;
	height: 200px;
	font-family: arial;
	text-align: center;
	line-height: 200px;
	font-size: 5vw;
	color: #fff;
	background: linear-gradient(to bottom right, #C4302B, white);
	margin-top: 100px;
}

#mission_1 {
	width: 90%;
	height: auto;
	margin: auto;
	
}

#mission_1a {
	width: 80%;
	height: auto;
	margin: auto;
	padding-top: 20px;
	font-family: arial,sans-serif;
	font-size: 1.6em;
	text-align: justify;
	color: #21618C;
	padding-bottom: 20px;
}

#mission_1b {
	width: 70%;
	margin: auto;
	display: flex;
	
}

#mission_2 {
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 20px;
	font-family: arial, sans-serif;
	font-size: 1.6em;
	text-align: justify;
	color: #21618C;
}

/*---EVENEMENTS---*/
#bandeau_evenement_1 {
	width: 60%;
	height: auto;
	margin: auto;
	margin-top: 150px;
	text-align: justify;
	font-family: robotomedium;
	color: #21618C;
}

#bandeau_evenement_1 > h1 {
	font-size: 2.8em;
	line-height: 0.2em;
	text-align: center;
}

#bandeau_evenement_1 > p {
	font-size: 1.6em;
	line-height: 1.2em;
	font-size: arial,sans-serif;
}

#bandeau_evenement_1 > a > h2 {
	width: 77%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1.6em;
	font-family: arial;
	color: #fff;
	border: 1px solid #21618C;
	text-align: center;
	margin-bottom: 15px;
	background-color: #21618C;
	border-radius: 5px;
}

#bandeau_evenement_1 > a > h2:hover {
	width: 77%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1.6em;
	font-family: arial;
	color: #21618C;
	border: 1px solid #21618C;
	text-align: center;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 5px;
	cursor: pointer;
}


#bandeau_evenement_2 {
	width: 60%;
	height: auto;
	margin: auto;
	margin-top: 150px;
	text-align: justify;
	font-family: robotomedium;
	color: #21618C;
}

#bandeau_evenement_2 > h1 {
	font-size: 2.8em;
	line-height: 0.2em;
	text-align: center;
}

#bandeau_evenement_2 > p {
	font-size: 1.6em;
	line-height: 1.2em;
	font-size: arial,sans-serif;
}

#bandeau_evenement_2 > a > h2 {
	width: 77%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1.6em;
	font-family: arial;
	color: #fff;
	border: 1px solid #E969EE;
	text-align: center;
	margin-bottom: 15px;
	background-color: #E969EE;
	border-radius: 5px;
}

#bandeau_evenement_2 > a > h2:hover {
	width: 77%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1.6em;
	font-family: arial;
	color: #E969EE;
	border: 1px solid #E969EE;
	text-align: center;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 5px;
	cursor: pointer;
}

#message_association {
	width: 80%;
	height: auto;
	margin: auto;
	font-family: arial, sans-serif;
	font-size: 1.6em;
	text-align: justify;
	color: #21618C;
	padding-bottom: 20px;
}

#message_association > a > h2 {
	width: 90%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1em;
	font-family: arial;
	color: #fff;
	border: 1px solid #EE9F69;
	text-align: center;
	margin-bottom: 15px;
	background-color: #EE9F69;
	border-radius: 5px;
}

#message_association > a > h2:hover {
	width: 90%;
	height: auto;
	line-height: auto;
	vertical-align: middle;
	margin: auto;
	padding: 20px;
	font-size: 1em;
	font-family: arial;
	color: #EE9F69;
	border: 1px solid #EE9F69;
	text-align: center;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 5px;
	cursor: pointer;
}

#index_section_1 {
	width: 85%;
	max-width: 1200px;
	min-width: 800px;
	height: auto;
	margin: auto;
	margin-top: 77px;
}

#index_section_1 > h2{
	font-family: robotomedium;
	color: #2874A6;
	font-size: 1.4em;
	text-align: left;
	padding-top: 26px;
}

#index_section_1 > p {
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	color: #2874A6;
	line-height: 1.2em;
}

.index_section_1b {
	width: 100%;
	max-width: 1200px;
	min-width: 600px;
	height: 200px;
	border: 1px solid #fff;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.img1_index_section_1 {
	width: 260px;
	height: 200px;
	border: 1px solid #fff;
	background-image: url("images/torah.jpg");
	opacity: 0.6;
}

.img1_index_section_1 > h2 {
	font-family: robotothin;
	width: 200px;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	margin: auto;
	margin-top: 77px;
	border-radius: 2px;
	text-align: center;
	background-color: #fff;
	opacity: 0.7;
}

.img2_index_section_1 {
	width: 260px;
	height: 200px;
	border: 1px solid #fff;
	background-image: url("images/prieres.jpg");
	opacity: 0.6;
}

.img2_index_section_1> h2 {
	font-family: robotothin;
	width: 200px;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	margin: auto;
	margin-top: 77px;
	border-radius: 2px;
	text-align: center;
	background-color: #fff;
	opacity: 0.7;
}


.img3_index_section_1 {
	width: 260px;
	height: 200px;
	border: 1px solid #fff;
	background-image: url("images/entraide.jpg");
	opacity: 0.6;
}

.img3_index_section_1 > h2 {
	font-family: robotothin;
	width: 200px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	line-height: 1.2em;
	margin: auto;
	margin-top: 77px;
	border-radius: 2px;
	text-align: center;
	background-color: #fff;
	opacity: 0.7;
}

.img4_index_section_1 {
	width: 260px;
	height: 200px;
	border: 1px solid #fff;
	background-image: url("images/beth3.jpg");
	opacity: 0.6;
}

.index_section_1c {
	width: 100%;
	max-width: 1200px;
	min-width: 600px;
	height: auto;
	border: 1px solid #fff;
	display: flex;
	justify-content: space-between;
}

.texte_index_section_1c {
	width: 260px;
	height: auto;
	border: 1px solid #fff;
}

.texte_index_section_1c > p {
	padding: 0 5px 0 5px;
	text-align: justify;
	font-family: arial;
	font-size: 0.85em;
	color: #424949;
	line-height: 1.6em;
}

#index_section_2 {
	width: 85%;
	max-width: 1200px;
	min-width: 800px;
	height: auto;
	margin: auto;
}

#index_section_2 > h2{
	font-family: robotomedium;
	color: #2874A6;
	font-size: 1.4em;
	text-align: left;
	padding-top: 26px;
	
}

#index_section_2 > p {
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	color: #2874A6;
	line-height: 1.2em;
}

#index_section_3 {
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: auto;
	display: flex;
}

.index_section_3b {
	width: 26%;
	height: 40px;
	border: 1px solid #fff;
	margin-top: 16px;
}

.index_section_3b > p {
	text-align: center;
	font-family: robotoregular;
	margin: auto;
	height: 40px;
	border: 1px solid #fff;
	line-height: 40px;
	vertical-align: middle;
	color: #2874A6;
	background-color: #2874A6;
	border-radius: 3px;
	color: #fff
}

#index_section_4 {
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: auto;
	display: flex;
}

.index_section_4b {
	width: 25%;
	margin-top: 16px;
	margin: 3px;
}

#index_section_5 {
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: auto;
	display: flex;
}

.index_section_5b {
	width: 26%;
	height: 40px;
	border: 1px solid #fff;
	margin-top: 1px;
}

.index_section_5b > p {
	text-align: center;
	font-family: robotoregular;
	margin: auto;
	height: 40px;
	color: #2874A6;
	border-radius: 3px;
	color: #000;
	font-size: 0.9em;
}




/*---------------------------------PAGE GMAH -------------------*/
#gmah {
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 200px;
	background-color: #fff;
	margin-top: 200px;
}

#gmah > h1 {
	width: 100%; 
	height: 40px;
	margin: auto; 
	color: #2E86C1;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: robotothin;
	font-size: 2.6em;
}

#PAGE_GMAH2 {
	width: 92%;
	height: auto;
	margin: auto;
}

#PAGE_GMAH2 > h2 {
	font-family: robotoregular;
	color: #2874A6;
	font-size: 1.4em;
	text-align: center;
}

#PAGE_GMAH2 > p {
	padding: 0 0px 30px 0px;
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	line-height: 1.4em;
	color: #2874A6;
}

#PAGE_GMAH2 > img {
	border-radius: 15px;;
}

#GMAH3 {
	width: 100%;
	height: auto;
	margin: auto;
	display: flex;
}

.GM3_F1 { 
	width: 60%;
	height: 100%;
	background-color: #2980B9;
	color: #fff;
	padding-left: 40px;
	font-weight: bold;
	border-radius: 5px 0px 0px 5px;
	font-size: 1.2em;
}

.GM3_F2 { 
	width: 40%;
	height: 100%;
}

#GMAH4 {
	width: 100%;
	height: auto;
	margin: auto;
}

#GMAH4 > h2 {
	font-family: robotoregular;
	color: #2874A6;
	font-size: 1.2em;
	text-align: left;
	padding-left: 15px;
}

#GMAH4 > p {
	padding: 0 15px 0 15px;
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	line-height: 1.4em;
	color: #2874A6;
}

@media screen and (max-width: 1000px){
	#gmah > h1 {
		font-size: 4em;
}
	#PAGE_GMAH2 > h2 {
		font-size: 2em;
}
	#PAGE_GMAH2 > p {
		font-size: 1.8em;
}
}




/*---------------------------------PAGE PROJET -------------------*/
#page_projet {
	width: 100%;
	height: auto;
	margin: auto; 
	border: 1px solid none;
	background-color: #fff;
}

#page_projet > h1 {
	width: 100%;
	margin: auto;
	padding-top: 50px;
	text-align: center;
	font-size: 3em;
	font-family: arial, sans-serif;
	color: #3B5FA3;
}

#page_projet > h2 {
	width: 90%;
	margin: auto;
	padding-top: 50px;
	text-align: center;
	font-size: 2em;
	font-family: arial, sans-serif;
	color: #3B5FA3;
}



#page_projet > img {
	width: 26%;
	border-radius: 10px;
	margin: 3% 37% 5% 37%;
}

#page_projet > p {
	width: 90%;
	margin: auto;
	text-align: justify;
	font-size: 1.2em;
	font-family: arial;
	color: #3B5FA3;
	line-height: 1.4em;
	padding-top: 20px;
}





@media screen and (max-width: 1000px){
	#page_projet > h1 {
	font-size: 4em;
}

#page_projet > h2 {
	font-size: 3em;
}

	#page_projet > img {
	width: 50%;
	border-radius: 10px;
	margin: 3% 25% 5% 25%;
}

	#page_projet > p {
	width: 90%;
	margin: auto;
	text-align: justify;
	font-size: 2.4em;
}

}



/*---------------------------------PAGE MEMORIAL -------------------*/
#page_zakhor {
	width: 100%;
	height: 1000px;
	margin: auto; 
	margin-top: 140px;
	border: 1px solid none;
	background-color: #000;
}

#page_zakhor > h1 {
	width: 100%;
	margin: auto;
	padding-top: 50px;
	text-align: center;
	font-size: 3.6em;
	font-family: arial;
	color: #fff;
}

#page_zakhor > h2 {
	width: 100%;
	margin: auto;
	text-align: center;
	font-size: 2.6em;
	font-family: arial;
	color: #fff;
}

#bloc_memorial {
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 100px;
	margin-bottom: 150px;
	border-radius: 7px;
	border: 1px solid none;
	display: flex;
	justify-content: space-around;
}

.plaque {
	width: 47.5%;
	height: 250px;
	margin: auto;
	background: url('images/bougie.jpg') no-repeat center center;
	background-size: cover;
	box-shadow: 2px 2px 25px #fff;
	border: 0.1px solid #fff;
}

.plaque > h1 {
	width: 70%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: calc(1.2em + 1.2vw);
	padding: 10px;
	font-family: robotothin;
	border: 1px solid none;
}

.plaque > h2 {
	width: 70%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: calc(1.2em + 1.2vw);
	padding: 10px;
	font-family: robotothin;
	border: 1px solid none;
}


/*-----------------------FOOTER-----------------------*/

footer{
	width: auto;
	height: 230px;
	margin: auto;
	background-color: #5D6D7E;
}

footer > h3 {
	color: #fff;
	text-align: center;
	font-family: roboto_condensedregular;
	padding-top: 10px;
}

footer > p {
	color: #fff;
	text-align: center;
	font-family: robotoregular;
	font-size: 1em;
	line-height: 0.7em;
	text-decoration: none;
}

footer > p > a {
	text-decoration: none;
	color: #fff;
}

footer > p > a:hover {
	color: #fff;
	font-size: 1.4em;
	font-weight: bold;
}



#PAGE_ACC > p {
	padding: 0 80px 0 80px;
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	color: #2874A6;
}


#PAGE_ACCUEIL2 {
	width: 840px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px 78px 0 78px;
}

#PAGE_ACCUEIL2 > h2{
	font-family: robotoregular;
	color: #2874A6;
	font-size: 1.4em;
	text-align: left;
	padding-left: 10px;
}

#PAGE_ACCUEIL2 > p {
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	color: #2874A6;
	line-height: 1.4em;
	padding-left: 10px;
}

#PAGE_ACCUEIL3 {
	width: 840px;
	height: 40px;
	margin: 20px 78px 0 78px;
	display: flex;
	justify-content: space-between;
}

.acc4_1 {
	width: 160px;
	height: 40px;
	border: 1px solid #fff;
	
}

.acc4_1 > p {
	text-align: center;
	font-family: robotoregular;
	margin: auto;
	width: 160px;
	height: 40px;
	border: 1px solid #fff;
	line-height: 40px;
	vertical-align: middle;
	border-radius: 2px;
	color: #2874A6;
	background-color: #2874A6;
	border-radius: 3px;
	color: #fff
}

#PAGE_ACCUEIL4 {
	width: 840px;
	height: 100px;
	border: 1px solid #fff;
	margin: 5px 78px 0 78px;
	display: flex;
	justify-content: space-between;
}

.acc5_1 {
	width: 160px;
	height: 100px;
	border: 1px solid #fff;
}



#index_1 {
	margin: auto; 
	width: 1100px;
	height: 800px;
	display: flex;
}

/*--PAGE INDEX GAUCHE--*/

#index_gauche {
	width: 300px;
	height: auto;
	background-color: #e6f4fa;
}

.module_1 {
	width: 250px; 
	height: 230px; 
	background-color: #FBFCFC;
	margin: auto;
	margin-top: 26px;
	box-shadow: 2px 4px 10px gray;
}

.module_1 > h2 {
	height: 50px;
	font-family: robotothin;
	font-size: 1em;
	color: #fff;
	text-align: center;
	background-color: #2E86C1;
	margin-top: 0px;
	line-height: 50px; 
	vertical-align: middle;
}

.module_1 > p {
	height: 26px;
	font-family: robotoregular;
	font-size: 0.85em;
	color:#2E86C1;
	text-align: left;
	background-color: #FBFCFC;
	margin-top: 0px;
	padding-left: 20px;
	line-height: 26px; 
	vertical-align: middle;
}

.module_2 {
	width: 250px; 
	height: 340px; 
	background-color: #FBFCFC;
	margin: auto;
	margin-top: 26px;
	box-shadow: 2px 4px 10px gray;
}

.module_2 > h2 {
	height: 50px;
	font-family: robotothin;
	font-size: 1em;
	color: #fff;
	text-align: center;
	background-color: #C0392B;
	margin-top: 0px;
	line-height: 50px; 
	vertical-align: middle;
}

.module_2 > p1 {
	height: 26px;
	font-family: robotoregular;
	font-size: 1em;
	color:#2E86C1;
	text-align: center;
	background-color: #FBFCFC;
	margin-top: 0px;
	padding-left: 15px;
	line-height: 40px; 
	vertical-align: middle;
}

.module_2 > p {
	height: 1.1em;
	font-family: robotoregular;
	font-size: 0.85em;
	color:#2E86C1;
	text-align: left;
	background-color: #FBFCFC;
	margin-top: 0px;
	padding-left: 40px;
	line-height: 1.1em; 
	vertical-align: middle;
}

.module_2_1 {
	width: 250px; 
	height: 130px; 
	background-color: #FBFCFC;
	margin: auto;
	margin-top: 26px;
	box-shadow: 2px 4px 10px gray;
}

.module_2_1 > h2 {
	height: 50px;
	font-family: robotothin;
	font-size: 1em;
	color: #fff;
	text-align: center;
	background-color: #34495E;
	margin-top: 0px;
	line-height: 50px; 
	vertical-align: middle;
}

.module_2_1 > p {
	height: 1.1em;
	font-family: robotoregular;
	font-size: 0.85em;
	color:#2E86C1;
	text-align: left;
	background-color: #FBFCFC;
	margin-top: 0px;
	padding-left: 20px;
	line-height: 1.1em; 
	vertical-align: middle;
}

#index_droite {
	width: 770px;
	height: auto;
	background-color: #e6f4fa;
}

.module_3 {
	width: 770px; 
	height: 300px; 
	
	margin: auto;
	margin-top: 26px;
	display: flex;
	box-shadow: 2px 4px 10px gray;
}

.m3_1 {
	width: 370px; 
	height: 300px; 
	background-color: #5D6D7E ;
	
}

.m3_1 > p{
	width: 330px;
	height: 55px;
	padding: 0px 20px 20px 10px;
	line-height: 1.3em;
	font-size: 1.1em;
	color: #fff;
	font-family: calibri;
	text-align: justify;
}

.m3_1_1 > p{
	width: 330px;
	height: 168px;;
	padding: 0px 20px 20px 10px;
	margin-top: 0px;
	line-height: 1.2em;
	font-size: 0.9em;
	color: #fff;
	font-family: calibri;
	text-align: justify;
	
}

.m3_2 {
	width: 400px; 
	height: 300px; 
	background-color: #5D6D7E;
	
}

.module_4 {
	width: 770px; 
	height: 232px; 
	border: 1px solid  #e6f4fa;
	margin: auto;
	margin-top: 26px;
	background-color: #FBFCFC;
	box-shadow: 2px 4px 10px gray;
	display: flex;
}

.m4_1{
	width: 429px; 
	height: 230px;
}

.m4_2{
	width: 341px; 
	height: 230px;
}

.m4_2 > p {
	font-family: robotoregular;
	font-size: 0.85em;
	line-height: 1.4em;
	padding: 0px 15px 0 15px;
	text-align: justify;
	color: #1B4F72;
}

.module_5 {
	width: 770px; 
	height: 150px; 
	margin: auto;
	margin-top: 26px;
	background-color: #FBFCFC;
	display: flex;
}

.m5_1 {
	width: 184px;
	height: 150px;
	border: 5px solid #fff;
}

.m5_1 > p {
	width: 184px;
	height: 40px;
	margin: 5px 0 16px 0;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	font-family: robotoregular;
	font-weight: bold;
	color: #fff;
	background-color: #B7950B;
	border-radius: 4px;
	
}

.m5_2 {
	width: 184px;
	height: 160px;
	border: 5px solid #fff;
	
	
}

.m5_2 > p {
	width: 184px;
	height: 40px;
	margin: 5px 0 16px 0;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	font-family: robotoregular;
	font-weight: bold;
	color: #fff;
	background-color: #B7950B;
	border-radius: 4px;
}

.m5_3 {
	width: 184px;
	height: 160px;
	border: 5px solid #fff;
	
	
}

.m5_3 > p {
	width: 184px;
	height: 40px;
	margin: 5px 0 16px 0;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	font-family: robotoregular;
	font-weight: bold;
	color: #fff;
	background-color: #B7950B;
	border-radius: 4px;
}

.m5_4 {
	width: 184px;
	height: 160px;
	border: 5px solid #fff;
	

}

.m5_4 > p {
	width: 184px;
	height: 40px;
	margin: 5px 0 16px 0;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	font-family: robotoregular;
	font-weight: bold;
	color: #fff;
	background-color: #B7950B;
	border-radius: 4px;
}



/*------------------------------------CANTINE CASHER-------------------*/
#page_cantine {
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 220px;
	padding: auto;
	border: 1px solid none;
}

#CANTINE_01 {
	width: 96%;
	height: auto; 
	margin: auto;
	border: 1px solid none;
}

#CANTINE_01 > h1 {
	width: 96%;
	margin: auto;
	font-family: robotothin;
	font-weight: bold;
	color: #34495E;
	font-size: 3.6em;
	text-align: center;
	border: 1px solid none;
}

.CANTINE_01a {
	width: 100%;
	height: 380px;
	margin: auto;
	margin-top: 50px;	
	margin-bottom: 50px;
	border: 1px solid none;
	padding: 1%;
	background-image: url('images/cantine8.jpg');
	background-size: cover;
}

.CANTINE_01b {
	width: 96%;
	height: auto;
	margin: auto;
	margin-top: 50px;	
	margin-bottom: 50px;
	border: 1px solid none;
	padding: 1%;
}

.CANTINE_01b > p {
	width: 94%;
	margin: auto;
	font-size: 1.2em;
	line-height: 1.4em;
	text-align: justify;
	color: #34495E;
	font-family: Verdana, sans-serif;
	padding-top: 4%;
	
}

@media screen and (max-width: 1000px){
	#CANTINE_01 > h1 {
		padding-top: 100px;
		padding-bottom: 50px;
		font-family: trebuchet ms;
		font-size: 5.2em;
}
	.img_cantine {
		margin: 0%;
}

	.CANTINE_01b > p {
		padding-top: 100px;
		font-size: 2.4em;
		line-height: 1.4em;
	
	
}
}



/*--------------PAGE OHEL------------*/
#ohel {
	width: 98%;
	height: auto;
	margin: auto;
	margin-top: 200px;
	border: 1px solid none;
}

#ohel > h1 {
	width: 100%; 
	height: 40px;
	margin: auto; 
	color: #2E86C1;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: arial, sans-serif;
	font-size: 2.6em;
	font-weight: bold;
}

#ohel > a {
	margin-left: 25px;
	font-weight: bold;
	font-family: robotothin;
	font-size: 0.9em;
	border: 1px solid #fff; 
	width: 200px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	border-radius: 5px;
	background-color: #EBE9E9;
	color: #2E86C1;
	padding: 10px 25px 10px 25px;
}

.img {
	width: 682px;
	height: 695px;
	margin: auto;
	background-image: url("images/ohel.jpg");
	border-radius: 5px;
	border: 1px solid none;
}

.img > a {
	color: #fff;	
	position: relative;
	top: 300px; left: 90px;
	text-shadow: 1px 1px 2px gray;
	font-size: 2em;
	font-family: robotoregular;
	border: 2px solid #fff;
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(248,249,249,0.3);
}

.img > a:hover {
	transition-property: bakground-color,color,font-size;
	transition-duration: 600ms;
	background-color: rgba(249,249,249);
	color: #2E86C1;
}

#PAGE_OHEL {
	width: 100%;
	height: auto; 
	margin-bottom: 100px;
	border: 1px solid none;
}

#PAGE_OHEL > p {
	margin: auto; 
	width: 80%;
	height: auto;
	padding-top: 20px;
	text-align: justify;
	font-family: arial, sans-serif;
	color: #1A5276;
	font-size: 1.1em;
	line-height: 1.8em;
}

@media screen and (max-width: 1000px){
	#ohel {
		width: 98%;
		height: auto;
		margin: auto;
		margin-top: 250px;
		border: 1px solid none;
}
	#ohel > h1 {
		padding: 77px 0 77px 0;
		font-size: 6vw;
		
}
	#PAGE_OHEL > p {
		width: 90%;
		padding-top: 30px;
		font-size: 2.2vw;
		line-height: 1.8em;
}

}




/*----------------------FORMULAIRE OHEL----------------------*/

#DEMANDE {
	width: 60%;
	height: 100px;
	margin: auto;
	font-family: robotomedium;
	font-size: 1.8em;
	color: #3E5975;
	text-align: center;
}

.formulaire_ohel {
	width: 60%;
	height: auto;
	margin: auto;
}

input{
	width: 97%;
	height: 50px;
	font-family: robotoregular;
	font-size: 1em;
	margin: auto;
	padding-left: 15px;
	border-radius: 3px;
	border: 1px solid lightgray;
	box-shadow: 1px 1px 7px lightgray;
}

input:hover{
	background-color: #FFE6FB;
}

textarea{
	width: 97%;
	height: 150px;
	font-size: 1em;
	font-family: robotoregular;
	padding-left: 15px;
	padding-top: 5px;
	border-radius: 3px;
	border: 1px solid lightgray;
	box-shadow: 1px 1px 7px lightgray;
}

textarea:hover {
	background-color: #FFE6FB;
}

button {
	border: 1px solid #fff;
	width: 40%;
	height: 60px;
	font-size: 1.8em;
	font-family: arial, sans-serif;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	background-color: #3E5975;
}

button:hover {
	background-color: lightgray;
	color: #3E5975;
	cursor: pointer;
}


.bandeau_allodons {
	width: 98%;
	height: auto;
	margin: auto;
	text-align: center;
	font-family: arial, sans-serif;
	font-size: 1.4em;
	color: #fff;
	background-color: #3E5975;
	border-radius: 5px;
	padding-top: 1%;
	padding-bottom: 1%;
}

.bandeau_allodons:hover {
	background-color: #E5E8E8;
	color: #3E5975;
}


@media screen and (max-width: 1000px){
	#DEMANDE {
	width: 80%;
	height: auto;
	margin: auto;
	font-family: robotomedium;
	font-size: 4vw;
	color: #3E5975;
	text-align: center;
}

.formulaire_ohel {
	width: 80%;
	height: auto;
	margin: auto;
}

input{
	width: 97%;
	height: 100px;
	font-family: robotoregular;
	font-size: 2.2vw;
	margin: auto;
	padding-left: 15px;
	border-radius: 3px;
	border: 1px solid lightgray;
	box-shadow: 1px 1px 7px lightgray;
}

input:hover{
	background-color: #FFE6FB;
}

textarea{
	width: 97%;
	height: 300px;
	font-size: 2.2vw;
	font-family: robotoregular;
	padding-left: 15px;
	padding-top: 5px;
	border-radius: 3px;
	border: 1px solid lightgray;
	box-shadow: 1px 1px 7px lightgray;
}

textarea:hover {
	background-color: #FFE6FB;
}

button {
	border: 1px solid #fff;
	width: 40%;
	height: 60px;
	font-size: 1.8em;
	font-family: arial, sans-serif;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	background-color: #3E5975;
}

button:hover {
	background-color: lightgray;
	color: #3E5975;
	cursor: pointer;
}


.bandeau_allodons {
	width: 98%;
	height: auto;
	margin: auto;
	text-align: center;
	font-family: arial, sans-serif;
	font-size: 1.4em;
	color: #fff;
	background-color: #3E5975;
	border-radius: 5px;
	padding-top: 4%;
	padding-bottom: 4%;
}

.bandeau_allodons:hover {
	background-color: #E5E8E8;
	color: #3E5975;
}
}











.CA1{
	width: 100%;
	height: auto;
	margin: auto; 
}

.CA1 > h2 {
	font-family: robotoregular;
	color: #2874A6;
	font-size: 1.4em;
	text-align: center;
}

.CA1 > p {
	padding: 0 0px 30px 0px;
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	line-height: 1.4em;
	color: #2874A6;
}

#CC01 {
	width: 95%;
	height: 600px;
	margin: auto;
	background-image: url('images/cantine1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

#CC01 > h1 {
	height: 260px;
	line-height: 260px;
	vertical-align: middle;
	text-align: center;
	font-size: 10vw;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0 5px 10px rgba(0,0,0,1);
	mix-blend-mode: overlay;

	
	
}

.img3 {
	margin: auto;
	width: 100%;
	height: 613px;
	border: 0px solid #fff;
	background-image: url("images/rabbi2.jpg");
	background-repeat: no-repeat;
	background-position: center;
	
	webkit-animation-name: diapo1;
	webkit-animation-duration: 60s;
	webkit-animation-timing-function: cubic-bezier(1.1, -1.6, 1.2, 1);
	webkit-animation-iteration-count: infinite;
	webkit-animation-direction: normal;
	
	moz-animation-name: diapo1;
	moz-animation-duration: 60s;
	moz-animation-timing-function: cubic-bezier(1.1, -1.6, 1.2, 1);
	moz-animation-iteration-count: infinite;
	moz-animation-direction: normal;
	
	animation-name: diapo1;
	animation-duration: 60s;
	animation-timing-function: cubic-bezier(1.1, -1.6, 1.2, 1);
	animation-iteration-count: infinite;
	animation-direction: normal;
}

@-webkit-keyframes diapo1{
	0%{background-image: url("images/rabbi2.jpg");}
	25%{background-image: url("images/rabbi2b.jpg");}
	50%{background-image: url("images/rabbi4.jpg");}
	75%{background-image: url("images/rabbi5.jpg");}
}

@-moz-keyframes diapo1{
	0%{background-image: url("images/rabbi2.jpg");}
	25%{background-image: url("images/rabbi2b.jpg");}
	50%{background-image: url("images/rabbi4.jpg");}
	75%{background-image: url("images/rabbi5.jpg");}
}

@keyframes diapo1{
	0%{background-image: url("images/rabbi2.jpg");}
	25%{background-image: url("images/rabbi2b.jpg");}
	50%{background-image: url("images/rabbi4.jpg");}
	75%{background-image: url("images/rabbi5.jpg");}
}

#page_index > h1{
	margin: auto;
	margin-top: 10px;
	width: 95%;
	font-family: robotomedium;
	color: #2E86C1;
	font-size: 2.2em;
	text-align: center;
	
}

/*---PAGE PESSAH---*/
#pessah {
	width: 1000px;
	height: 1600px;
	margin: auto;
	background-color: #FBFCFC;
	box-shadow: 2px 4px 10px gray;
}

#pessah > h1 {
	width: 100%; 
	height: 40px;
	margin: auto; 
	color: #2E86C1;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: robotothin;
	font-size: 2.6em;
}

#pessah > a {
	margin-left: 25px;
	font-weight: bold;
	font-family: robotothin;
	font-size: 0.9em;
	border: 1px solid #fff; 
	width: 200px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	border-radius: 5px;
	background-color: #EBE9E9;
	color: #2E86C1;
	padding: 10px 25px 10px 25px;
}

#PAGE_PESSAH2 {
	width: 92%;
	height: 1100px;
	margin: auto; 
}

.PESS1{
	width: 100%;
	height: auto;
	margin: auto; 
}

.PESS1 > h2 {
	font-family: robotoregular;
	color: #2874A6;
	font-size: 1.4em;
	text-align: center;
}

.PESS1 > p {
	padding: 0 0px 30px 0px;
	text-align: justify;
	font-family: arial;
	font-size: 1em;
	line-height: 1.4em;
	color: #2874A6;
}

.PESS2{
	width: 100%;
	height: auto;
	margin: auto; 
	border: 1px solid #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.IP1 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 160px;
	vertical-align: middle;
	background-color: lightblue;
}

.texte {
	font-family: robotoregular;
	color: #fff;
	text-shadow: 2px 2px 7px #000;
	font-size: 1.1em;
}

.texte:hover{
	font-family: arial;
	color: #000;
}

.IP1:hover{
	background-color: #fff;
}

.IP2 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 80px;
	vertical-align: middle;
	background-color: lightblue;
}

.IP2:hover{
	background-color: #fff;
}

.IP3 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 160px;
	vertical-align: middle;
	background-color: lightblue;
}

.IP3:hover{
	background-color: #fff;
}


.IP4 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 80px;
	vertical-align: middle;
	background-color: lightblue;
}

.IP4:hover{
	background-color: #fff;
}


.IP5 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 160px;
	vertical-align: middle;
	background-color: lightblue;
}

.IP5:hover{
	background-color: #fff;
}


.IP6 {
	width: 260px;
	height: 160px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 10px;
	text-align: center;
	line-height: 80px;
	vertical-align: middle;
	background-color: lightblue;
}

.IP6:hover{
	background-color: #fff;
}

.PESS3{
	width: 100%;
	height: 800px;
	margin: auto; 
	border: 1px solid #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.IP7 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah3.jpg");
}

.IP8 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah4.jpg");
}

.IP9 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah5.jpg");
}

.IP10 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah6.jpg");
}

.IP11 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah7.jpg");
}

.IP12 {
	width: 260px;
	height: 360px;
	border: 1px solid #fff;
	margin: 20px;
	border-radius: 5px;
	background-image: url("images/pessah8.jpg");
}

/*---PAGE LAG---*/
#lag_page {
	width: 1000px;
	height: auto;
	margin: auto;
	background-color: #FBFCFC;
	box-shadow: 2px 4px 10px gray;
}

#lag_page > h1 {
	width: 100%; 
	height: 40px;
	margin: auto; 
	color: #2E86C1;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: robotothin;
	font-size: 2.6em;
}

#lag_page > a {
	margin-left: 25px;
	font-weight: bold;
	font-family: robotothin;
	font-size: 0.9em;
	border: 1px solid #fff; 
	width: 200px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	border-radius: 5px;
	background-color: #EBE9E9;
	color: #2E86C1;
	padding: 10px 25px 10px 25px;
}

#lag2 {
	width: 900px;
	height: 340px;
	margin: auto;
	box-shadow: 10px 10px 10px #FAD7A0;
	border-radius: 20px
}

#lag3 {
	width: 90%;
	height: 100px;
	margin: auto;
	text-align: center;
	color: orange;
	padding-top: 20px;
	font-family: robotothin;
	font-size: 2em;
}

#lag4 {
	width: 77%;
	height: auto;
	margin: auto;
	margin-bottom: 26px;
	text-align: center;
	color: #CB4335;
	padding-top: 20px;
	font-family: robotoregular;
	font-size: 1.5em;
}

#lag_bougies {
	width: 90%;
	height: auto; 
	margin: auto;
	display: flex; 
	flex-wrap: wrap;
	justify-content: space-around;
}

figure {
    width: 90%;
	height: 50px;
	margin-top: 30px;
	margin-left: 40px;
}



#lag_rabbi {
	width:500px;
	height: 230px;
	margin: auto;
	margin: 10px;
	display: flex;
	border: 2px solid lightgray;
}


.bougie1 {
	width: 60px; 
	height: 197px; 
	margin: 10px;
	background-image: url("images/lag_bougie1.jpg");
	background-repeat: no-repeat;
}

.texte_bougie1 {
	width: 480px;
	height: 230px; 
}

.texte_bougie1 > p {
	width: 400px;
	height: 40px;
	line-height: 60px;
	text-align: center;
	vertical-align: bottom;
	margin: auto;
	font-size: 1em;
}

.texte_bougie1 > h1 {
	width: 400px;
	height: 45px;
	line-height: 45px;
	vertical-align: bottom;
	text-align: center;
	margin: auto;
	font-size: 1.8em;
	font-family: robotothin;
}


.texte_acquereur1 {
	width: 400px;
	height: 90px;
	margin: auto;
}

.texte_acquereur1 > h2 {
	width: 400px;
	line-height: 30px;
	text-align: center;
	margin: auto;
	font-family: bahnschrift;
	font-size: 1.6em;
}

.texte_acquereur1 > p{
	width: 400px;
	height: auto;
	text-align: center;
	line-height: 1.29em;
	margin: auto;
	margin-top: -10px;
	font-size: 0.9em;
	font-family: arial;
	padding-top: -20px;
}

.lag_video {
	width: 50%;
	height: 230px;
	margin:auto;
	
}

#lag_bougies2 {
	width: 90%;
	height: auto;
	margin: auto;
	display: flex; 
	flex-wrap: wrap;
	justify-content: space-around;
}

#lag_soutien {
	width:420px;
	height: 230px;
	margin: auto;
	margin: 10px;
	display: flex;
	border: 2px solid lightgray;
}

.bougie2 {
	width: 60px; 
	height: 197px; 
	margin: 20px;
	background-image: url("images/lag_bougie2.jpg");
	background-repeat: no-repeat;
}

.texte_bougie2 > p {
	width: 280px;
	height: 40px;
	line-height: 60px;
	text-align: center;
	vertical-align: bottom;
	margin: auto;
	font-size: 1em;
}

.texte_bougie2 > h1 {
	width: 280px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	vertical-align: bottom;
	margin: auto;
	font-size: 1.8em;
	font-family: robotothin;
}


.texte_acquereur2 {
	width: 280px;
	height: 90px;
	margin: auto;
}

.texte_acquereur2 > h2 {
	width: 280px;
	line-height: 30px;
	text-align: center;
	margin: auto;
	font-family: bahnschrift;
	font-size: 1.4em;
}

.texte_acquereur2 > p{
	width: 280px;
	height: auto;
	text-align: center;
	line-height: 1.29em;
	margin: auto;
	margin-top: -10px;
	font-size: 0.9em;
	font-family: arial;
	padding-top: -20px;
}

/*---PAGE ONEG---*/
#oneg_page {
	width: 98%;
	height: 2400px;
	margin: auto;
	background-color: #FBFCFC;
	box-shadow: 2px 4px 10px gray;
}

#ONEG01 {
	margin-top: 160px;
}

#ONEG01 > h1 {
	width: 95%;
	height: auto;
	margin: auto;
	text-align: center;
	font-family: robotothin;
	font-size: 2.6em;
	border: 1px solid green;
}

#oneg_page > h1 {
	width: 100%; 
	height: 40px;
	margin: auto; 
	color: #2E86C1;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: robotothin;
	font-size: 2.6em;
}

#oneg_page > a {
	margin-left: 25px;
	font-weight: bold;
	font-family: robotothin;
	font-size: 0.9em;
	border: 1px solid #fff; 
	width: 200px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	border-radius: 5px;
	background-color: #EBE9E9;
	color: #2E86C1;
	padding: 10px 25px 10px 25px;
}

#oneg2 {
	width: 900px;
	height: 550px;
	margin: auto;
}

#oneg3 {
	width: 90%;
	height: 100px;
	margin: auto;
	text-align: center;
	color: orange;
	padding-top: 20px;
	font-family: robotomedium;
	font-size: 1.7em;
}

#oneg4 {
	width: 77%;
	height: auto;
	margin: auto;
	margin-bottom: 26px;
	text-align: center;
	color: #7B7D7D;
	padding-top: 20px;
	font-family: inherit;
	font-size: 1.29em;
}

#oneg5 {
	width: 98%;
	height: 613px;
	margin: auto;
	background-image: url('images/rabbi2.jpg');
	background-repeat: no-repeat;	
	border: 10px solid red;
}

#ONEG {
	font-family: robotomedium;
	text-align: center;
}

#ONEG > h1 {
	font-size: 5vw;
	text-align: center;
}

#ONEG > p {
	font-size: 1.2em;
	
}

/*---MENTIONS LEGALES--*/

#MENTIONS {
	width: 95%;
	height: auto;
	margin: auto;
	margin-top: 250px;
}

#ML01 {
	width: 90%;
	height: auto;
	margin: auto;
	margin-top: 100px;
	text-align: justify;
}

#ML01 > h1 {
	font-family: arial;
	font-size: 6vw;
	color: #03224C;
	text-align: center;
}

#ML01 > h2 {
	font-family: robotomedium;
	font-size: 4.5vw;
	color: #3498DB;
}

#ML01 > p {
	font-family: arial, sans-serif;
	font-size: 3.8vw;
	line-height: 4.4vw;
	color: #5F6A6A;
}