@charset "utf-8";
/* CSS Document */
/*----------LE HOVER + ---------------*/
.effects .img {
	position: relative;
	margin-bottom: 5px;
}
.effects .img img {
	margin: 0;
	padding: 0;
}
.overlay {
	display: block;
	position: absolute;
	z-index: 20;
	background: rgba(255, 255, 255, 0.7);
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
a.close-overlay {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	font-size: 20px;
	font-weight: 700;
	color: #00002e;
	line-height: 45px;
	text-align: center;
	background-color: #000;
	cursor: pointer;
}
a.close-overlay.hidden {
	display: none;
}
a.expand {
	display: block;
	position: absolute;
	z-index: 100;
	text-align: center;
	color: #171f32;
	line-height: 50px;
	font-weight: 100;
	font-size: 120px;
	text-decoration: none;
}
/* ============================================================
  EFFECT 6 - ICON BOUNCE IN
============================================================ */
#effect-6 .overlay {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
}
#effect-6 .overlay a.expand {
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: unset;
}
#effect-6 .img.hover .overlay {
	opacity: 1;
}
#effect-6 .img.hover .overlay a.expand {
	top: 50%;
	margin-top: -30px;
	opacity: 1;
}
/*--------------SCROLL DOWN------------*/
.container {
  position: relative;
  width: 24px;
  height: 24px;
  margin: auto;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #050931;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 25px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #050931;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
/*--------------------------------LES BASES------------------------------*/
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	/*height: 100%;*/
	font-family: 'Open Sans', sans-serif;
	color: #050931;
}
h1, h2, h3, h4, h5 {
	font-family: 'Libre Baskerville', serif;
}

.vert{
	color: #4cae32;
}
.bleu{
	color: #374093;
}


.vertClair{
	color:#809b7a ;
}
.bleuClair{
	color: #8489c5;
}
.orangeClair{
	color: #bd7a52;
}


.noir{
	color: #050931;
}
.grid-container2 {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 1auto;
}
.grid-container3 {
	display: grid;
	grid-template-columns: 33.33% 33.33% 33.33%;
	grid-template-rows: 1auto;
}
.grid-container4 {
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	grid-template-rows: 1auto;
}
.grid-container5 {
	display: grid;
	grid-template-columns: 20% 20% 20% 20% 20%;
	grid-template-rows: 1auto;
}
#content img {
	max-width: 100%;
}
.fullSize{
	width:100%;
}
.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	clear: both;
}
a {
	/*color: #e7530e;*/
	color:#ff793a;
	text-decoration: none;
}
a:hover {
	color: #374093;
}
/*COULEURS*/
.blue {
	color: #050931;
}
.orange {
	color: #e7530e;
}
.green {
	color: #4cae32;
}
.white {
	color: white;
}
/*---------------------------MENU--------------------------------*/
/*SLICK MENU*/
.slicknav_menu {
	display: none;
}
/*MENU*/
nav {
	padding-top: 25px;
	padding-bottom: 20px;
	position: fixed;
	background: white;
	width: 100%;
	overflow: hidden;
	top: 0;
	z-index: 1000;
}
nav a {
	/*color: #b8bac6;
	font-size: 14px;*/
	color: #9d9fa9;
    font-size: 14px;
    font-weight: 600;
}
nav ul {
	padding: 0;
	margin: auto;
	width: 1900px;
	text-align: center;
}
nav li {
	list-style-type: none;
	display: inline-block;
	text-transform: uppercase;
	padding-left: 35px;
	padding-right: 35px;
}
.active {
    border-bottom: 10px solid #e7530e;
    padding-bottom: 11px;
}



nav ul ul {
	display: none;
	position: absolute;
}	
nav ul li:hover > ul {
    display: inherit;
    position: fixed;
    padding-top: 12px;
    width: 215px;    
    padding-bottom: 10px;
    background: white;
}	
nav ul ul li {
    display: block;
    position: relative;
}
nav ul ul a {
    font-size: 13px;
}

/*--------------------------CONTENU-------------------------------*/

/*HEADER*/
header {
	margin-top: 58px;
	line-height: 0;
}
.indexHeader {
	width: 100%;
}
.barreTitre {
	padding-top: 35px;
	margin-bottom: 10px;
}
.barre {
	width: 60px;
	height: 8px;
	background: #e7530e;
}
#indexRight{
	padding-bottom:30px;
}
#indexRight p {
    padding: 20px 100px 0px 100px;
    font-style: italic;
    font-size: 19px;
    line-height: 1.50;
}
#indexLeft {
	line-height: 0;
}
#indexLeft img{    
	min-height: 100%;
    object-fit: cover;
}
i.fas.fa-quote-left {
	margin-left: 50px;
	position: absolute;
	margin-top: 23px;
}
#textContent{ 
	max-width:900px;
    font-size: 17px;
    line-height: 1.83;
	margin:auto;
    padding: 0px 20px 100px 20px;
}
/*BOUTON*/

