/* Atelier 85 CSS Tools 2022 (framework) - V1.1
-----------------------------------------------------------------------

By Nicolas EVARISTE (http://www.atelier85.fr)
© 2022 Atelier 85 - All rights reserved - Toute reproduction interdite

---------------------------------------------------------------------*/

/* Reset
---------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
}
h1, h2, h3, h4, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: normal;
	padding: 15px 0;
}
form, figure, .wp-block-image{
	margin: 0;
	padding: 0;
}
iframe {
  border: 0;
  max-width: 100%;
}

/* General
--------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	background: #fff;
	margin: 0;
	/*opacity: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;*/
}
/*body.loaded {
	opacity: 1;
}*/
strong {
	font-weight: 600;
}
a {
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.wp-block-image{
	margin-top: 10px;
	margin-bottom: 10px;
}

/* Float
--------------------------------------------------*/
.left { float: left; }
.right { float: right; }
.clear { clear: both; }

/* Textes
--------------------------------------------------*/
.upper { text-transform: uppercase; }
.center { text-align: center; margin-left: auto !important; margin-right: auto !important;}
.justify { text-align: justify; }

/* Padding / Margin
--------------------------------------------------*/
.pr80 { padding-right: 80px; }
.mt-10 { margin-top: -10px; }

/* Couleurs perso
--------------------------------------------------*/
.has-jaune-color { color: #faba00 !important; }
.has-vert-color { color: #97bf0d !important; }
.has-bleu-color { color: #2382ba !important; }
.has-rouge-color { color: #d10000 !important; }
.has-blanc-color { color: #ffffff !important; }
.has-grisclair-color { color: #f5f4f5 !important; }
.has-gris-color { color: #2c2c2c !important; }
.has-noir-color { color: #000000 !important; }

.has-jaune-background-color { background-color: #faba00 !important; }
.has-vert-background-color { background-color: #97bf0d !important; }
.has-bleu-background-color { background-color: #2382ba !important; }
.has-rouge-background-color { background-color: #d10000 !important; }
.has-blanc-background-color { background-color: #ffffff !important; }
.has-grisclair-background-color { background-color: #f5f4f5 !important; }
.has-gris-background-color { background-color: #2c2c2c !important; }
.has-noir-background-color { background-color: #000000 !important; }

.has-gris-background-color.has-jaune-color a:hover{
	color: #fff;
}

/* Loader
---------------------------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}
.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: #ffffff;
  animation: spinner .9s linear infinite;
}
@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);}
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}

/* Top
--------------------------------------------------*/
div#top{
	width: 100%;
	background: #2c2c2c;
	color: #fff;
	font-size: 17px;
	line-height: 1;
	padding-top: 15px;
	padding-bottom: 15px;
}
div#menu-top{
	width: 59%;
	display: inline-block;
	vertical-align: baseline;
	text-align: left;
}
div#menu-top ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
div#menu-top ul li{
	display: inline-block;
	/*float: left;*/
}
div#menu-top ul li a{
	display: block;
	position: relative;
	color: #fff;
	text-decoration: none;
	padding: 5px 20px;
}

div#menu-top ul li a::after{
    content: '';
    display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    width: 0;
	margin-left: auto;
	margin-right: auto;
    height: 3px;
	margin-top: 0px;
    background: #fff;
    transition: width .3s;
}
div#menu-top ul li a:hover::after,
div#menu-top ul li.current_page_item a::after,
div#menu-top ul li.current-menu-item a::after,
div#menu-top ul li.current-post-ancestor a::after,
div#menu-top ul li.current-category-ancestor a::after,
div#menu-top ul li.current-menu-parent a::after,
div#menu-top ul li.current-post-parent a::after{
	width: calc(100% - 40px);
}
div#tel-top{
	width: 39%;
	display: inline-block;
	vertical-align: baseline;
	text-align: right;
}
div#tel-top strong{
	font-size: 26px;
	font-weight: 800;
	padding-left: 5px;
}

/* Header
--------------------------------------------------*/
div#header{
	width: 100%;
	height: auto;
	padding: 60px;
	text-align: center;
	background: #faba00;
	background: rgb(252,150,0);
	background: linear-gradient(90deg, rgba(252,150,0,1) 0%, rgba(250,186,0,1) 100%);
}
div#logo{

}
div#logo img{
	width: 400px;
	height: auto;
}
div#devis{
	position: absolute;
	top: 170px;
	right: 0;
	z-index: 9999;
}
div#devis a{
	display: block;
	padding: 15px 20px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
 	border-bottom-left-radius: 5px;
	background: #2c2c2c;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
}
div#devis a strong{
	display: block;
	font-size: 26px;
	font-weight: 800;
	text-transform: uppercase;
}
div#devis a:hover{
	padding-right: 40px;
}

/* Menu
--------------------------------------------------*/
div#menu-icon,
div#menu-top-resp{
	display: none;
}
div#menu{
	width: 100%;
	height: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}
