/*

Project   : Starter CSS
Author    : Nom Prénom
Version   : v.1.0
Date      : 13/10/2016
*/


/*--------------------------------------------------------*/
/* GLOBAL */
/*--------------------------------------------------------*/
html {
	box-sizing: border-box;
	height: 100%;
	font-size: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	position: relative;
	height: 100%;
	font-family: 'Oxygen', sans-serif;
	font-size: 1em;
	line-height: 1.7em;
	font-weight: 400;
	color: #76787c;
	background-color: #fff;
}

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

}

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

}




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

}

h1, .h1-like,
h2, .h2-like,
h3, .h3-like,
h4, .h4-like,
h5, .h5-like,
h6, .h6-like {
	font-weight: 700;
	color: #1c1f26;
	line-height: 1.5em;
	margin: 0 0 0.625em 0;
}
h1, .h1-like {
	font-size: 2em;
}
h2, .h2-like {
	font-size: 1.75em;
}
h3, .h3-like {
	font-size: 1.5em;
}
h4, .h4-like {
	font-size: 1.25em;
}
h5, .h5-like {
	font-size: 3em;
}
h6, .h6-like {
	font-size: 1em;
}
p {
	margin: 0 0 0.625em 0;
}


/* Links */
/*---------------------------------------*/
a {
	text-decoration: none;
	color: #d35f60;
}


/* 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: 1px solid #c1c1c4;
	text-align: left;
	font-weight: 700;
}
tbody td {
	padding: 0.625em;
}
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: #D35F60;
    outline: none;
    box-shadow: 0 0 5px rgba(205,75,77,.7);
}

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: top;
}
audio, video {
	vertical-align: bottom;
}
figure {
	margin: 0;
}

/* buttons */
/*---------------------------------------*/
.btn {
	position: relative;
	display: inline-block;
	color: #fff;
	background-color: #ee352e;
	border: none;
	border-radius: 20px;
	padding: 0 1em;
	line-height: 2em;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease-in-out ;
	transition: all 0.3s ease-in-out ;
}
.btn:hover {
	color: #fff;
	background-color: #ee352e;
}
.btn:active {
	top: 1px;
}
.btn--small {
	font-size: 0.75em;
}
.btn--large {
	font-size: 1.5em;
}
.btn--secondary {
	color: #666;
	background-color: #ededed;
}
.btn--secondary:hover {
	color: #ededed;
	background-color: #666;
}
.list-bio{
	list-style-type: none;
	padding:0 !important;
}
.btnbio {
	font-size: 1.2em;
	color: #000;
	border: none;
	line-height: 2em;

	-webkit-transition: all 0.3s ease-in-out ;
	transition: all 0.3s ease-in-out ;
}

.btnbio:hover {
	color: #ee352e;
	line-height: 2em;
}


ul .current, ul a:hover {
	color: #ee352e;
	border-bottom: 3px solid;
}


nav .current, nav a:hover {
	color: #fff;
/*	border-bottom: 8px solid;*/
}
/*--------------------------------------------------------*/
/* GRID CSS */
/*--------------------------------------------------------*/

.grid:before,
.grid:after {
	display: block;
	content: "";
	clear: both;
}
.grid {
	margin-left: -10px;
	margin-right: -10px;
}
/* cible toutes les classes qui commencent par col- qui ont
un parent qui porte la classe grid  */
.grid [class*="col-"] {
	float: left;
	padding-left: 10px;
	padding-right: 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%;
}


/* 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%;
	}
}
@media (min-width: 769px) {
	.table {
		display: table;
		width: 100%;
	}
	.fixed {
		table-layout: fixed;
	}
	.row {
		display: table-row;
	}
	.cell {
		display: table-cell;
		vertical-align: top;
	}
}/*--------------------------------------------------*/

/* 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%;
	}
}/*--------------------------------------------------*/


/* helpers */
/*---------------------------------------*/
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-left {
	text-align: left;
}
.v-top {
	vertical-align: top;
}
.v-middle {
	vertical-align: middle;
}
.v-bottom {
	vertical-align: bottom;
}

/*
m, p = margin, padding
a, t, b = all, top, bottom
n, s, m, l = none, small, medium, large
*/

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

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

.mbn {
	margin-bottom: 0px !important;
}
.mbs {
	margin-bottom: 20px !important;
}
.mbm {
	margin-bottom: 40px !important;
}
.mbl {
	margin-bottom: 60px !important;
}

.pan {
	padding: 0px !important;
}
.pas {
	padding: 20px !important;
}
.pam {
	padding: 40px !important;
}
.pal {
	padding: 60px !important;
}


.ptn {
	padding-top: 0px !important;
}
.ptxs {
	padding-top: 10px !important;
}

.pts {
	padding-top: 20px !important;
}
.ptm {
	padding-top: 40px !important;
}
.ptl {
	padding-top: 60px !important;
}

.pbn {
	padding-bottom: 0px !important;
}
.pbs {
	padding-bottom: 20px !important;
}
.pbm {
	padding-bottom: 40px !important;
}
.pbl {
	padding-bottom: 60px !important;
}

.center-box {
	margin-left: auto!important;
	margin-right: auto!important;
	float: none!important;
}
.right {
	float: right!important;
}
.round-img {
	border-radius: 50%;
}
.bg-light {
	background-color: #eee;
	padding: 40px 0;
}
.bg-medium {
	background-color: #d8d8d8;
	padding: 40px 0;
}

.bg-dark {
	background-color: #333;
	padding: 40px 0;
}

