/*
Index:
- General Settings and resetters
- Top Navbar
- Big Panel on the homepage
- Small mouse on the homepage
- Foot Navbar
- Links, Buttons and Language Selector
- Styles for the homepage
- Styles used for 1, 2 and 3-columns pages
- Contact Page
- Modale box for 1st language selection
- Test
*/

/*General Settings and resetters*/


html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
#wrap {
	min-height: 100%;
	height: 100%;
	height: auto !important;
	margin-top: 50px;
}


p,a,ul,li,h1,h2,h3,h4,h5,h6 {
	font-family: 'PT Sans', sans-serif;
}
h1 {
	font-weight: 700;
	color: #007DA5;
	text-align: center;
	font-size: 2em;
	margin-bottom: 15px;
	margin-top: 10px;
}
h3,h4 {
	color:#404040;
	font-weight: 700;
	text-align: center;
}
p,li {
	text-align: justify;
	color: #404040;
	font-size: 1.1em;
	line-height: 1.2;
}
strong {
	color:#007DA5;
}
/*Top Navbar*/
.navbar-default {
	border-top:0;
	border-left:0;
	border-right:0;
	border-bottom:none;
	border-radius:0;
	background-color: #fff;
}
.dropdown-toggle {
	color: #008CB9;
}
.navbar-default .navbar-nav>li>a{
	color:#008CB9;
}

.coach, .quatre-themes {
	width:100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top:25px;
	padding:4%;
	border:1px solid #007ba6;
}

.quatre-themes {
	border:0;
}

.photo-coach {
	width: 25%;
	order:2;
	text-align: center;
}

.bio-coach-left, .bio-coach-right {
	order:1;
	padding-right: 5%;
}

.bio-coach-right {
	padding-right: 0;
	padding-left: 5%;
}

.aligncenter {
	text-align: center;
}

.button-pc, a.button-pc, input.wpcf7-submit {
	background-color: #008CB9;
	border:none;
	border-radius: 28px;
	box-shadow: none;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	margin: 0;
	padding:12px 24px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	overflow-wrap: break-word;
}

a.button-pc:hover {
	background-color: white;
	color: #008cb9;
	border:1px solid #008CB9;
}
@media screen and (min-width: 979px) {
  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }
}
.dropdown-menu {
	border-radius:0;
	min-width: 0;
}
.navimg {
	margin-top: 5px;
	margin-left: 15px;
	max-height: 40px;
}
.navbar-brand {
	padding: 0;
}
@media screen and (min-width: 768px) {
	#logotablet {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	#logodesktop {
		display: none;
	}
	.container {
		margin-top:50px;
	}
	.navbar-header {
		margin-top: -50px;
	}
	.homebutton {
		margin:5px auto 50px;
	}
}


/*BIG PANEL ON THE HOMEPAGE*/
#customwelcomepanel {
	position: relative;
	max-height: 100vh;
	overflow: hidden;
	top: -50px;
}
.custombigimage {
	width: 100%;
	height: auto;
}
#customtitle {
	position: absolute;
	left: 50%;
	top:40%;
}
#customtitle img {
	margin: 25px auto;
}
#customtitle h1, #customtitle p, #customtitle .btn-group {
	position: relative;
	left: -50%;
	top:-20%;
	color: #fff;
	font-weight: 700;
}
#customtitle a {
	position: relative;
	top:-20%;
	color: #fff;
	font-weight: normal;
}
#customtitle h1 {
	color: #008CB9;
	font-size: 3em;
	margin-bottom: 0px;
	margin-top: 0px;
}
#customtitle p {
	font-size: 2.5em;
	text-align: center;
	font-style: italic;
	width: 100%;
	/*background: rgba(0, 0, 0, 0.3);*/
}
@media screen and (max-width: 768px) {
	#customtitle {
		top:50px;
	}
	#customtitle p, #customtitle a {
		top:-5%;
	}
	#customtitle p {
		font-size: 1.5em;
		font-weight: 700;
		text-align: center;
	}
	#customtitle {
		width: 80%;
	}
	#customtitle img {
		max-width: 100px;
		margin-top: 40px;
		margin-bottom: 0px;
	}
	.mouse,.wheel {
		display: none;
	}
	a[href="#secondPage"] {
		display: none;
	}
}
.section:nth-child(2n+3) {
	background: #e5f3f8;
}
@media screen and (min-width: 990px) {
	.section:last-child {
		padding-top: -50px;
	}
}

