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

By Nicolas EVARISTE (http://www.atelier85.fr)
© 2021 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: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	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: 900;
}
a {
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

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

/* Textes
--------------------------------------------------*/
.txt22 { font-size: 22px; }
.upper { text-transform: uppercase; }

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

/* Header
--------------------------------------------------*/
div#top{
	width: 100%;
	height: auto;
	padding: 5px 100px;
	background: #2072b0;
	font-size: 16px;
	color: #fff;
	text-align: right;
}
div#top a{
	color: #fff;
	text-decoration: none;
}
div#top a:hover{
	color: #bdd5e7;
}
div#top i{
	color: #bdd5e7;
	font-size: 20px;
	vertical-align: baseline;
	padding-right: 5px;
}
div#top i.fa-phone-alt{
	padding-left: 50px;
}
div#top i.fa-facebook-square{
	padding-left: 50px;
}
div#top strong{
	font-size: 22px;
}
div#header{
	width: 100%;
	height: auto;
	padding: 5px 100px;
}
div#logo{
	width: 45%;
	float: left;
}
div#logo img{
	width: 609px;
	height: auto;
}

/* Menu
--------------------------------------------------*/
div#menu-icon{
	display: none;
}
div#menu{
	width: 55%;
	float: right;
	padding-top: 65px;
}
div#menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}
div#menu ul li{
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
	border-right: 1px solid #cccccc;
}
div#menu ul li:last-child{
	border-right: none;
}
div#menu ul li a{
	display: block;
	position: relative;
	padding: 10px 40px;
	font-size: 20px;
	font-weight: 300;
	line-height: 20px;
	color: #000;
	text-decoration: none;
}
div#menu ul li a::after{
    content: '';
    display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    width: 0;
	margin-left: auto;
	margin-right: auto;
    height: 5px;
	margin-top: 0px;
    background: #2072b0;
    transition: width .3s;
}
div#menu ul li a:hover::after,
div#menu ul li:hover a::after,
div#menu ul li.current_page_item a::after,
div#menu ul li.current-menu-item a::after,
div#menu ul li.current-post-ancestor a::after,
div#menu ul li.current-category-ancestor a::after,
div#menu ul li.current-menu-parent a::after,
div#menu ul li.current-post-parent a::after{
	width: calc(100% - 50px);
}

/* Menu - Dropdown
---------------------------------------------------------------------*/
@keyframes sub-menu-anim {
    from {margin-top: 30px; opacity: 0;}
    to {margin-top: 0px; opacity: 1;}
}
div#menu ul li ul {
	display: none;
	position: absolute;
	width: calc(100% - 50px);
	animation-name: sub-menu-anim;
    animation-duration: 0.2s;
	z-index: 9999;
	text-align: center;
	padding: 10px 0;
	margin-left: 25px;
	background: #f2f2f2;
}
div#menu ul li:hover ul {
	display: block;
}
div#menu ul li ul li {
	display: block;
	width: 100%;
	border-right: none;
}
div#menu ul li ul li a {
	display: block;	 
	padding: 10px 15px;
	font-size: 19px;
}
div#menu ul li ul li a:hover,
div#menu ul li ul li.current_page_item a,
div#menu ul li ul li.current-menu-item a,
div#menu ul li ul li.current-post-ancestor a,
div#menu ul li ul li.current-category-ancestor a,
div#menu ul li ul li.current-menu-parent a,
div#menu ul li ul li.current-post-parent a {
	background: #bdd5e7;
}
div#menu ul li:hover ul li a::after,
div#menu ul li ul li.current_page_item a::after,
div#menu ul li ul li.current-menu-item a::after,
div#menu ul li ul li.current-post-ancestor a::after,
div#menu ul li ul li.current-category-ancestor a::after,
div#menu ul li ul li.current-menu-parent a::after,
div#menu ul li ul li.current-post-parent a::after {
	width: 0px;
}