div#menu ul{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
div#menu ul li{
	position: relative;
	display: inline-block;
	font-size: 20px;
	color: #2c2c2c;
	margin: 0 5px;
}
div#menu ul li a{
	display: block;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	color: #2c2c2c;
	text-decoration: none;
	padding: 14px 20px 10px 20px;
}
div#menu ul li a::after{
    content: '';
    display: block;
    width: 0;
    height: 4px;
	bottom: 0;
	left: 0;
	right: 0;
    width: 0;
	margin-left: auto;
	margin-right: auto;
    background: #faba00;
    transition: width .3s;
}
div#menu ul li:hover a::after,
div#menu ul li.current-menu-item a::after{
    width: 100%;
}
div#menu ul li ul.sub-menu{
	position: absolute;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	background: #2c2c2c;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 9999;
    top: 150%;
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;	
}
div#menu ul li.menu-item-has-children:hover ul.sub-menu{
	opacity: 1;
    visibility: visible;
    top: 42px;
}
div#menu ul li#menu-item-48{
	width: 270px;
	background: rgb(252,150,0);
	background: linear-gradient(356deg, rgba(252,150,0,1) 0%, rgba(250,186,0,1) 100%);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
div#menu ul li#menu-item-48 a{
	font-weight: 600;
	color: #fff;
}
div#menu ul li#menu-item-48:hover a::after,
div#menu ul li#menu-item-48.current-menu-item a::after{
    width: 0;
}
div#menu ul li ul.sub-menu li{
	display: block;
	margin: 0;
}
div#menu ul li ul.sub-menu li a,
div#menu ul li#menu-item-48 ul.sub-menu li a{
	display: block;
	font-size: 18px;
	padding: 10px 30px;
	font-weight: 400;
	color: #fff;
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
div#menu ul li ul.sub-menu li a:hover,
div#menu ul li ul.sub-menu li.current-menu-item a{
	background: #faba00;
	background: rgb(252,150,0);
	background: linear-gradient(180deg, rgba(252,150,0,1) 0%, rgba(250,186,0,1) 100%);
}
div#menu ul li ul.sub-menu li a::after{
    display: none;
}
div#menu ul li.menu-item-has-children:hover ul.sub-menu li a::after{
    width: 0;
}

