﻿@charset "utf-8";

/*
Projet  : Starter CSS
Author  : Pierre BAUER & Stéphane Deborne IESA
Version : 1.0
Date    : 21/10/2015
*/

/*---------------------------------------------*/
/* GLOBAL*/
/*---------------------------------------------*/
html {
	box-sizing:border-box;
	height: 100%;
	font-size: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	position: relative;
	height: 100%;
	font-family: "HelveticaNeue-Light",
				 "Helvetica Neue Light", "Helvetica Neue",
				 Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.625em; /*26px*/
	color: #030303;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

/* links*/
/*---------------------------*/
a {
	text-decoration: none;
	color: #ff760c;
	-webkit-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
a:active, a:hover {
	color: #934243;
}

/* Typographie*/
/*---------------------------*/
h1, .h1-like,
h2, .h2-like,
h3, .h3-like,
h4, .h4-like,
h5, .h5-like,
h6, .h6-like {
	font-weight: 300;
	color: ##030303;
	margin: 0 0 0.71875em 0;
	line-height: 1.25em;
}
h1, .h1-like {
	font-size: 2em;
	text-transform: uppercase;
}
h2, .h2-like {
	font-size: 1.75em;
}
h2, .h2-like-interview, {
	font-style: italic;
	font-style: bold;
}
h3, .h3-like {
	font-size: 1.5em;

}
h4, .h4-like {
	font-size: 1.25em;
}
h5, .h5-like {
	font-size: 1.125em;
	text-transform: bold;
}	
h6, .h6-like {
	font-size: 1em;
}
p {
	margin: 0 0 0.71875em 0;
}
.blanctext{ 
	color: #fff;

}
/* table */
/*---------------------------*/
table {
	width: 100%;
	margin: 0.71875em 0;
	table-layout: fixed;

}
tr,
td,
th {
	vertical-align: middle;
}
thead th {
	padding: 0.71875em 0;
	border-bottom: 2px solid #c1c1c4;
	text-align: left;
	font-weight: 700;
}

tbody td {
	padding: 0.71875em;
	border-bottom: 1px solid #c1c1c4;
}
tbody tr:nth-child(even) {
	background: #E7E7E7;
}
/* Forms */
/* -----------------------------------------------------*/
form ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.cellules {
	border-top: solid 1px;
	color: #fff;
}
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;
}

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="text_field"] {
    display: inline-block;
    width: 70%;
}
label[for="text_field"] {
    display: inline-block;
    width: 15%;
}

/* Grouping content*/
/*---------------------------*/
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
video, audio {
	max-width: 600px;
	width: 100%;
}

/* Buttons*/
/*---------------------------*/
.btn {
	display: inline-block;
	position: relative;
	color: #fff;
	background-color: #C50f24;
	border: none;
	border-radius: 3px;
	padding: 0 1.5em;
	line-height: 2.5em;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn:hover {
	color: #fff;
	background-color: #ff760c;
}
.btn:active {
	top: 1px;
}

.btn--small {
	font-size: 0.75em;
}
.btn--large {
	font-size: 1.5em;
}
.btn--secondary {
	border:2px solid #C50f24;
	background-color: #C50f24;
}
.btn--secondary:hover {
	color: #ededed;
	border: 2px solid #fff;
	background-color: transparent;
}


/*---------------------------------------------*/
/* CONTENT*/
/*---------------------------------------------*/
.wrap {
	padding-left: 10px;
	padding-right: 10px;
}
/*---------------------------------------------*/
/* grid*/
/*---------------------------------------------*/

/* mobil first */
@media (min-width: 481px) {
	.wrap {
		max-width: 1200px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.grid:after {
		display: table;
		content: "";
		clear: both;
	}
	.grid {
		margin-right: -10px;
		margin-left: -10px;
	}
	.grid [class*="col-"] {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
	}
	.col-1 {
		width: 8.333%;
	}
	.col-2 {
		width: 16.666%;
	}
	.col-3 {
		width: 25%;
	}
	.col-4 {
		width: 33.333%;
	}
	.col-5 {
		width: 41.667%;
	}
	.col-6 {
		width: 50%;
	}
	.col-7 {
		width: 58.333%;
	}
	.col-8 {
		width: 66.667%;
	}
	.col-9 {
		width: 75%;
	}
	.col-10 {
		width: 83.333%;
	}
	.col-11 {
		width: 91.667%;
	}
	.col-12 {
		width: 100%;
	}
	/* table*/
	/*---------------------------*/
	.table {
		display: table;
		width: 100%;
	}
	.fixed {
		table-layout: fixed;
	}
	.row {
		display: table-row;
	}
	.cell {
		display: table-cell;
		vertical-align: top;
	}
}
/* tablet view*/
@media (min-width: 481px) and (max-width: 768px) {
	.wrap {
		max-width: 680px;
	}
	.grid-t {/*to use in HTML only if no "grid" placed in previous choregraphie*/
		margin-left: -10px;
		margin-right: -10px;
	}
	.grid-t:after {
		display: table;
		content: "";
		clear: both;
	}
	
	.grid-t [class*="col-t-"] {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
	}
	.col-t-1 {
		width: 8.333%;
	}
	.col-t-2 {
		width: 16.666%;
	}
	.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%;
	}

}
/* mobile view*/
@media (max-width: 480px) {
	.grid-m {/*to use in HTML if you want to use grid and floats in mobile view*/
		margin-left: -10px;
		margin-right: -10px;
	}
	.grid-m:after {
		display: table;
		content: "";
		clear: both;
	}
	
	.grid-m [class*="col-m-"] {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
	}
	.col-m-1 {
		width: 8.333%;
	}
	.col-m-2 {
		width: 16.666%;
	}
	.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%;
	}


}
/* helper*/
/*---------------------------*/