/*Small mouse on the homepage*/
.mouse{
	position: absolute;
	bottom: -100px;
	height: 30px;
	width: 20px;
	border-radius: 10px;
	transform: none;
	border: 2px solid white;
}
.wheel{
	height: 5px;
	width: 2px;
	display: block;
	margin: 5px auto;
	background: white;
	position: relative;
	-webkit-animation: mouse-wheel 1.2s ease infinite;
	-moz-animation: mouse-wheel 1.2s ease infinite;
}
@-webkit-keyframes mouse-wheel{
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(6px);
		-ms-transform: translateY(6px);
		transform: translateY(6px);
	}
}
@-moz-keyframes mouse-wheel{
	0% { top: 1px; }
	50% { top: 2px; }
	100% { top: 3px;}
}
@-webkit-keyframes mouse-scroll {
	0%   { opacity: 0;}
	50%  { opacity: .5;}
	100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}
@keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}

/*Foot Navbar*/
footer {
	background: #666666;
}
footer p {
	color: #fff;
	margin-top: 15px;
}
footer p:nth-child(1) {
	float: left;
}
footer p:nth-child(2) {
	float: right;
}
#push,#footer {
	height: 50px;
}
#footer {
	margin:15px 0 0;
}
footer a {
	color: #fff !important;
}