/* Footer
--------------------------------------------------*/
div#footer{
	background: rgb(252,150,0);
	background: linear-gradient(180deg, rgba(252,150,0,1) 0%, rgba(250,186,0,1) 100%);
	padding-top: 60px;
	color: #fff;
}
div.col-footer{
	display: inline-block;
	width: 33%;
	vertical-align: top;
}
div.col-footer ul{
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 20px;
}
div.col-footer ul li a{
	color: #fff;
	text-decoration: none;
}
div.col-footer:nth-of-type(1){
	padding-right: 30px;
	text-align: center;
}
div.col-footer:nth-of-type(1) img{
	width: 300px;
	height: auto;
	margin-bottom: 20px;
}
div.col-footer:nth-of-type(2){
	padding: 0 50px;
	padding-top: 30px;
}
div.col-footer:nth-of-type(3){
	padding-left: 30px;
	padding-top: 30px;
}
div.col-footer h3{
	font-size: 28px;
	font-weight: 300;
	text-transform: uppercase;
}
div.col-footer:nth-of-type(2) ul li a::before,
div.col-footer:nth-of-type(3) ul li a::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f105';
	display: inline-block;
	margin-right: 5px;
	text-rendering: optimizeLegibility;
}
div.col-footer:nth-of-type(2) ul li a,
div.col-footer:nth-of-type(3) ul li a{
	display: block;
}
div.col-footer:nth-of-type(2) ul li a:hover,
div.col-footer:nth-of-type(3) ul li a:hover{
	padding-left: 15px;
	text-decoration: none;
}
div.col-footer:nth-of-type(3) a.plus-actu{
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
div.col-footer:nth-of-type(3) a.plus-actu::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f067';
	display: inline-block;
	margin-right: 5px;
	text-rendering: optimizeLegibility;
}
div#menu-footer{
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding-top: 60px;
	padding-bottom: 20px;
}
div#menu-footer a{
	color: #fff;
	text-decoration: none;
	padding: 0 15px;
}
div#menu-footer a:hover{
	text-decoration: underline;
}
div#copyright{
	width: 80%;
	background: #fc9800;
	margin: 0 auto;
	padding: 25px;
	font-size: 14px;
	color: #fff;
	text-align: center;
}
div#copyright a{
	color: #fff;
	text-decoration: none;
}
div#copyright a:hover{
	text-decoration: underline;
}

/* Content
--------------------------------------------------*/
div#page{
	position: relative;
	padding: 0; 
}
.wrap {
	width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
.row {
	position: relative;
    display: table;
	width: 100%;
    height: 100%;
    margin: auto;
    overflow: auto;
    table-layout: fixed;
}
.col {
    display: table-cell;
	height: 100%;
    vertical-align: middle;
}
.col50 {
	width: 50%;
}
div.bg-gris{
	background: #f5f4f5;
}
.txt{
	color: #000;
	font-size: 18px;
	line-height: 1.5;
}
.titre1{
	font-size: 45px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: #faba00;
	text-transform: uppercase;	
}
hr.hr-jaune{
	display: block;
	background-color: #faba00;
	height: 5px;
	border: 0;
	width: 115px;
	margin-top: 5px;
	margin-bottom: 30px;
	margin-left: 0;
}
hr.wp-block-separator{
	display: block;
	background-color: #faba00;
	height: 1px;
	border: 0;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
}
a.bt, input.bt, .bt{
	display: inline-block;
	padding: 15px 25px;
	font-size: 20px;
	line-height: 1;
	font-weight: 300;
	color: #fff !important;
	text-decoration: none !important;
	border: none;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a.bt-jaune, input.bt-jaune, .bt-jaune{
	background: #faba00;
}
a.bt-jaune:hover, input.bt-jaune:hover, .bt-jaune:hover{
	background: #2c2c2c;
}
.bt:focus{
	outline: 0;
}
div.bt-back{
	text-align: center;
	padding-top: 60px;
}

/* Informations
--------------------------------------------------*/
div#informations{
	padding-top: 80px;
	padding-bottom: 70px;
	background: #faba00;
	margin-bottom: 100px;
}
div.item-infos{
	width: 24%;
	display: inline-block;
	vertical-align: top;
	padding: 0 30px;
	text-align: center;
}
div.item-infos:nth-of-type(2){
	
}
div.item-infos:nth-of-type(3){
	
}
div.item-infos div.picto{

}
div.item-infos div.picto a{
	display: block;
	position: relative;
	width: 200px;
	height: 200px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	background: #fff;
}
div.item-infos div.picto a:hover{
	background: #2c2c2c;
}
div.item-infos div.picto a img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 110px;
	height: 110px;
}
div.item-infos h3{
	color: #58585a;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}
div.item-infos h3 a{
	color: #fff;
	text-decoration: none;
}
div.item-infos h3 a:hover{
	text-decoration: underline;
}

/* Contact-Devis
--------------------------------------------------*/
div#contact-devis{
	background: #2c2c2c;
	font-size: 35px;
	line-height: 1;
	text-align: center;
	padding: 20px;
	margin-top: 100px;
	margin-bottom: 100px;
}
div#contact-devis a{
	display: block;
	width: 50%;
	color: #faba00;
	text-decoration: none;
	padding: 20px;
}
div#contact-devis a strong{
	display: block;
	font-size: 45px;
	font-weight: 800;
	text-transform: uppercase;
}
div#contact-devis a:hover{
	color: #fff;
}
div#contact-devis a:nth-of-type(1){
	float: left;
	border-right: 1px solid #fff;
}
div#contact-devis a:nth-of-type(2){
	float: right;
}