.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-left {
	text-align: left;
}


.v-middle {
	vertical-align: middle;
}
.v-top {
	vertical-align: top;
}
.v-bottom {
	vertical-align: bottom;
}


/*
m = margin
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;
}



.mbn {
	margin-bottom: 0px !important;
}
.mbs {
	margin-bottom: 20px !important;
}
.mbm {
	margin-bottom: 40px !important;
}
.mbl {
	margin-bottom: 60px !important;
}


.mtn {
	margin-top: 0px !important;
}
.mts {
	margin-top: 20px !important;
}
.mtm {
	margin-top: 40px !important;
}
.mtl {
	margin-top: 60px !important;
}

.ptm {
	padding-top: 40px !important;
}
.pbm {
	padding-bottom: 40px !important;
}
.ptl {
	padding-top: 30px !important;
}
.pbl {
	padding-bottom: 30px !important;
}
/* header*/
/*---------------------------*/

#header {
	background: #ff760c;
}

.logo {
	margin: 0;
	display: inline-block;
}
.menu {
	height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.menu ul {
	margin: 0;
	padding: 0;
	text-align: center;
}
.menu li {
	display: block;
}
.menu a {
	display: block;
	padding: 1em 0em;
	color: #212121;
	border-top: solid 0px;
	border-bottom: solid 1px;
	color: #fff;
}
.menu .select {
	color: #212121;
}
.menu-collapse {
	display: block;
	height: auto;
	opacity: 1;
	text-align: center;
}
/* burger*/
/*---------------------------*/

.btn-menu {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: url('../img/menu.png') no-repeat;
	cursor: pointer;
}


/* Main*/
/*---------------------------*/
.bg-darken {
	background-color: #ff760c ;
}
.bg-lighten {
	background-color: #f6f6f8;
}
.txt-lighten{
	color: #000000;
	padding-top: 20px;
}
.overlay {
	background: rgba(0, 0, 0, 0);
	/*height: 100vh*/
}
/* banner*/
/*---------------------------*/
.banner {
	background-image: url('../img/img-01.jpg');
	background-color: #fff;
    background-repeat: no-repeat;
    height: auto;
    /*height: 100vh;*/
}
.banner img {
	padding: 4% 0;
}
/* banner app*/
/*---------------------------*/
.banner-app {
	background-image: url('../img/img-02.jpg');
	background-color: #e9e8e6;
    background-repeat: no-repeat;
    height: auto;
}
.banner-app img {
	padding: 0 30px 20px;

}
/* team*/
/*---------------------------*/

.tome .grid figure {
    margin: 0;
    padding: 0 20px 30px;
}

.tome .title {
	text-transform: uppercase;
	font-style: italic;
	margin-bottom: 0;
	padding-top: 10px;
	font-size: 1.25em;
}

.team .bottom-detail {
	font-style: italic;
	font-size: 1.15em;
}
#contact div {
	margin: 0 auto;
}
/* footer*/
/*---------------------------*/
footer {
	padding: 20px 0 1px;
	background: #C50f24;
}
footer > div {
	padding-top: 20px;
}
#totop {
	text-align: center;
	display: block;
	color: #fff;
	background: #ff3366;
	border-radius: 5px;
	padding: 1em 2em;
	margin-top: 20px;
	margin-bottom: 20px;
}
footer small {
	text-align: center;
	display: block;
}