/* Footer
--------------------------------------------------*/
div#footer-top {
	width: 100%;
	height: 15px;
	background: #175c8d;
}
div#footer {
	padding: 80px 50px 0px 50px;
	background: #2072b0;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
}
div#footer a{
	color: #fff;
	text-decoration: none;
}
div#footer a:hover{
	text-decoration: underline;
}
div#copyright {
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 20px;
	background: #175c8d;
}
div#copyright a{
	color: #fff;
	text-decoration: underline;
}
#scrollUp{
	background-image: url("../img/top.svg");
	background-repeat: no-repeat;
	background-color: #175c8d;
	background-position: 50% 50%;
	text-align: center;
	text-indent: 0;
	position: absolute;
	width: 45px;
	height: 45px;
    bottom: 40px;
    right: 50px;
	z-index: 1000;
}
div.col-footer {
	display: inline-block;
	padding-right: 50px;
	padding-bottom: 80px;
	vertical-align: top;
} 
div.col-footer:first-child {
	color: #bdd5e7;
	font-size: 16px;
	line-height: 22px;
	width: 32%;
}
div.col-footer:first-child p{
	padding: 0;
	margin: 0;
}
div.col-footer:first-child strong{
	font-size: 22px;
	line-height: 28px;
	color: #fff;
}
div.col-footer:nth-child(2) {
	width: 31%;
}
div.col-footer:nth-child(3) {
	width: 36%;
	padding-right: 0px;
}
div.col-footer i{
	color: #bdd5e7;
	font-size: 24px;
	vertical-align: baseline;
	padding-right: 8px;
}
div.col-footer div.col-picto,
div.col-footer div.col-infos{
	display: inline-block;
	vertical-align: top;
}
div.col-footer div.col-picto{
	width: 35px;
	padding-top: 3px;
	padding-bottom: 3px;
}
div.col-footer div.col-infos{
	width: calc(100% - 40px);
}

/* Content
--------------------------------------------------*/
.wrap1300 {
	width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
.outer {
	display: table;
	width: 100%;
	height: 100%;
}
.inner {
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
hr.hr-bleu{
	display: block;
	background-color: #2072b0;
	height: 5px;
	border: 0;
	width: 125px;
	margin-top: 0px;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
a.bt, input.bt, .bt{
	display: inline-block;
	padding: 8px 20px;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff !important;
	background: #2072b0;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-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:hover, input.bt:hover, .bt:hover{
	background: #000;
}
.bt:focus{
	outline: 0;
}
.titre1{
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
}
.titre2{
	font-size: 34px;
	line-height: 40px;
	font-weight: 700;
}

/* Slider
--------------------------------------------------*/
div#slider{
	width: 100%;
	padding: 0 100px;
}

/* Présentation - Home Page
--------------------------------------------------*/
div#presentation-wrap{
	margin-top: 100px;
	margin-bottom: 100px;
	padding-top: 100px;
	padding-bottom: 100px;
	background: #f2f2f2;
}
div#presentation{
	width: 100%;
	padding: 0;
	position: relative;
}
div#presentation div.col-left{
	width: 50%;
	float: left;
	padding: 0 100px;
	text-align: center;
	height: 100%;
	position: absolute;
}
div#presentation div.col-left h1{
		
}
div#presentation div.col-left strong{
	font-weight: 600;
}
div#presentation div.col-right{
	width: 50%;
	height: 545px;
	float: right;
	background: url(../img/presentation.jpg) no-repeat top center;
}
img.photo-presentation{
	display: none;
}

/* Contact
--------------------------------------------------*/
div#contact{
	padding: 100px;
	font-size: 20px;
	line-height: 32px;
}
div#contact a{
	color: #2072b0;
}
div#map-wrap{
	width: 100%;
	padding: 0 100px;
}
div#map{
	position: relative; 
  	overflow: hidden;
	width: 100%; 
	padding-top: 46.5%;
}
div#map iframe{
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
 	height: 100%; 
  	border: 0; 
}