/*Links, Buttons and Language Selector*/
a:link,a:visited,a:active {
	color: #007DA5;
	text-decoration: none;
}
a:hover{
	color: #008CB9;
	text-decoration: none;
}
.btn-default {
	background: #007DA5;
	border: none;
	border-radius: 0;
	padding: 10px;
	margin-left: 15px;
	font-size: 1.3em;
}
.homebutton {
	position: relative;
}
.homebutton small {
	margin: 0;
	padding: 0;
	font-size: 0.8em;
}
.homebutton .btn-default {
	padding-top: 15px;
	padding-bottom: 10px;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -43px;
	margin: 0;
	font-size: 1em;
	border-top: 3px solid #F5A204;
}
.btn-default:link,.btn-default:visited,.btn-default:hover,.btn-default:active {
	background: #008CB9;
}
a:link.btn,a:visited.btn,a:hover.btn,a:active.btn{
	color:#fff;
	text-decoration: none;
}
.customlanguageselector {
	display: none; /* temporairement */
	position: fixed;
	right: 0;
	top: 0;
}
.customlanguageselector .dropdown-menu{
	border-radius: 0;
	border:0;
	margin: 0;
}
@media screen and (max-width: 768px) {
	.customlanguageselector {
		right:50px;
	}
	.navbar-default {
		background: #007DA5;
		border: none;
	}
	.navbar-collapse {
		background-color: #fff;
	}
	button.navbar-toggle {
		background: #007DA5;
		border-radius: 0;
		border: none;
		height: 50px;
		width: 50px;
		margin: 0;
	}
	button.navbar-toggle:hover{
		background-color: #008CB9;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}
	.navbar-default .navbar-brand{
		color: #fff;
	}
}
.customlanguageselector .btn-default {
	font-size: 1em;
	color: #fff;
	height: 50px;
	width: 50px;
}
.customlanguageselector .dropdown-menu {
	min-width: 50px;
	width: 50px;
}
.buttonfacebook a {
	background: #3765A3;
}
.buttontwitter a {
	background: #659FCB;
}
.buttonlinkedin a {
	background: #007BB6;
}
.btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default {
	background:#007DA5;
}
.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open>.dropdown-toggle.btn-default.focus, .open>.dropdown-toggle.btn-default:focus, .open>.dropdown-toggle.btn-default:hover {
	background:#007DA5;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background:#007DA5;
}

/*Styles for the homepage*/
.customhomecoloutter {
	margin:70px 0 -20px;
}
.customhomecol {
	background: #EAF3FD;
	padding: 15px;	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 990px) {
	.customhomecol {
		min-height: 450px;
	}
	.altnewsimg {
		height: auto;
	}
}
.customhomecol:hover {
	background: #A0BDD7;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.customhomecol:hover p,.customhomecol:hover h4 {
	color:#000;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.customcolcontent img {
	position: relative;
	margin: 20px auto;
}
@media screen and (min-width: 769px) {
	.customcolcontent {
		min-height: 390px;
	}
}
.center-block {
	margin-bottom:30px;
}
.description p {
	font-size: 1.5em;
	text-align: justify;
	margin: 0 auto;
	width: 100%; /* 30em; */
	-moz-text-align-last:center;
	text-align-last:center;
}
@media screen and (max-width: 992px) {
	.description p {
		font-size:1em;
	}
}
.description p strong {
	margin: auto;
}
.btnarrow {
	position: absolute;
	top: -3px;
	left: 47%;
	background: #F1F3F9;
}

/*Styles used for 1, 2 and 3-columns pages*/
.onepagetext p, .onepagetext li {
	font-size: 1.25em;
	line-height:1.6;
	max-width:60em;
	margin:auto;
	padding:0 1em;
	margin-bottom: 15px;
}
.onepagetext li {
	font-size: 1.2em;
	list-style: none;
	padding-left: 1em; 
    text-indent: -1em;
    line-height:1.2;
}
.onepagetext li strong {
	font-weight: 700;
}
.onecoltitle h1 {
	margin-bottom: 0;
}
.onepagetext p strong {
	font-weight: 700;
}
.customintroduction p {
	max-width:70em;
}
.custompage h1 {
	width:100%;
	background: #007DA5;
	color:#fff;
	text-align: left;
	padding: 10px 15px;
	font-size: 1.6em;
}
.custompage strong {
	color: #007DA5;
}
.customupperimg img {
	width: 100%;
}
.customupperimg {
	max-height: 190px;
	overflow: hidden;
	margin-bottom:25px;
}
.customintroduction {
	margin-bottom: 25px;
}
.imgsizer {
	width: 100%;
	height: 150px;
	background:;
	overflow: hidden;
	position:relative;
}
.imgsizer img {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 200px;
	height: auto;
	margin: auto;
}
@media screen and (min-width:768px) and (max-width: 1370px) {
	.section {
		min-height: 100vh;
	}
	div.fp-tableCell {
		vertical-align: 0px;
		padding-top: 10px;
	}
	[data-anchor|= firstPage] .fp-tableCell, [data-anchor|= secondPage] .fp-tableCell {
    	vertical-align: middle;
    	padding-top: 0;
	}
}

/*Styles for Alternative News Page*/
.altnewsimg img {
	margin-top: 5px;
	margin-bottom: 20px;
}
.altnewsimg p {
	padding-right: 20px;
	padding-bottom: 5px;
}
.altnewsimg .homebutton {
	margin-top: 20px;
}

/*Contact Page*/
#map {
	height: 400px;
	width: 100%;
}
.wpcf7-form {
	margin-top: 20px;
}
@media (min-width: 769px){
	.form-horizontal .control-label {
		text-align: left;
		padding-left: 25px;
	}
}
/*Style for News Page*/
.newsdate {
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 0.9em;
	color: #fff;
	background: #008CB9;
	padding: 3px;
	border-bottom: 2px solid #F5A204;
}
.postimg{
	margin: auto;
	margin-bottom: 25px;
}
#twitker {
	margin-top: -15px;
	margin-bottom: 0;
}

