/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700');

html{
	width:100%;
}

body{
	width:100%;
	margin:0;
	padding:0;
	font-family: 'Poppins';
}

.hidden-all{
	height:100vh;
	overflow: hidden;
}
/* Reset */

h1,h2,h3,h4,h5,h6,p,form,input,textarea,button,ul,li{
	margin:0;
	padding:0;
}

ul{
	list-style: none;
}

p{
	font-size:14px;
}

a,a:active,a:focus{
	outline: none;
}


.loader-ctn{
	width: 100%;
	height:100vh;
	background:white;
	position: fixed;
	top:0;
	left:0;
	z-index:9999;
}

.loader-ctn > div{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

.loader-ctn div img{
	display: block;
	width:220px;
	height:auto;
	margin:0 auto;
}

.loader-ctn div p{
	font-size:14px;
	text-align: center;
	padding-top:24px;
}

header{
	width:100%;
	height:auto;
	padding:20px 0px;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-o-transition: position 10s;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index:100;
	background:white;
	position: fixed;
	top:0;
	left:0;
}

.fixed {
	-webkit-box-shadow: 0px 0px 24px -4px rgba(0,0,0,0.28);
	box-shadow: 0px 0px 24px -4px rgba(0,0,0,0.28);
}
@-webkit-keyframes smoothScroll {
	0% {
		-webkit-transform: translateY(-40px);
		        transform: translateY(-40px);
	}
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}
@keyframes smoothScroll {
	0% {
		-webkit-transform: translateY(-40px);
		        transform: translateY(-40px);
	}
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}

.sousheader{
	width:95%;
	margin:0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.logo{
	width:160px;
	height:auto;
	display: block;
	margin-left:5%;
	position: relative;
	z-index:9999;
}

.header-contact{
	width:314px;
}

.header-contact p{
	display: inline-block;
}

.header-contact span{
	color:#999999;
}

.bar-header{
	padding:0 20px;
	display: inline-block;
	opacity: .4;
}

.header-contact p img{
	display: inline-block;
	width:14px;
	position: relative;
	top:1px;
	margin-right:10px;
	cursor: pointer;
}

.header-contact p img:last-child{
	margin-right:0;
}

.header-menu nav ul li{
	display: inline-block;
	margin-right:20px;
}

.header-menu nav ul li:last-child{
	padding:12px 24px;
	background:#ee8508;
	border-radius: 24px;
	margin-right:0;
}

.header-menu nav ul li:last-child a{
	color:white;
}

.header-menu nav ul li a{
	color:#1B1B1B;
	text-decoration: none;
	letter-spacing: .2px;
	font-size:16px;
	font-weight: 600
}

.show-menu{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background:white;
	z-index:9000;
}

.show-menu nav{
	margin:auto;
}

.show-menu nav ul li{
	display: block;
	text-align: center;
	margin-right:0;
	margin-bottom:12px;
	font-size:18px;
	font-weight: 600;
}

.show-menu nav ul li:nth-child(4){
	margin-bottom:30px;
}

/* Burger menu */

.burger {
  border: 0;
  background: none;
  outline: 0;
  padding: 0;
  cursor: pointer;
  border-bottom: 4px solid currentColor;
  width: 28px;
	position: absolute;
	right:2.5%;
	top:30px;
	z-index:9999;
  -o-transition: border-bottom 1s ease-in-out;
  transition: border-bottom 1s ease-in-out;
  -webkit-transition: border-bottom 1s ease-in-out;
	display:none;
}
.burger::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.burger:before {
  content: "";
  display: block;
  border-bottom: 4px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger:after {
  content: "";
  display: block;
  border-bottom: 4px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger.open {
  border-bottom: 4px solid transparent;
  -o-transition: border-bottom 0.8s ease-in-out;
  transition: border-bottom 0.8s ease-in-out;
  -webkit-transition: border-bottom 0.8s ease-in-out;
}
.burger.open:before {
  -ms-transform: rotate(-405deg) translateY(1px) translateX(-3px);
      transform: rotate(-405deg) translateY(1px) translateX(-3px);
  -webkit-transform: rotate(-405deg) translateY(1px) translateX(-3px);
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger.open:after {
  -ms-transform: rotate(405deg) translateY(-4px) translateX(-5px);
      transform: rotate(405deg) translateY(-4px) translateX(-5px);
  -webkit-transform: rotate(405deg) translateY(-4px) translateX(-5px);
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}


/* Home */
.ctn-slider-top{
	width:95%;
	position: relative;
	margin:0 auto;
	height:calc(100vh - 130px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top:100px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease;
	-webkit-transition: opacity 1s ease;
 }

 .ctn-slider-top.slick-initialized {
    visibility: visible;
    opacity: 1;
}

 .ctn-slider-top .slick-dots{
	 bottom:100px;
	 right:100px;
	 width:auto;
 }

	.ctn-slider-top .slick-dots li{
		width:auto;
		height:auto;
	}

 .ctn-slider-top .slick-dots li button{
	 width:30px;
	 height:2px;
	 background:white !important;
	 background:orange;
	 padding:3px;
 }

 .ctn-slider-top .slick-dots .slick-active button{
	 background:#ee8508 !important;
 }

 .ctn-slider-top .slick-dots li button:before{
	 display:none;
 }

 .ctn-slider-top .side{
	 width:100%;
	 height:100%;
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
 }

  .ctn-slider-top .animated {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

 .ctn-slider-top .slick-track{
	 height:100%;
 }

.ctn-slider-top .filtre{
	width:100%;
	height:100%;
	background:black;
	opacity: .05;
	position: absolute;
	top:0;
	left:0;
	z-index: 1;
}

 /* Slider */
.center-slider-top{
	margin:auto;
	margin-left:15%;
	height:450px;
	color:white;
	position: relative;
	z-index:2;
}


.border-slider-top{
	position: absolute;
	width:250px;
	height:375px;
	border:7px solid #ee8508;
	z-index:0;
}

.center-slider-top h1{
	color:white;
	margin-top:65px;
	margin-left:30px;
	font-size:18px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

.center-slider-top h2{
	margin-left:30px;
	font-size:50px;
	position: relative;
	z-index: 1;
	line-height: 54px;
	margin-top:40px;
}

.a-slider-top{
	display: block;
	cursor: pointer;
	text-decoration: none;
	color:white;
	margin-left:30px;
	margin-top:50px;
	position: relative;
	z-index: 1;
	outline: none;
}

.a-slider-top img{
	display: inline-block;
	width:20px;
	height:auto;
	position: relative;
	top:5px;
	left:5px;
}


/* About home */
.ctn-about-home{
	width:1080px;
	height:auto;
	padding:100px 0px;
	margin:0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.ctn-about-home .side{
	width:45%;
	height:auto;
	position: relative;
}

.ctn-about-home .side:first-child h2{
	font-size:18px;
	color:#ee8508;
}

.ctn-about-home .side:first-child h3{
	font-size:17px;
	line-height: 33px;
	margin-top:30px;
}

.ctn-about-home .side:first-child .p-about{
	font-size:14px;
	color:#666666;
	margin-top:40px;
	line-height: 30px;
}

.ctn-about-home .side:last-child .img-about{
	display: block;
	width:85%;
	height:auto;
	position: absolute;
	top:0;
	right:0;
}

.ctn-about-home .side:last-child .img-dot{
	display: block;
	position: absolute;
	bottom:10%;
	left:0;
	width:70%;
}

.ctn-about-home .side:last-child .img-about{
	display: block;
	width:80%;
	height:auto;
	margin-left:20%;
}

.ctn-about-home a{
	display: block;
	color:#1B1B1B;
	text-decoration: none;
	font-size:14px;
	margin-top: 40px;
	font-weight: 600;
	letter-spacing: .25px;
}

.ctn-about-home a img{
	display: inline-block;
	width:20px;
	position: relative;
	top:5px;
	left:5px;
}

.years-about{
	width:200px;
	height:auto;
	margin-top:50px;
}

.carre-years{
	width:140px;
	height:140px;
	border:5px solid #ee8508;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.ctn-about-home .side:first-child .carre-years .years-p{
	font-size:100px;
	font-weight: 600;
	margin-left:192px;
	color:#1B1B1B;
}

.ctn-about-home .side:first-child .carre-years .text-years{
	font-size:20px;
	line-height: 26px;
	position: relative;
	top:35px;
	left:10px;
}


/* Projet home */

.ctn-projet-home{
	width:95%;
	height:auto;
	margin:0 auto;
	padding:100px 0px;
}

.bar-projet-home{
	width:1080px;
	height:auto;
	margin:0 auto;
	margin-bottom:60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.bar-projet-home .side li{
	display: inline-block;
	margin-right:12px;
	cursor: pointer;
}

.bar-projet-home .side li a{
	font-size: 14px;
	text-decoration: none;
	color:#1B1B1B;
	-webkit-transition: 450ms;
	-o-transition: 450ms;
	transition: 450ms;
	cursor: pointer;
}

.bar-projet-home .side li:last-child{
	margin-left:40px;
	margin-right: 0;
}
.bar-projet-home .side li:last-child a{
	color:grey;
	font-style: italic;
	font-size:12px;
}

.bar-projet-home .side li a:hover{
	color:#ee8508;
}

.slider-projet-home{
	width:100%;
	height:auto;
}

.slider-projet-home .slick-dots{
	bottom:-50px;
}

.filtre-slide{
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	z-index:0;
	background:black;
	opacity: .2;
	-webkit-transition: 450ms;
	-o-transition: 450ms;
	transition: 450ms;
}

.item-slide{
	outline: none;
	height:475px;
	position: relative;
	cursor: pointer;
	-webkit-transition: background-color 1s;
	-o-transition: background-color 1s;
	transition: background-color 1s;
}


.item-slide:hover .filtre-slide{
	background:#ee8508;
	opacity: .8;
}

.center-slide{
	position: absolute;
	bottom:30px;
	left:30px;
	color:white;
	width:calc(100% - 60px);
	z-index: 1;
}

.center-slide h3{
	font-size: 24px;
	margin-bottom:40px;
}

.center-slide a{
	text-decoration: none;
	color:white;
	font-size:14px;
}

.center-slide a img{
	display: inline-block;
	width:18px;
	height:auto;
	position: relative;
	top:4px;
	margin-left:6px;
}
/* the slides */
.slider-projet-home .slick-slide {
    margin: 0 10px;
}
/* the parent */
.slider-projet-home .slick-list {
    margin: 0 -10px;
}


/* Container avis home */

.ctn-avis{
	width:95%;
	height:450px;
	margin:100px auto;
	margin-bottom:30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background:url('https://bois-bassin.fr/wp-content/uploads/2019/03/dotsbg.png') center center / cover;
}

.slider-avis{
	width:1080px;
	height:auto;
	margin:auto;
}

.ctn-avis .slick-track{
	padding-top:40px;
}

.item-avis{
	background:white;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom:20px;
	outline: none;
}

/* the slides */
.slider-avis .slick-slide {
    margin: 0 10px;
}
/* the parent */
.slider-avis .slick-list {
    margin: 0 -10px;
}

.item-avis img{
	display: block;
	width:80px;
	height:auto;
	position: relative;
	top:-40px;
	left:30px;
	border-radius: 50%;
}

.ctn-avis .slick-list{
	overflow-y:visible !important;
}

.center-avis-item{
	width:90%;
	margin:0 auto;
}

.author-avis{
	font-weight: 300;
	margin-bottom:10px;
	font-size:16px;
}
.author-avis span{
	font-weight: 500;
}

.content-avis{
	font-weight: 300;
	color:#999999;
	font-size:14px;
}

.haha{
	position: absolute;
	right:30px;
	top:-20px;
	color:#ee8508;
	font-size:140px;
}

/* ALl projets */
.ctn-all-projets{
	width:95%;
	height:auto;
	padding:100px 0px;
	margin:0 auto;
	margin-top:60px;
}

.ctn-all-projets h1{
	font-size:36px;
}

.top-projets{
	width:980px;
	height:auto;
	display: block;
	margin:0 auto;
}

.all-projetss{
	width:100%;
	height:auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.all-projetss .item-slide{
	width:24%;
	margin-bottom:20px;
}


.cat-allprojets{
	margin-top:120px;
	margin-bottom: 80px;
}

.cat-allprojets li{
	display: inline-block;
	margin-right:20px;
}

.cat-allprojets li:last-child{
	margin-right:0;
}

.cat-allprojets li a{
	text-decoration: none;
	color:#1B1B1B;
	font-size:14px;
	-webkit-transition: 450ms;
	-o-transition: 450ms;
	transition: 450ms;
}

.cat-allprojets li a:hover{
	color:#ee8508;
}


/* About */
.ban-propos{
	width:95%;
	height:450px;
	background:grey;
	margin:0 auto;
	margin-top:40px;
}

.top-about h1{
	margin-bottom:100px;
}

.mid-content{
	width:980px;
	height:auto;
	margin:0 auto;
	padding:100px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.mid-content .side:first-child{
	width:180px;
	height:auto;
}

.line-orange{
	width:60px;
	height:4px;
	background:#ee8508;
	display: block;
	margin-bottom:30px;
}

.mid-content .side:last-child{
	width:calc(100% - 220px);
}

.mid-content p{
	font-size:14px;
	color:#1B1B1B;
	line-height: 24px;
	margin-top:40px;
}

.mid-content2 .side:last-child{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.mid3{
	padding:100px 0px;
}

.ctn-dots{
	height:auto;
	margin:0 !important;
}

.noborder{
	/* padding:0; */
	padding-bottom:0px;
}

textarea{
	max-width: 100%;
}

.mid3{
	/* padding:0px; */
}

.side-sous{
	width:32%;
}

.side-sous img{
	display: block;
	margin:0 auto;
	margin-left:0;
	width:30%;
	height:auto;
	margin-bottom:20px;
}

.side-sous p{
	margin-top:10px;
}

/* Devis */

.ctn-devis{
	width:980px;
	padding: 60px 0px;
	margin:0 auto;
}

.top-devis{
		background:#EDEDED;
}

.top-devis h1{
	line-height: 44px !important;
	margin-bottom:30px;
	padding: 30px 40px;
	padding-bottom:10px;
}

.top-devis p{
	padding: 0px 40px;
	padding-bottom:40px;
}

.img-devis{
	width:100%;
	height:275px;
	background:url('https://bois-bassin.fr/wp-content/uploads/2019/04/plan.jpg') center center / cover;
	margin:30px 0;
	margin-top:80px;
}

.ctn-devis label{
	margin-bottom:10px !important;
	margin-top: 16px !important;
}
.ctn-devis ul.wpforms-image-choices-modern img{
	width:60px !important;
	height:auto !important;
}

.ctn-devis span{
	font-size:16px !important;
	letter-spacing: .5px !important;
}

.ctn-devis .wpforms-selected{
	color:#ee8508 !important;
}

.ctn-devis button{
	background:#ee8508 !important;
	padding:10px 30px !important;
	border:0 !important;
	color:white !important;
	border-radius: 24px !important;
}

.trait-input{
	margin:0 !important;
	margin-top:20px !important;
	background:#F3F3F3 !important;
	color:#F3F3F3 !important;
}

/* Single  */
.img-single{
	width:95%;
	margin:0 auto;
	height:580px;
	overflow: hidden;
	padding-top:10px;
	margin-top:90px;
}


@font-face {
  font-family: "lpsfr";
  src:url("fonts/lpsfr.eot");
  src:url("fonts/lpsfr.eot?#iefix") format("embedded-opentype"),
    url("fonts/lpsfr.woff") format("woff"),
    url("fonts/lpsfr.ttf") format("truetype"),
    url("fonts/lpsfr.svg#lpsfr") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "lpsfr" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="lpsfr-"]:before,
[class*=" lpsfr-"]:before {
  font-family: "lpsfr" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lpsfr-map-marker:before {
  content: "\64";
}
.lpsfr-clock-o:before {
  content: "\65";
}


.img-single img{
	display: block;
	width:100%;
}

.infos-projet{
	list-style: none;
	margin-bottom:30px;
}

.infos-projet li{
	display: inline-block;
	font-size:14px;
}

.infos-projet li:last-child{
	margin-left:14px;
}

.infos-projet li i{
	margin-right:4px;
	position: relative;
	top:2px;
}

.single-article{
	width:780px;
	margin:0 auto;
	padding:60px 0px;
}

.single-article .atitle{
	color:#1B1B1B;
	font-size: 34px;
	text-decoration: none;
	display: block;
	padding-bottom:0px;
}

.single-article .content-article p{
	color:#666666;
	font-weight: 300;
}

.img-single-ctn{
	width:1080px;
	margin:0 auto;
	height:auto;
	margin-top:30px;
}

.img-une{
	width:100%;
	height:400px;
	background-attachment: fixed;
}

.imgs-more{
	width:100%;
	height:320px;
	margin-top:20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom:60px;
}

.imgs-more .side{
	width:49%;
	height:100%;
	background:#F8F8F8;
}

.category-p{
	margin-top:30px;
	font-size:14px;
}

.category-p a{
	text-decoration: none;
	margin-left:5px;
	color:#ee8508;
}

.articlereleated{
	width:1080px;
	height:auto;
	padding:30px 0px;
	border-top:1px solid #EDEDED;
	margin:0 auto;
}

.articlereleated h3{
	font-size:24px;
}

.other-project{
	width:100%;
	height:400px;
	margin-top:30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.other-project .side{
	width:32%;
	height:100%;
	background-size: cover;
	position: relative;
	-webkit-transition: 450ms;
	-o-transition: 450ms;
	transition: 450ms;
	cursor: pointer;
}

.notfound{
	width:100%;
	height:calc(100vh - 160px);
	background:url('https://www.bois-bassin.fr/wp-content/uploads/2019/06/projet3.jpg') center center / cover;
	margin-bottom:25px;
	position: relative;
	text-align: center;
}

.center-middle-found{
	position: absolute;
	-webkit-transform:translate(-50%, -50%);
	    -ms-transform:translate(-50%, -50%);
	        transform:translate(-50%, -50%);
	top:50%;
	left:50%;
}

.center-middle-found h1{
	font-size:22px;
	color:white;
}

.center-middle-found a{
	font-size:16px;
	font-weight: 400;
	color:white;
}

.center-other{
	position: absolute;
	bottom:20px;
	color:white;
	left:20px;
}

.center-other h4{
	font-size:24px;
	color:white;
	margin-bottom:30px;
}

.center-other img{
	width:20px;
	display: inline-block;
	height:auto;
	margin-left:6px;
	position: relative;
	top:4px;
}

	.img-about2{
		display: none;
	}

.center-other a{
	color:white;
	font-size:14px;
	text-decoration: none;
}

.filtre-orange{
	position: absolute;
	top:0;
	left:0;
	z-index:0;
	background:black;
	opacity: .2;
	width:100%;
	height:100%;
	-webkit-transition: 450ms;
	-o-transition: 450ms;
	transition: 450ms;
}

.other-project .side:hover .filtre-orange{
	background:#ee8508;
	opacity: .7;
}
/* Contact */

.map{
	width:95%;
	height:400px;
	background:grey;
	margin:0 auto;
	margin-top:90px;
}

.h3last{
	margin-top:40px;
	display: block;
}

.side-sous ul{
	margin-top:20px;
}

.side-sous li{
	display: inline-block;
	margin-right:10px;
}

.side-sous li img{
	display: block;
	width:20px;
	height:auto;
}

.side3{
	width:calc(100% - 220px);
}

.side3 div.wpforms-container-full{
	width:100%;
}

.side3  label{
	margin-bottom:10px !important;
	margin-top: 10px !important;
}
.side3  ul.wpforms-image-choices-modern img{
	width:60px !important;
	height:auto !important;
}

.side3  span{
	font-size:16px !important;
	letter-spacing: .5px !important;
}

.side3  .wpforms-selected{
	color:#ee8508 !important;
}

.side3  button{
	background:#ee8508 !important;
	padding:10px 30px !important;
	border:0 !important;
	color:white !important;
	border-radius: 24px !important;
}

.img-partenaires{
	width:100%;
	height:auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top:30px;
}

.img-partenaires img{
	width:60%;
	height: auto;
	display: block;
	margin:0 auto;
}

/* Footer */

.ctn-slider-partenaires{
	width:1080px;
	padding:30px 0px;
	margin:0 auto;
	margin-bottom:30px;
}

footer{
	width:95%;
	margin:0 auto;
	padding:30px 0px;
	padding-top:0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.a-footer{
	display: block;
	margin:0 auto;
	padding-bottom:30px;
	text-decoration: none;
	color:#ee8508;
	font-size:16px;
}
.sousfooter{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width:100%;
	border-top:1px solid #EDEDED;
	padding-top:30px;
}

footer img{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width:175px;
	height:auto;
}

.bar-footer{
	width:calc(100% - 300px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	align-items: center;
}

.bar-footer a{
	color:#1B1B1B;
	text-decoration: none;
}

.bar-footer ul li{
	display: inline-block;
	margin-left:2px;
	margin-right:3px;
}

.bar-footer ul li a{
	font-size: 14px;
}

.bar-footer ul li img{
	width:14px;
}


@media screen and (max-width: 1300px){
	.header-menu nav ul li a{
		font-size:14px;
	}

	.header-contact{
		display: none;
	}
}


@media screen and (max-width: 1180px){
	.ctn-about-home,.bar-projet-home,.slider-avis,.ctn-devis,.ctn-slider-partenaires{
		width:90%;
	}

	.ctn-about-home .side:last-child .img-about{
		width:95%;
		margin-left:5%;
	}

	.ctn-about-home .side:last-child .img-dot{
		bottom: 60px;
	}

	.all-projetss .item-slide{
		width:32%;
	}
}



@media screen and (max-width: 1140px){
	.sousfooter{
		display: block;
		text-align: center;
	}

	.bar-footer{
		width:100% !important;
		display: block;
		margin-top:30px;
	}

	.plan-site{
		margin-bottom:13px;
	}

	.top-projets,.mid-content,.midd3{
		width:95% !important;
		padding:60px 0px;
	}

	.ctn-dots{
		margin:0 auto !important;
	}

	.img-single-ctn,.articlereleated{
		width:95%;
	}

	.mid4{
		width:90% !important;
	}

	.item-slide{
		height:325px;
	}
}

@media screen and (max-width: 990px){
	.header-menu{
		display: none;
	}

	.side-right-h{
		position: relative;
		display: inline-block;
		overflow: hidden;
		margin: 0;
		width:100%;
	}

	.img-about2{
		display:block;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		min-height: 100%;
		min-width: 100%;
		-webkit-transform: translate(-50%, -50%);
		    -ms-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
	}

	.burger{
		display: block;

	}
	.ctn-about-home{
		display: block;
	}

	.ctn-about-home .side{
		width:100%;
	}

	.bar-projet-home .side li{
		margin-right:6px;
		font-size:13px;
	}

	.bar-projet-home{
		display: block;
		margin-bottom:30px;
	}

	.ctn-avis .slick-track{
		padding-top:80px;
	}

	.ctn-slider-top{
		margin-top:89px;
	}

	.bar-projet-home .side:last-child{
		margin-top:30px;
	}

	.top-about h1{
		margin-bottom:0;
	}

	.top-projets{
		padding:20px 0px;
	}

	.ctn-about-home .side:last-child .img-dot{
		display: none;
	}

	.ctn-about-home .side:first-child{
		margin-bottom:50px;
	}

	.ctn-about-home .side:last-child{
		height:400px;
		background:url('https://bois-bassin.fr/wp-content/uploads/2019/03/about.jpg') center center / cover;
	}

	.other-project{
		display: block;
		height:auto;
	}

	.other-project .side{
		height:300px;
		width:100%;
		margin-bottom:20px;
	}

	.ctn-slider-partenaires h2{
		text-align: center;
	}

	.img-partenaires{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		display: block;
	}
	.img-partenaires img{
		width:50%;
		margin:0 auto;
		margin-bottom:24px;
	}

	.img-about{
		display: none !important;
	}

	.ctn-about-home .side:last-child .img-about{
		width:100%;
		margin-left:0;
	}

	.ctn-projet-home{
		padding:0px;
	}

	.single-article{
		width:90%;
	}

	.ban-propos,.img-une{
		height:300px;
		background-attachment: inherit !important;
	}

	.ctn-all-projets{
		padding:60px 0px;
	}

	.cat-allprojets{
		margin-top:40px;
		margin-bottom:20px;
	}

}


@media screen and (max-width: 766px){
	.mid-content,.mid-content2 .side:last-child{
		display: block;
		text-align: center;
	}

	.line-orange{
		width:40px;
	}

	.img-single-art{
		height:260px !important;
	}

	.single-article{
		padding:40px 0px;
	}

	.line-orange{
		margin:0 auto;
		margin-bottom:10px;
	}

	.side-sous,.mid-content .side:last-child{
		width:100%;
	}

	.mid-content .side:first-child{
		margin:0 auto;
		margin-bottom:30px;
	}

	.single-article .atitle{
		font-size:18px;
	}

	.single-article .content-article p{
		font-size:13px;
	}

	.side-sous img{
		width:80px;
		margin:0 auto;
		margin-top:20px;
		margin-bottom:10px;
	}

	.all-projetss .item-slide{
		width:48%;
	}

	.side-sous{
		margin-bottom:30px;
	}

	div.wpforms-container-full .wpforms-form .wpforms-field-label{
		text-align: left;
	}

	.mid-content2 .side{
		display: block;
		margin:0 auto;
		width:100%;
	}

	.img-single{
			height:auto;
	}

	.ctn-contact .side-sous{
		width:100% !important;
	}

	.imgs-more{
		display: block;
		width:100%;
		height:auto;
	}

	.imgs-more .side{
		width:100%;
		height:250px;
		margin-bottom:20px;
	}
}

@media screen and (max-width:600px){

	.ctn-slider-top{
		height:calc(100vh - 90px);
	}

	.border-slider-top{
		height:275px;
		top:calc(50% - 137.5px);
	}

	.center-slider-top h1{
		margin-top: 106px;
	}
	.all-projetss .item-slide{
		width:100%;
	}

	.center-slider-top h2{
		font-size:24px;
		line-height: 32px
	}

	.item-slide{
		height:250px;
	}

	.center-slide h3,.center-other h4{
		margin-bottom:10px;
		font-size:18px;
	}

	.center-other a{
		font-size:13px;
	}

	.center-other img{
		top:6px;
	}

	.center-slide a{
		font-size:12px;
	}

	.center-slide a img{
		top:5px;
	}

	.plan-site{
		margin-top:30px;
	}

	.plan-site li{
		display: block !important;
	}

	.cat-allprojets li{
		margin-right:8px;
	}

	.cat-allprojets li a{
		font-size:13px;
	}

	.top-projets{
		padding:0;
	}

	.ctn-all-projets h1{
		font-size:18px;
		line-height: 30px !important;
		padding: 30px 26px;
		margin-bottom:12px;
	}

	.ctn-all-projets p{
		padding: 0px 26px;
		padding-bottom:30px;
	}


.bar-projet-home .side li:last-child{
	margin-left:0;
}
	.bar-projet-home .side li a{
		font-size:13px;
	}
}

@media screen and (max-width: 500px){
	.border-slider-top{
		width:100%;
	}

	.center-slider-top{
		margin-left:5%;
	}

	.logo{
		margin-left:0;
	}

	.ctn-slider-top .slick-dots{
		bottom:20px;
		right:20px;
	}
}