/* Réalisations - Home Page
--------------------------------------------------*/
div#nos-realisations{
	width: 100%;
	padding-bottom: 100px;
	text-align: center;
}
div.item-nos-realisations{
	display: inline-block;
	width: 33.33%;
	float: left;
	vertical-align: top;
}
div.item-nos-realisations.item-menuiseries-exterieures{
	padding-right: 20px;
	padding-left: 0px;
}
div.item-nos-realisations.item-bardage-charpente{
	padding-right: 10px;
	padding-left: 10px;
}
div.item-nos-realisations.item-menuiseries-interieures{
	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: #2072b0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 500;
}
div.item-photo{
	position: relative;
	padding: 0;
	margin: 0;
	line-height: 1px;
}
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-photo:hover span{
	opacity: 0.7;
    -moz-opacity:0.7;
	filter:alpha(opacity=70);
}

/* Infos - Home Page
--------------------------------------------------*/
div#infos{
	width: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	background: #f2f2f2;
}
div.item-infos{
	display: inline-block;
	width: 24.5%;
	text-align: center;
	vertical-align: top;
}
div.item-infos div.item-infos-picto{
	width: 200px;
	height: 200px;
	padding: 40px;
	margin: auto;
	background: #2072b0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
div.item-infos h3{
	color: #2072b0;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}
div.item-infos p{
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 24px;
	color: #3b3b3b;
	padding: 0px 40px;
}

/* RGE - Home Page
--------------------------------------------------*/
div#rge{
	padding-top: 100px;
	padding-bottom: 100px;
}
div.rge-logo{
	width: 50%;
	float: left;
	text-align: right;
	padding-right: 60px;
}
div.rge-infos{
	width: 50%;
	float: right;
	text-align: left;
	padding-left: 60px;
	padding-top: 50px;
	font-size: 18px;
	/*color: #3c3c3c;*/
}
div.rge-infos h3{
	margin: 0;
	padding: 0;
	font-size: 28px;
	font-weight: 800;
}
div.rge-infos p{
	max-width: 480px;
}

/* Contact - Home Page
--------------------------------------------------*/
div#contact-home{
	text-align: center;
	padding-top: 180px;
	padding-bottom: 180px;
	background: url(../img/bg-contact.jpg) no-repeat center top;
	color: #fff;
	font-size: 30px;
	line-height: 45px;
}
div#contact-home a{
	color: #fff;
	text-decoration: none;
	font-weight: 800;
}
div#contact-home a:hover{
	color: #bdd5e7;
}

/* Pages
--------------------------------------------------*/
div.wrap-page{
	width: 100%;
	padding: 0 100px;
	padding-bottom: 100px;
}
h1.titre-page{
	width: 100%;
	display: block;
	padding: 30px;
	background: #2072b0;
	color: #fff;
	text-align: left;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
}
div.wrap-page h1.titre-page{
	margin-bottom: 30px;
}
div.wrap-page h2,
div.wrap-page h3{
	font-size: 28px;
	font-weight: 700;
	color: #2072b0;
}
div.wrap-page h2,
div.wrap-page h3,
div.wrap-page p {
	padding-left: 10px;
	padding-right: 10px;
}
div.wrap-page a{
	color: #000;
	text-decoration: underline;
}
div.wrap-page a:hover{
	color: #2072b0;
}

/* Nos réalisations
--------------------------------------------------*/
div.wrap-page div.item-nos-realisations{
	text-align: center;
	/*padding-right: 10px;
	padding-left: 10px;*/
}
div.bt-retour{
	text-align: center;
	padding-top: 80px;
}

/* Services
--------------------------------------------------*/
div.services-rea{
	text-align: center;
	padding-top: 50px;
}

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

/* WP
--------------------------------------------------*/
.wp-block-separator{
	display: block;
	color: #cecece;
	background-color: #cecece;
	height: 1px;
	border: 0;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 35px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}