/* Home Page - Réalisations
--------------------------------------------------*/
div#realisations{
	text-align: center;
	padding-top: 80px;
	padding-bottom: 100px;
}
div.item-nos-realisations{
	display: inline-block;
	width: 33.33%;
	float: left;
	vertical-align: top;
	margin-top: 30px;
}
div.item-nos-realisations:nth-of-type(1){
	padding-right: 20px;
	padding-left: 0px;
}
div.item-nos-realisations:nth-of-type(2){
	padding-right: 10px;
	padding-left: 10px;
}
div.item-nos-realisations:nth-of-type(3){
	padding-right: 0px;
	padding-left: 20px;
}
div.item-nos-realisations h2,
div.item-nos-realisations h2 a,
div.item-nos-realisations h3,
div.item-nos-realisations h3 a{
	color: #2c2c2c;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
}
div.item-nos-realisations div.item-photo{
	position: relative;
	padding: 0;
	margin: 0;
	line-height: 1px;
}
div.item-nos-realisations div.item-photo span{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
    -moz-opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
div.item-nos-realisations div.item-photo:hover span{
	opacity: 0.7;
    -moz-opacity:0.7;
	filter:alpha(opacity=70);
}

/* Home Page - Présentation
--------------------------------------------------*/
div#presentation{
	
}
div#presentation a.bt{
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 15px;
}

