/**********RESET CSS*************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Oxygen', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	background-color:#e6e6e6;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1{
	display:none;
}
.nav {
display: none;
}

						/************Class*************/

.dark-grey {
	background-color : #26292e
	}
.grey {
	background-color : #e3e2e2
	}
.orange {
	background-color : #f1582c
	}
h2{
	margin : 2% auto;
	font-size: 25px;
	border-bottom: 1px solid #f1582c;
	color: #f1582c;
	width: 250px;
	text-align:center;
	padding-bottom:5px;
}
section {
	overflow: hidden;
}
	
		/************BTN Orange*************/
	
.btn-orange {
	background: none;
	border: 1px solid #f1582c;
	padding: 12px 30px;
	transition: all ease-in 0.2s;
}
.btn-orange:hover {
	background-color: #f1582c;
}
.btn-orange a {
	color: #f1582c;
	text-transform: uppercase;
	transition: all ease-in 0.2s;
}
.btn-orange:hover a {
	text-decoration: none;
	color: white;
}

		/************BTN Blanc*************/

.btn-white{
	background: none;
	border: 1px solid white;
	padding: 12px 30px;	
	transition: all ease-in 0.2s;
	
}

.btn-white a {
	text-transform: uppercase;
	transition: all ease-in 0.2s;
	color: white;
}
.btn-white:hover {
	background: white;
}
.btn-white:hover a {
	color: #26292e;
}
.btn-white a:hover {
	text-decoration: none;
}

									/************End Class*************/
									
									
#spinner {
	width: 100%;
	position: fixed;
	height: 100%;
	z-index: 10;
}
#scrollTop {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	text-align: center;
	z-index:9;
	cursor: pointer;
}
#scrollTop span {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.59);
  line-height: 50px;
  z-index:50;
}
									
									/************Header*************/

header {
	overflow: hidden;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index:+60;
}
.logo {
}
.logo img {
	position: relative;
}
.btn-menu {
}
.btn-menu button {

}
nav {
}
nav ul {
}
nav ul li {
	display: inline-block;
	text-align:center;
	padding: 0 25px;
	cursor:pointer;
	position: relative;
}
nav ul li span {
	color: white;
	padding-right: 15px;
}
nav ul li a {
	color: white;
	text-decoration:none;
	text-transform: uppercase;
	font-weight: 400;
}
nav ul li a::before{
	content: '[';
	opacity:0;
	display: inline-block;
	transform: translateX(30px);
	transition: transform 0.3s, opacity 0.2s;
	font-size: 30px;
	font-weight:300;
	color: #f1582c;
	position: absolute;
	left: 10px;
	top: -2px;
}
nav ul li a::after{
	content: ']';
	opacity:0;
	display: inline-block;
	transform: translateX(-30px);
	transition: transform 0.3s, opacity 0.2s;
	font-size: 30px;
	font-weight:300;
	color: #f1582c;
	position: absolute;
	right: 10px;
	top: -2px;
	
}
nav ul li a:hover{
	text-decoration:none;
	color:white;
}
nav ul li:hover a::before,
nav ul li a:focus::before{
	opacity:1;
	transform: translateX(0px);
}
nav ul li:hover a::after,
nav ul li a:focus::after {
	opacity:1;
	transform: translateX(0px);
}
nav ul li a:focus {
	color: white;
	text-decoration: none;
}
header span {
	display: none;
}

@media screen and (max-width: 768px) {
	
	.btn-menu .btn-white {
		display: none;
	}
	.nav  {
		display: none;
		position: fixed;
		top:0;
		bottom: 0;
		right: 0;
		left: 0;
		background-color: #26292e;	
		z-index: 100;		
	}
	.nav ul {
	
	}
	.nav ul li {
		text-align: center;
	}
	.nav ul li a {
		width: 100%;
		line-height:80px;
		color: white;
		font-size:30px;
		font-weight: 300;
		text-transform: uppercase;
		transition: all ease 0.5s;
	}
	.nav ul li a:hover {
		color: #f1582c;
		text-decoration: none;
	}
	.nav:target {
		display: block;
	}
	.fermer {
		display: block;
		position: relative;
		width: 100%;
		text-align: right;
		padding: 20px;
	}
	.fermer span::before {
		color: white;
		line-height: 70px;
		padding: 20px 0;
		font-size: 70px;
	
	}
	.fermer:hover {
		text-decoration: none;
	}
	
}

			/************Header > 1200px *************/
			