/*Modale box for 1st language selection*/
.modal img {
	margin: 0 auto;
}
.modal li {
	display: inline;
	font-size: 1.5em;
}
.modal ul {
	padding: 25px 60px 0 60px;
	display: flex;
    justify-content: space-between;
}
.modal-content {
	border-radius: 0;
	border-bottom:3px solid #F5A204;
}
.btn.disabled {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.modal li {
		font-size: 1em;
	}
}
/*News Page*/
.newsimg {
	width: 200px;
	height: 200px;
	overflow: hidden;
	margin: auto;
	padding: -150px;
}
.customnewscol {
	height: 230px;
}
.customnewscol .customcolcontent{
	min-height: 0;
}
@media screen and (max-width: 992px) {
	.customnewscol,.customhomecol,.customcolcontent {
		min-height: 0;
		height: auto;
	}
}
.customnewscol img {
	margin-top: 0;
	margin-bottom: 0;
}
.customnewscol h3 {
	margin-top: 10px;
}
.customnewscol .homebutton{
	position: absolute;
	bottom: 0;
	right: 15px;
	left: 15px;
	margin-bottom: 25px;
}

.introactions {
	font-size: 1.2em;
	margin: 65px 5px -20px;
	text-align: justify;
}


/* Test */

.label-info
{
	display:block;
}

.toptitre{
	position:fixed;
	z-index:1;
	background-color:white;
	width:1170px;
}


.custompage{
	padding-bottom:0;
}

.col-lg-4{
	margin-top: 12px;
}

.actorbutton{
	display:none;
}

.imagetemoignage {
	width: 100%;
	
}

.client {
	text-align: center;
	font-style: italic;
	color: gray;

}

.institutions {
	margin:70px 0 -20px;
}

 .temoignage {
	 display:none;
 }

.typoactors p  {
	font-size: 1.0em;
	line-height: 1.3;
}

.customhomecol{
	background: #EAF3FD;
}

.equalize1 {
		max-height: 415px;
		margin-bottom: -30px;
	}

div.client {
	text-align: center;
	padding:0 15px;
	clear:both;
}

	
/*ANIMATION INSTITUTIONS*/

.projet-description:hover p {
	top:100px;
	left:30px;
	width:85%;
    opacity:1;
 /*   background-color: rgba(57, 53, 54, 0.5);*/
 	background-color: rgba(186, 209, 229, 0.7);
    visibility:visible;
	color: white;
}

.projet-description:hover .imagetemoignage {
 				
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
		/*filter: brightness(50%);
		-webkit-filter: brightness(50%);
        -moz-filter: brightness(50%);
        -o-filter: brightness(50%);
        -ms-filter: brightness(50%);*/
 }

.projet-description p {
	position:absolute;
	left:30px;
	top:200px;
	padding: 10px;
	width:85%;
	height: 210px;
	visibility: hidden;	
	opacity: 0;
	  /*  -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;*/
    transition-property: top;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

address {
margin-top:58px;
}

.obligatoire {color: red;}

.button-pc, a.button-pc {
	background-color: #008CB9;
	border:1px solid #008CB9;
	border-radius: 28px;
	box-shadow: none;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	margin: 0;
	padding:12px 24px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	overflow-wrap: break-word;
}

a.button-pc:hover {
	background-color: white;
	color: #008cb9;
}
span.wpforms-required-label {
	color:orangered;
}

div.aLaLigne input {
	display:block;
	margin: 10px;
}

div.aLaLigne label
	display: block;
	margin: 0px;
}

 div.wpforms-field {
 	display:none;
 }

 div.quatre-themes div {
 	width: 22%;
 	height:382px;
 	background-size: 100% auto;
 	background-repeat: no-repeat;
 }

 input.wpcf7-text, div.screen-reader-response {
	color: #007DA5;
}

span.wpcf7-not-valid-tip {
	color:orangered;
	padding-left: 10px;
}

@media screen and (max-width: 999px) {
	.coach, .quatre-themes {
		flex-direction: column;
	}
	.photo-coach {
		width:100%;
		order:1;
		margin-bottom:20px;
	}
	.bio-coach-left p:first-child{
		text-align:center;
	}
	 div.quatre-themes div {
	 	width: 100%;
	 	height:460px;
	 	background-size: 100% auto;
	 	background-repeat: no-repeat;
	 }
}

@media screen and (max-width: 800px) {
	.no-mobile {
		display: none;
	}
	.wpcf7-text {
		width: 80%;
	}
	div.toptitre {
		width: 100%;
	}
	p.after-no-mobile, div.after-no-mobile {
		margin-top: 85px;
	}
}