/* Article
--------------------------------------------------*/
div.article{
	padding-top: 50px;
	padding-bottom: 100px;
}
div.article-header{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
h1.article-titre{
	font-size: 45px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	color: #faba00;
}

/* Article - Contenu
--------------------------------------------------*/
div.article-content{
	padding-top: 20px;
	font-size: 17px;
	line-height: 1.7;
}
div.article-content a,
div.txt a{
	color: inherit;
}    
div.article-content a:hover,
div.txt a:hover{
	color: #faba00;
}   
div.article-content .wp-block-image{
	margin-top: 30px;
	margin-bottom: 30px;
}
div.article-content h2,
div.article-content h3{
	font-size: 25px;
	font-weight: 600;
	line-height: 1;
	color: #faba00;
}
div.article-content h2.titre-block{
	font-size: 25px;
	font-weight: 600;
	line-height: 1;
	background: #faba00;
	background: #2c2c2c;
	color: #fff;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}








div.article-content ul{
	padding-left: 0;
	margin-left: 0;
	margin-bottom: 0;
}
div.article-content ul li{
	margin-left: 20px;
	margin-bottom: 5px;
}
div.article-content ul li ul{
	margin-top : 15px;
}
div.article-content ul li ul li{
	margin-bottom: 5px;
}
div.article-date{
	font-size: 14px;
	padding-bottom: 10px;
	color: #999999;
	margin-top: -5px;
}

/* Article - Choix gamme
--------------------------------------------------*/
div.choix-gamme{
	padding-top: 40px;
	text-align: center;
	font-size: 22px;
}
div.item-gamme{
	display: inline-block;
	width: 50%;
	max-width: 500px;
	vertical-align: top;
	margin-top: 25px;
}
div.item-gamme:nth-of-type(1){
	padding-right: 20px;
	padding-left: 0px;
}
div.item-gamme:nth-of-type(2){
	padding-right: 0px;
	padding-left: 20px;
}
div.item-gamme div.photo{
	position: relative;
	padding: 0;
	margin: 0;
	line-height: 1px;
}
div.item-gamme div.photo span{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
    -moz-opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
div.item-gamme div.photo:hover span{
	opacity: 0.7;
    -moz-opacity:0.7;
	filter:alpha(opacity=70);
}
div.item-gamme h3,
div.item-gamme h3 a{
	color: #2c2c2c;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 0px;
}
div.item-gamme p.description{
	padding: 0;
	margin: 0;
	font-size: 15px;
}

/* Liste articles
--------------------------------------------------*/
div.liste-articles{
	padding-top: 60px;
}
div.liste-articles hr{
	display: block;
	background-color: #faba00;	
	height: 1px;
	border: 0;
	width: 100%;
	margin-top: 45px;
	margin-bottom: 45px;
	margin-left: 0;
}
div.liste-articles div.actu-photo{
	width: 375px;
	display: inline-block;
	vertical-align: top;
}
div.liste-articles div.actu-photo img{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
div.liste-articles div.actu-infos{
	width: calc(100% - 400px);
	display: inline-block;
	vertical-align: top;
	padding-left: 30px;
	min-height: 20px;
}
div.liste-articles div.actu-infos h3{
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0;
	padding-top: 10px;
}
div.liste-articles div.actu-infos h3 a{
	color: #2c2c2c;
	text-decoration: none;
}
div.liste-articles div.actu-infos h3 a:hover{
	color: #faba00;
	text-decoration: none;
}
div.liste-articles div.actu-infos small{
	display: block;
	padding-top: 10px;
	font-size: 14px;
	color: #606060;
}
div.liste-articles  div.actu-infos div{
	padding-top: 10px;
	padding-bottom: 15px;
	min-height: 0px;
}
div.liste-articles  div.actu-infos div p{
	margin: 0;
	padding: 0;
	font-size: 17px;
}
div.liste-articles  a.bt{
	background: #2c2c2c;
	font-size: 16px;
	padding: 12px 20px;
}
div.liste-articles div.item a.bt:hover{
	background: #faba00;
}

/* Pagination
--------------------------------------------------*/
div.nav-links{
	text-align: center;
	font-size: 18px;
	padding-top: 20px;
}
div.nav-links span.page-numbers.current{
	display: inline-block;
	color: #faba00;
	text-decoration: none;
	padding: 5px 15px;
	margin-left: 5px;
	margin-right: 5px;
}
div.nav-links a.page-numbers{
	display: inline-block;
	background: #faba00;
	color: #fff;
	text-decoration: none;
	padding: 5px 15px;
	margin-left: 2px;
	margin-right: 2px;
}
div.nav-links a.page-numbers:hover{
	background: #2c2c2c;
}
div.nav-links a.next.page-numbers,
div.nav-links a.prev.page-numbers{
	color: #faba00;
	background: none;
}
div.nav-links a.next.page-numbers:hover,
div.nav-links a.prev.page-numbers:hover{
	text-decoration: underline;
}

/* Divers
--------------------------------------------------*/
.pswp__caption .dgwt-jg-item-desc {
	font-size: 16px !important;
}

/* Formulaire
-------------------------------------------------------------- */	
div.wpcf7{
	margin-left: auto;
	margin-right: auto;
}
fieldset{
 	padding: 20px 60px;
	border: 1px solid #faba00;	
	margin: 0;
	margin-bottom: 30px;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	color: #000;
}
fieldset legend{
	background: #fff;
	color: #faba00;	
	padding: 5px 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
}
label{
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	color: #000;
	display: inline-block;
	margin-bottom: 8px;
}
.input{
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	color: #494949;	
	background: #fff;
	border-radius: 0;
	vertical-align: middle;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	border: none;
	border: 1px solid #494949;
	-webkit-appearance: none;
	padding: 10px 10px;
	margin-bottom: 10px;
	width: 100%;
}
.checkbox input[type="checkbox"]{
	font-size: 30px;
}
span.wpcf7-list-item {
	margin: 0;
	padding-right: 20px;
}
span.wpcf7-list-item.first{

}
input[type="radio"],
input[type="checkbox"]{
	margin-left: 0px;
}
.select{
	font-size: 17px;
	font-family: 'Poppins', sans-serif;
	color: #494949;	
	background: #fff;
	font-weight: 400;
	vertical-align: middle;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	border: 1px solid #494949;
	padding: 10px;
	padding-right: 30px;
	margin-bottom: 10px;
	width: 100%;
	border-radius: 0;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
}
.select-auto{
	width: auto;
}
.select::-ms-expand,
.select-auto::-ms-expand {
    display: none;
}
.textarea{
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	color: #494949;	
	background: #fff;
	border-radius: 0;
	font-weight: 400;
	vertical-align: middle;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	border: 1px solid #494949;
	-webkit-appearance: none;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	width: 100%;
}
.input,
.input:focus,
.btn:focus,
.textarea:focus{
	outline: 0;
}
::-webkit-input-placeholder { /* Chrome / Opera / Safari */
  color: #fff;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
form.wpcf7-form div.wpcf7-response-output{
	border: none !important;
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 10px !important;
	margin: 0 !important;
}
form.wpcf7-form.invalid div.wpcf7-response-output{
	background: #e50000;

}
form.wpcf7-form.sent div.wpcf7-response-output{
	background: #27b631;
}
div.img-form{
	text-align: center;
}
div.img-form img{
	
}
div.img-form.img-form-dessus img,
div.img-form.img-form-facade img{
	max-width: 750px;
	height: auto;
}
div.img-form.img-form-jg img,
div.img-form.img-form-jd img{
	max-width: 600px;
	height: auto;
}

/* Tabs
--------------------------------------------------*/
.wp-block-table table{
	width: 100%; 
	border: 1px solid #fff; 
	border-collapse: collapse; 
}
.wp-block-table table tr:nth-of-type(odd) { 
	background: #f5f4f5; 
}
.wp-block-table table td, 
.wp-block-table table th { 
	border: 1px solid #e2e2e2; 
	border-bottom: none; 
	vertical-align: middle;
	padding: 15px;
}
.wp-block-table table tr:last-of-type td{
	border-bottom: 1px solid #e2e2e2; 
}
.wp-block-table table th { 
	background: #fff;
	color: #faba00;
	font-weight: bold; 	
	border: #fff;
} 
.wp-block-table thead,
.wp-block-table thead td{
	border: none;
}
.wp-block-table table tr td strong.ligne-titre{
	
}

/* Tabs - Tarifs gamme Classique
--------------------------------------------------*/
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(1),
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(12),
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(15),
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(21),
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(24),
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(30) { 
	background: #faba00;
	color: white; 
	font-weight: bold; 	
	font-size: 19px;
}
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(1) td,
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(12) td,
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(15) td,
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(21) td,
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(24) td,
.wp-block-table.tab-tarifs-classique table tr:nth-of-type(30) td { 
	border: 1px solid #faba00;
}

/* Tabs - Tarifs gamme Closéo
--------------------------------------------------*/
.wp-block-table.tab-tarifs-closeo table tr:nth-of-type(1){
	background: #faba00;
	color: white; 
	font-weight: bold; 	
}

/* Galeries
--------------------------------------------------*/
.wp-block-gallery.galerie-coloris.popup{

}
.wp-block-gallery.galerie-coloris{

}
.wp-block-gallery.galerie-coloris .wp-block-image{
	height: 170px;
	overflow: hidden;
	padding: 10px;	
}
.wp-block-gallery.galerie-coloris .wp-block-image img{
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.wp-block-gallery.galerie-coloris .wp-block-image a{
	padding-bottom: 50px;
}
.wp-block-gallery.galerie-coloris figure.wp-block-image figcaption{
    position: absolute;
	background: none;
	font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 1;
    margin-top: 0;
	bottom: 10px;
	height: 40px;
    max-height: 40px;
	overflow: hidden;
}
.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{
	display: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}	

div.wp-block-image .aligncenter .wp-element-caption{
	text-align: center;
}
.wp-block-gallery.nocaption figure.wp-block-image figcaption{
    display: none;
}
.wp-block-gallery figure.wp-block-image { flex-grow: 0 !important; }

.caption-center{
	text-align: center;
}
.wp-block-gallery.galerie-coloris.coloris-classique figure.wp-block-image img {
	border: 1px solid #e7e7e7;
}
body.page-id-29 .sl-image img{
	border: 1px solid #e7e7e7 !important;
}










/* Cookies
--------------------------------------------------*/
a.cn-more-info{
	color: #fff;
	font-weight: 400;
	-moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
a.cn-more-info:hover{
	color: #999999;
}
a.cn-set-cookie{
	display: inline-block;
	background: #fff;
	color: #000;
	text-decoration: none;
	padding: 5px 15px;
	text-transform: uppercase;
	-moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
a.cn-set-cookie:hover{
	background: #999999;
}