@media(min-width: 1200px) {
	.logo {
	}
	.logo img {
		width: 140px;
		top:6px;
		left: 50%;
		margin-left: -70px;
	}
	.btn-menu {
		margin: 17px 15px 10px 0px;
		float: right;
	}
	.btn-menu button {
		margin: 0 5px;
	}
	nav {
		line-height:50px;
		margin: 15px;
		position: relative;
		float: right;
	}
}

			/************Header >768 < 1200px *************/

@media (min-width: 768px) and (max-width: 1199px) {
	.logo {
	}
	.logo img {
		width: 150px;
		left:50%;
		margin-left: -75px;
		top: 26.5px;
	}
	.btn-menu {
		margin: 17px 15px 10px 0px;
		float: right;
	}
	.btn-menu button {
		margin: 0 5px;
	}
	nav {
		line-height:25px;
		margin: 15px;
		position: relative;
		float: right;
	}
}

			/************Header mobile *************/

@media (max-width: 768px){
	.logo {
	}
	.logo img {
		width: 120px;
		left:50%;
		margin-left: -75px;
		top: 5px;
		padding: 5px;
	}
	.btn-menu {
		margin: 17px 15px 10px 0px;
		float: right;
	}
	.btn-menu button {
		margin: 0 5px;
	}
	nav {
		line-height:25px;
		margin: 15px;
		position: relative;
		float: right;
	}
	header span {
		color: white;
		font-size: 26px;
		margin: 20px;
	}
}


									/************End Header*************/
									
									
									/************Slider*************/

#slider  {
	width: 100%;
	height: 900px;
	background: url('../img/slider/3.jpg');
	background-size: cover;
}

#slider::after {
	display: block;
	content:'';
	width:100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.61);	
}
#slider h4 {
	font-family: roboto;
    color: white;
    font-size: 25px;
    font-weight: 300;
}

.content-slider{
	top: 150px;
	left:150px;
	background:none;
	position: absolute;
}

.content-slider h1{
	font-size: 35px;
	font-weight:bold;
	color:white;
	text-transform: uppercase;
}

.content-slider h2{
	font-size: 15px;
	font-weight:bold;
	color:white;
}


									/************End Slider*************/
									
									
									/************Citation*************/
									
#citation {
	width: 100%;
	height: 250px;
}

.citation-texte{
	color:white;
	text-align:center;
	font-size: 22px;
	padding: 5% 0 0 0;
	font-family: 'Oxygen', sans-serif;
}
	
.auteur{
	padding-top:1%;
	padding-left: 70%;
	color:white;
	font-style:italic;
}

									/*********Services***************/
									
#service {
	width: 100%;
	position: relative;
}


.block_service {
	position: relative;
	margin-bottom: 3%;
	cursor: pointer;
}
.service_header {
	position: relative;
}
.service_header::after {
	content: '';
	position: absolute;
	width: 90%;
	height: 100%;
	left: 5%;
	top: 0;
	background-color: rgba(0,0,0,0.61);
	transition: all ease 1s;
}
.block_service:hover .service_header::after {
	background-color: rgba(0,0,0,0.20);
}
.service_header  img {
	width: 90%;
	display: block;
	margin: 0 auto;
}	
	
.service_header  span {
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;  line-height: 68px;
    width: 80px;
	text-align: center;
	border: 6px solid #E6E6E6;
	border-radius: 46px;
	background-color: #26292e;
	color: #E6E6E6;
	font-size: 35px;
	z-index:3;
}	
.block_service:hover .service_header  span {
	background-color:#f1582c;
	color:white;
}	
.service_header  span::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	background-color: #26292e;
	border-radius: 34px;
	transition: all ease 1s;
	z-index: -2;
}	