/*---------------------------------------------*/
/* RWD*/
/*---------------------------------------------*/
@media (min-width: 481px) {
/* header*/
/*---------------------------*/	
	

	.menu {
		height: auto;
		opacity: 1;
	}
	.menu ul {
		text-align: inherit;
	}
	.menu li {
		display: inline-block;
	}
	.menu a {
		padding: 0.5em 1em;
		border-bottom: solid 0px;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.menu a:hover {
		color: #fff;
	}
	.btn-menu {
		display: none;
	}
	.grid [class*="col-"].right {
		float: right;
	}
	/* tome*/
	/*---------------------------*/

	.tome .grid figure {
	    padding: 0 10px 30px;
	}

	/* footer*/
	/*---------------------------*/

	#totop {
		text-align: right;
		display: block;
		color: #030303;
		background: none;
		border-radius: 0px;
		padding: 0;
		margin-top: 0px;
		margin-bottom: 20px;
	}
	footer small {
		text-align: left;
	}
}
@media (min-width: 481px) and (max-width: 650px) {
	.logo {
		display: inline-block;
	    width: 100%;
	    text-align: center;
	    margin: 10px 0;
	}
	.menu {
		display: block;
		text-align: center;
	}
	.menu a {
		padding: 0.5em 0.8em;
		border-bottom: solid 0px;
		color: #fff;
	}

}

/* small screen */
@media (min-width: 769px) {
	.logo {
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.logo:hover {
		opacity: 0.75;
		transform: scale(0.85);
	}
	.banner, .banner-app {
		background-attachment: fixed;
		background-size: cover;
	}
	.banner img {
		padding: 4% 0;
	}
	.menu a {
		padding: 0.5em 0.8em;
		border-bottom: solid 0px;
	}
	/* team*/
	/*---------------------------*/

	.tome .title {
		text-transform: uppercase;
		font-style: italic;
		margin-bottom: 0;
		padding-top: 10px;
		padding-left: 0;
		opacity: 0;
	}
	.tome .bottom-detail {
		font-style: italic;
		font-size: 1.5em;
		opacity: 0;
		padding-left: 0px;
	}
	.tome .grid figure {
	    padding: 0 10px 0px;
	}
	.tome figure {
		position: relative;
	    cursor: pointer;
	    overflow: hidden;
	    margin: 0;
	}
	.tome figure img {
		display: block;
		-webkit-transition: .3s all ease;
	      transition: .3s all ease;
	}
	
	.tome figure:hover img {
	      -webkit-transform: scale(1.5);
	      -ms-transform: scale(1.5);
	      transform: scale(1.5);
	}
	.tome figcaption {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,.75);
		opacity: 0;
		-webkit-transition: .3s all ease;
	      transition: .3s all ease;
	}
	.tome figcaption:hover {
		opacity: 1;
	}
	
	.tome figcaption:hover .title {
		opacity: 1;	
		padding-left: 20px;
		-webkit-transition: .3s all ease .3s;
	      transition: .3s all ease .3s;

	}

	.tome figcaption:hover .bottom-detail {
		opacity: 1;
		padding-left: 20px;
		-webkit-transition: .3s all ease .5s;
	      transition: .3s all ease .5s;

	}
}

/* tablet orientation landscape */

@media (max-width: 1024px) and (orientation:landscape) {
	/* banner*/
	/*---------------------------*/
	.banner, .banner-app {
		background-attachment: initial;
		background-size: initial;
	    height: auto;
	    
	}
		.menu a {
		padding: 0.5em 0.8em;
		border-bottom: solid 0px;
	}
	.tome figure:hover img {
	      -webkit-transform: scale(1);
	      -ms-transform: scale(1);
	      transform: scale(1);
	}
	.tome figcaption {
		position: inherit;
		background: rgba(0,0,0,0);
		opacity: 1;
		
	}
	.tome .title, .team .bottom-detail {
		opacity: 1;

	}
}