.bouton {
	font-size: 13px;
	background-color: #384092;
	display: inline-block;
	color: white;
	text-decoration: none;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-right: 20px;
	transition-duration: 0.3s;
}
.bouton a, .bouton a:hover {
	color: white;
}
.bouton:hover {
	color: white;
	background-color: #050931;
	transition-property: color;
	transition-property: background-color;
	transition-duration: 0.3s;
}
i.fas.fa-angle-left {
    margin-right: 7px;
}
/*------------------------FORMULAIRE--------------------------*/
.form .text-input, .form .textarea, .form .label, .form .button {
	padding: 1em 1.5em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	line-height: normal;
	border: 1px solid transparent;
	border-radius: 0;
}
.form .text-input, .form .textarea {
	font: inherit;
	line-height: normal;
	width: 100%;
	box-sizing: border-box;
	display: block;
	padding-left: 0;
	border-bottom-color: rgba(0, 0, 0, 0.3);
	background: transparent;
	outline: none;
	color: black;
	
}
.form .text-input:placeholder, .form .textarea:placeholder {
 color: rgba(0, 0, 0, 0.7);
}
.form .text-input:-webkit-autofill, .form .textarea:-webkit-autofill {
 box-shadow: 0 0 0px 1000px white inset;
 border-top-color: white;
 border-left-color: white;
 border-right-color: white;
}
.form .error.text-input, .form .error.textarea, .error .form .text-input, .form .error .text-input, .error .form .textarea, .form .error .textarea {
	border-color: transparent transparent red transparent;
}
.form:not(.has-floated-label) .text-input:active, .form:not(.has-floated-label) .textarea:active, .form:not(.has-floated-label) .text-input:focus, .form:not(.has-floated-label) .textarea:focus {
	border-color: transparent transparent black transparent;
}
.form .label {
	position: absolute;
	z-index: 10;
	pointer-events: none;
	padding-left: 0;
}
.form .label {
	top: 0;
	left: 0;
	color: rgba(0, 0, 0, 0.7);
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.active .form .label, .form .active .label {
	font-size: 0.75em;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0;
	color: rgba(0, 0, 0, 0.3);
	background: white;
}
.focus .form .label, .form .focus .label {
	color: #081635;
}
.form.has-floated-label .field:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	border-bottom: 1px solid black;
	-webkit-transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.form.has-floated-label .field.focus:after {
	width: 100%;
}
.form .button {
	font: inherit;
	line-height: normal;
	cursor: pointer;
	background-color: #081635;
	color: white;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.14286em;
	border: 1px solid #081635;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.form .button:hover, .form .button:focus, .form .button:active {
	color: #081635;
	background: white;
}
.form .button:active {
	position: relative;
	top: 1px;
	left: 1px;
}
.form {
	margin: 0 auto;
	padding: 1em 2em;
	box-sizing: border-box;
	overflow: hidden;
}
.form .field {
	position: relative;
	width: 100%;
	margin-bottom: 1.5em;
	float: left;
}
@media screen and (min-width: 40em) {
.form .field.half {
	width: calc(50% - 2em);
	margin-right: 2em;
}
.form .field.half + .half {
	margin-right: 2em;
}
}
.form .field:last-child {
	float: right;
	width: auto;
}
.form .textarea {
	max-width: 100%;
}
svg path {
	fill: black;
}
/*----------------LES NEWS----------------------*/
.infosNews {
	padding-left: 20px;
}
.dateNews {
	font-weight: 900;
	font-size: 30px;
	margin-bottom: 0;
	margin-top: 10px;
}
.titreNews {
	margin-top: 0;
	font-weight: 600;
	font-size: 20px;
}
.box {
	position: relative;
	width: 100%;		/* desired width */
}
.box:before {
	content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}
.contentNews {
	/*background-image: url(../images/photo_haut_une_g_logo.jpg);*/
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
/*PAGE_NEWSDETAILS*/
#newsText {
    padding-left: 40px;
}
/*-----------------CARTE----------------*/
#indexMap {
	line-height: 0;
	margin-top:100px;
}
#indexMap img {
	width: 100%;
}
/*---------------FOOTER-----------------*/
#footer {
	background-color: #050931;
	overflow: hidden;
	padding-bottom: 50px;
}
#infosEcole {
	margin-left: 100px;
	border-left: 8px solid #4cae32;
	padding-left: 25px;
	margin-top: 25px;
}
#infosFondamental {
	margin-right: 100px;
	border-left: 8px solid #e7520e;
	padding-left: 25px;
	margin-top: 25px;
	display: block;
	min-width: 285px;
}
#infosFondamental a {
	color: white;
}
#footer a:hover {
	color: #b8bac6;
}
#infosCopyright {
	margin-right: 100px;
	border-left: 8px solid #374093;
	padding-left: 25px;
	display: block;
	font-size: 14px;
    margin-top: -66px;
}
i.fab.fa-facebook {
	font-size: 35px;
	color: white;
}
i.fab.fa-facebook:hover {
	color: #b8bac6;
}
i.fas.fa-external-link-alt {
	margin-left: 20px;
	color: #e7520e;
}
/*LE RESPONSIVE*/



@media screen and (max-width: 1850px) {
nav li {
	padding-left: 24px;
	padding-right: 24px;
}
nav ul {
	width: 1600px;
}
}
@media screen and (max-width: 1600px) {
nav li {
	padding-left: 11px;
	padding-right: 11px;
}
nav ul {
	width: 1300px;
    text-align: center;
}
 nav ul li:hover > ul {width: 190px;}
}
@media screen and (max-width:1550px) {
	nav ul li:hover > ul {
    width: 165px;
	}
}
@media screen and (max-width: 1300px) {
nav li {
	padding-left: 7px;
	padding-right: 7px;
}
nav ul {
	width: 1200px;
}
}
@media screen and (max-width:1200px) {
.slicknav_menu {
	display: block;
	position: fixed;
	top: 0;
    z-index: 10000;
	width: 100%;
}
nav {
	display: none;
	position: unset;
}
nav ul {
	width: 100%;
}
.active {
	border-bottom:none;

}
header {
    margin-top: 48px;
}
#indexRight p {
	padding: 20px 30px 0px 30px;
}
#infosEcole,#infosFondamental, #infosCopyright {
    float: none;
    margin-left: 20px;
    margin-top: 20px;
}
}
@media screen and (max-width:900px) {
.grid-container2{
	grid-template-columns: 100%;
}
.grid-container4{
	grid-template-columns: 50% 50% ;
}
}