.block_service:hover .service_header span::after{
	transform: scale(1.50);
	opacity: 0;
}	
.service_content {
	width: 90%;
	margin: 6px auto 0 auto;
	background-color: white;
	padding: 40px 10px 10px 10px;
	min-height: 250px;
}	
.service_content h3 {
	padding: 10px 0;
	text-transform: uppercase;
	color: #26292e;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}	
.service_content p {
	color: #8e8d8d;
	font-size:14px;
	font-style: italic;
	text-align: justify;
	line-height: 17px;
}

				/************************** Button ******************************/

.service_content button {
	background: transparent;
	border: 1px solid black;
	display: block;
	line-height: 33px;
	border-radius: 20px;
	margin: 0;
	padding: 0 12px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	transition: all ease 0.7s;
}
.service_content button span {
	font-size: 15px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 33px;
}
.service_content button span:first-child {
	display:none;
	transform: translateX(100px);
	opacity: 0;
	
}
.service_content button span:last-child {
}					
.block_service:hover .service_content button {
	border-color: #f1582c;
	border-radius: 4px;
	color: #f1582c;
	padding: 0 25px;
}
.block_service:hover .service_content button span {
	

}
.block_service:hover .service_content button span:first-child{
	display: inline-block;
	transform: translateX(0);
	opacity:1;
	cursor:pointer;
}
.block_service:hover .service_content button span:last-child{
}
.block_service:hover {
}

/*************************************************\
				Zone image circle
\*************************************************/

.circle {
	width: 100%;
	
	background-image : url("../img/clavierfond.jpg");
	background-size: cover;
}
	.circle-container {
	}
		.circle-content {
			padding:	30px 0px;
		}
			.circle-content span {
				display: block;
				width:	100px;
				height:	100px;
				margin:		0 auto;
				border: 2px solid #f1582c;
				text-align: center;
				transition: all ease 0.5s;
			}
			.circle-content [class^="flaticon-"]:before, 
			.circle-content [class*=" flaticon-"]:before {
				margin: 0;
				font-size: 40px;
				color: #f1582c;
				line-height: 100px;
				transition: all ease 0.5s;
			} 
			.circle-content p {
				padding-top: 20px;
				
				color: white;
				text-align: center;
				font-size: 13px;
			}
			.circle-content p strong {
				font-weight: bold;
			}
			
			
		.circle-content:hover span {
			background-color: #f1582c;
		}
			.circle-content:hover span:before {
				color: white;
			}



/******************** A PROPOS *********************/

#a_propos {
	position: relative;
	width: 100%;
}
#a_propos img {
	width: 250px;
	height: 250px;
	margin: 10px auto 0 auto;
	display: block;
	border-radius: 125px;
}
#a_propos  h4{
	font-size: 23px;
	text-align: center;
	margin: 14px 0px 25px 0px;
}
#a_propos h4 span {
	padding:0 10px;
}
#a_propos p {
	color: #717171;
	padding: 0 40px;
	text-align: justify;
	font-size: 13px;
	line-height: 15px;
	margin: 8px 0;
}
.box {
	width: 70%;
	margin: 30px auto 0 auto;
	overflow: hidden;
	padding: 15px 0;
}
.box div:first-child {
	width: 25%;
	float: left;
	text-align: center;
}
.box div:last-child {
	width: 75%;
	float: left;
}
.box span {
	padding-top:10px;
	color:white;
	font-size: 35px;
	line-height:80px;
}


#a_propos .box p {
	padding: 0 20px 5px 0;
	margin: 0;
	color: white;
}
#a_propos p.box_title {
	color: white;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 6px 0;
}

/************************* Maps ***************************/

 #map {
        height:400px;
        width:100%;
    }
    .gm-style-iw * {
        display: block;
        width: 100%;
    }
    .gm-style-iw h4, .gm-style-iw p {
        margin: 0;
        padding: 0;
    }
    .gm-style-iw a {
        color: #4272db;
    }

/************************* Contact ***************************/