.bg-darkfooter {
	background-color: #333;
}
.txt-lighten {
	color: #fff;
}
/* others */
/*---------------------------------------*/
.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;
}

/*--------------------------------------------------------*/
/* CONTENT */
/*--------------------------------------------------------*/

.wrap {
	max-width: 960px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
}
/* header */
/*---------------------------------------*/
#header {
	background-color: #212121;
}
/* menu */
/*---------------------------------------*/
.menu {
	height: 0;
	opacity: 0;
	line-height: 2.5;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out ;
	transition: all 0.3s ease-in-out ;
}
.menu-collapse {
	height: auto;
	opacity: 1;
}
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.menu a {
	display: block;
	padding: 1em;
	color: #ededed;
	text-align: center;
}
.menu .current {
	color: #ffffff;
}
/* burger  */
/*---------------------------------------*/
.btn-menu {
	color: #fff;
	position: absolute;
	top: 10px;
	right: 10px;
}

/* main */
/*---------------------------------------*/

#banner {
		position: relative;

}

#banner figcaption {
	position: absolute; /* 	on positionne la légende en absolute
							par rapport au prent qui est en relative */
	bottom: 60px;
	left: 	0;
	right: 0;
	text-align: center	

}


.table-tournee tr td::after{
	content:"";display:table-cell;clear: both;
}
.btn-f-r{
	float:right;
}
.rose{
	background-color: #fdf3f6;
}

.rosefonce{
	background-color: #d01352;
}

.orange{
	background-color: #ee352e;
}

.orangecadre {
	border: 1px solid #ee352e;
}
.griscadre {
	border: 1px solid #d8d8d8;
}

.bleu{
	background-color: #15478d;
}
.bleucadre{
	border: 1px solid #60afe8;
}
.rouge{
	background-color: #ff2420;
}

.rougecadre{
	border: 1px solid #ff2420;
}

.blanccadre{
	border: 1px solid #ffffff;
}
.bleuclair{
	background-color: #cedee4;
}
.gris{
	background-color: #323232;
}
.fdnoir{
	background-color: #000000;
}

.white{
	color: #ffffff;
}
.whitecadre{
	border: 2px solid #ffffff;
}
.black{
	color: #000000;
}

.home-video{
	width:100%;

}
.figure-video{
	max-height:700px;
	overflow: hidden;
}

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


.theadth {
	padding: 0.625em 0;
	border-bottom: 1px solid #c1c1c4;
	text-align: left;
	font-weight: 700;
}
/* footer */
/*---------------------------------------*/

footer small {
	display: block;
	text-align: center;
}
#totop {
	display: block;
	text-align: right;
	background-color: #ee352e;
	color: #fff;
/*	padding: 1em 2em;*/
/*	margin-top: 20px;*/
/*	margin-bottom: 20px;*/
/*	border-radius: 5px;*/
}

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

/* tablet view */
/*--------------------------------------------------*/
@media (min-width: 769px) {
	/* menu */
	/*-----------------------------------*/
	.menu {
		opacity: 1;
		height: auto;
	}
	.menu li {
		display: inline-block;
	}
	.menu a {
		padding: 0.5em 1em;
	}
	/* burger  */
	/*---------------------------------------*/
	.btn-menu {
		display: none;
	}
	/* footer */
	/*---------------------------------------*/
	footer small {
		display: inline;
		text-align: left;
	}
	#totop {
		background-color: inherit;
		margin-right: 10px;
		color: #ee352e;
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		border-radius: 0;
	}
}
/*end tablet view----------------------------------*/

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

	/* links */
	/*---------------------------------------*/
	a {
		-webkit-transition: all 0.3s ease-in-out ;
		transition: all 0.3s ease-in-out ;
	}
	a:active, a:hover {
		color: #ee352e;
	}

	/* logo */
	/*---------------------------------------*/
	.logo a img {
		-webkit-transition: all 0.3s ease-in-out ;
		transition: all 0.3s ease-in-out ;
	}
	.logo a:hover img {
		opacity: 0.75;
		-webkit-transform: scale(0.85);
		transform: scale(0.85);
	}

	/* menu */
	/*---------------------------------------*/
	.menu a {
		-webkit-transition: all 0.3s ease-in-out ;
		transition: all 0.3s ease-in-out ;
	}
	.menu a:hover {
		background-color: #fff;
		color: #ee352e;
	}

	/* main */
	/*---------------------------------------*/



	/* footer */
	/*---------------------------------------*/
	#totop:hover {
		color: #ee352e;
	}
}
/*end desktop view---------------------------------*/




@media (min-width: 1024px) { 
	.home-video{

	margin-top: -200px;
}
}



@media screen and (max-width:580px){
	#banner figcaption h5{
		font-size:32px;
	}	
	#banner figcaption .btn{
		font-size:18px;
	}
	#banner figcaption{
		bottom:30px;
	}
}
@media screen and (max-width:400px){
	#banner figcaption h5{
		font-size:22px;
	}	
	#banner figcaption .btn{
		font-size:16px;
	}
	#banner figcaption{
		bottom:10px;
	}
}

@media screen and (min-width:769px) and (max-width:930px){
	.menu a{
		padding: 0.5em;
		font-size: 14px
	}
}
.overlay{
	position:absolute;display:block;content:" ";
	top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,0.1);
}

body .bx-wrapper .bx-viewport{
	border:none;
	box-shadow: none;
	left:5px;
	background-color: transparent;
}


.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	bottom: -50px;
}