#contact  {
	margin-top: 50px;
}
#contact  div {
	padding: 20px;
}
#contact  div h4 {
	color: #f1582c;
	text-transform: uppercase;
	font-size: 19px;
	text-align: center;
	padding-bottom: 30px;
}
#contact  div:first-child  p{
	color: #717171;
	line-height:30px;
	margin:15px 0;
}
#contact  div:first-child  p span{
	color: #f1582c;
}
#contact  div:first-child  p span[class^="icon-"] {
	color: #26292e;
	font-size: 25px;
	padding: 0 15px;
	line-height: 30px;
}
#socials {
	position: relative;
	text-align: center;
	margin-top:41px;
}
#socials a {
	display: inline-block;
	margin: 0 10px;
}
#socials a span {
	background-color:#26292e;
	color:white;
	padding: 10px 10px;
	border-radius: 25px;
	font-size:17px;
	transition: all ease 0.7s;
}
#socials a:hover {
	text-decoration: none;
}
#socials a:hover span {
	background-color:#f1582c;
}
#contact .formulaire {
	width: 70%;
	margin: 0 auto;
	padding:0!important;
}
.field {
	position: relative;
	padding:0!important;
}
.field:first-child {
	padding-top: 0px;
}
.field label {
	display: block;
	position: absolute;
	top:27px;
	left: 20px;
	font-size: 14px;
	transition: all ease 0.3s;
}
.is-focused label,
.has-label label {
	top: -5px;
	left: 0px;
	
}
.field input,
.field textarea {
	outline: none;
	border:none;
	background: #F7F7F7;
	font-size: 12px;
	margin: 15px auto;
	padding: 10px 15px;
	font-size: 14px;
	width: 100%;
	resize:none;
}
.field::after{
	content:'';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 14px;	
}
.field::after {
	background-color: #f1582c;
	transform: scaleX(0);
	transition: transform 0.3s;
}
.is-focused::after,
.has-label::after{
	transform: scaleX(1);
}
.btn-form {
	text-align: center;
}
.btn-form button {
	color: white;
	background-color : #26292e;
	border: none;
	padding: 9px 35px;
	border-radius:5px;
}
.btn-form button:hover {
	background-color : #f1582c;
	transition: all ease 0.3s;
}



/***************************** FOOTER *****************************/

#footer{
}

#footer ul{
	padding:15px 40px;
}
#footer ul li{
	float: left;
}
#footer ul li h5{
	color:white;
	padding-bottom:2px;
	font-weight:bold;
	border-bottom: 1px solid white;
}


#footer ul li a{
	color:white;
	text-decoration:none;
	font-size:13px;
	line-height:20px;	
}



.logo_footer {
	width: 100px;
	margin:20px 0 10px 0;
	left: 20%;
	position: relative;
}
.footer-links{
	color: white;
	position: relative;
	left: 20%;
	margin: 0 0 10px 0;
}
.footer-links a {
	color: white;
	font-size: 17px;
}
.footer-links a:hover {
	color : #f1582c;
	text-decoration: none;
	transition: all ease-in 0.5s;
}
.copyright {
	font-size: 12px;
	color:rgb(98, 96, 96);
	position: relative; 
	left: 20%;
	letter-spacing: 1px;
	margin-bottom: 40px;
}	

.footer-address {
	color: white;
	font-size: 12px;
	line-height: 16px;
	margin: 15px;
	min-height: 32px;
}
.footer-address span {
	background-color: rgba(52, 54, 56, 1);
	color: #f1582c;
	padding: 10px 10px;
	border-radius: 25px;
	font-size: 17px;
	transition: all ease 0.7s;
	display: inline-block;
	float: left;
	margin-right: 20px;
}

.footer-address a {
	color: white;
	position:relative;
	top:10px;
}

.footer-address a:hover {
	color: #f1582c;
	text-decoration: none;
	transition: all ease-in 0.5s;
}

/**** Animation du changement de couleur du background menu *****/

header.dark-grey {
	background-color : #26292e;
	transition: all 0.5s ease-out;
}


/******************  Popup message *******************/

.cd-popup {
	display:none;
  	opacity: 0;
  	visibility: hidden;
  	transition: opacity 0.3s 0s, visibility 0s 0.3s;
  	position: fixed;
  	width: 100%;
  	height: 100%;
  	z-index:999;
  	background-color: rgba(0,0,0, 0.56);
}
 
.cd-popup.is-visible {
	display:block;
  	opacity: 1;
  	visibility: visible;
  	transition: opacity 0.3s 0s, visibility 0s 0s;
}
 
.cd-popup-container {
  	transform: translateY(-40px);
  	transition-property: transform;
  	transition-duration: 0.3s;
  	width: 400px;
  	margin: 8em auto;
  	height: 120px;
  	background-color: white;
  	border-radius: 0.25em;
  	text-align: center;
  	padding: 15px;

}
 
.is-visible .cd-popup-container {
  	transform: translateY(0);
}
.cd-popup-close {
	position: absolute;
	bottom: 0px;
	left: 0px;
	line-height: 40px;
	width: 100%;
	border-radius; 0 0 0.25em 0.25em;
	background-color: #f1582c;
	color: white;
	text-decoration: none;
	border-radius: 0 0 0.25em 0.25em;
}

