/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus{
  outline: none;
  border: none;
}
/*body:not(.page-id-88) #primaryNav ol, body:not(.page-id-88) ul {
  list-style: disc;
}*/

ul[class],
ol[class] {
  padding: 0;
}

b, strong{
  font-weight: 700;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
body{
  overflow-x: hidden;
}
body {
  font-family: "Roboto",sans-serif;
  font-size: 15px;
  color: #1d1d1b;
  line-height: initial;
}
p{
  font-weight: 300;
}
button:focus {
  outline: none;
}
ul[class],
ol[class] {
  list-style: none;
}
ul{
  margin: 0 0 0 13px;
  padding: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}
a{
  color: #94c6ec;
}
a:hover{
  color: #484848;
  text-decoration: none;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Global */
.btn-icn{
  font-family: 'Roboto Condensed';
  font-size: 13px;
  color: #1d1d1b;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  background: #94c6ec;
  border-radius: 20px;
  padding: 1px 1px 1px 15px;
  justify-content: center;
  align-items: center;
  transition: all .5s ease-in-out;
}
.btn-icn:hover{
  color: #fff !important;
  background: #50a4e4;
}
.btn-icn .icn{
  background: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
  line-height: 32px;
  margin-left: 10px;
  position: relative;
}
.btn-icn:hover{
  color: #1d1d1b;
}
.btn-icn .icn::after{
  content: "";
  position: absolute;
  display: block;
  background: url(../images/arrow.svg) no-repeat center;
  width: 20px;
  height: 15px;
  background-size: contain;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-fixed{
  display: inline-flex;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 52px;
  width: 208px;
  overflow: hidden;
  justify-content: space-between;
  z-index: 10;
}
.btn-fixed span:hover{
  color: #fff;
  background: #50a4e4;
}
.btn-fixed span{
  font-family: 'Roboto Condensed';
  font-size: 20px;
  color: #1d1d1b;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 30px;
  padding: 1px 1px 1px 15px;
  background: #94c6ec;
  display: flex;
  align-items: center;
  height: 52px;
  width: 200px;
  margin-right: 8px;
  transform: translateX(100%);
  transition: all .5s ease-in-out;
  opacity: 0;
}
.btn-fixed .icn{
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 6px;
  border: 1px solid #94c6ec;
}
.btn-fixed:hover span{
  transform: translateX(0);
  opacity: 1;
}
.btn-fixed:hover{
  color: #1d1d1b;
}
.btn-fixed .icn::after{
  content: "";
  position: absolute;
  display: block;
  background: url(../images/arrow.svg) no-repeat center;
  width: 20px;
  height: 15px;
  background-size: contain;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}
.clear{
  clear: both;
}
h1,h3,h2{
  font-family: 'Bitter';
  font-size: 54px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 60px;
}


/* Header */
header{
  background: #fff url(../images/fond_header.svg) no-repeat center;
  background-size: cover;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
header nav #navbarNav{
  justify-content: center;
}
header .navigation{
  background: #1d1d1b;
  margin-top: 5px;
}
header .social{
  display: flex;
  align-items: center;
  margin-left: 30px;
}
header .social a{
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
}
header .social li{
  margin-right: 10px;
}
header .social a img{
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s ease-in-out;
}
header .social a .hover,header .social a:hover .nohover{
  opacity: 0;
}
header .social a:hover .hover{
  opacity: 1;
}
header .navigation .navbar-nav .nav-item a{
  font-family: 'Bitter';
  font-size: 16px;
  color: #fff;
  transition: all .5s ease-in-out;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 400;
}
header .navigation .navbar-nav .nav-item{
  position: relative;
  /* margin: 0 40px; */
  margin: 0 22px;
}
header .navigation .navbar-nav .nav-item:last-child{
  margin-right: 0;
}
header .navigation .navbar-nav .nav-item:first-child{
  margin-left: 0;
}
header .navigation .navbar-nav .nav-item::after{
  content: "";
  background: #94c6ec;
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  position: absolute;
  /* right: -40px; */
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
header .navigation .navbar-nav .nav-item:last-child::after{
  content: none;
}
header .navigation .navbar-nav{
  width: 100%;
  justify-content: space-between;
}
header .navigation .navbar-nav .nav-item:hover a,header .navigation .navbar-nav .nav-item.active a{
  color: #94c6ec;
}
header .navigation .nav-item .dropdown-menu{
  display: none;
}
header .navigation .nav-item .dropdown-menu::before{
  content: "";
  background: url(../images/arrow2.svg) no-repeat center;
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}
header .navigation .nav-item:hover .nav-link{
  color: #fff;
}
/* header .navigation .nav-item:hover .dropdown-menu{
  display: block;
} */
header .navigation .nav-item .dropdown-menu{
  margin-top: 0;
  left: -45px;
  width: calc(100% + 85px);
  border-radius: 0;
  border: none;
  background: rgba(148,198,236,.7);
}
header .navigation .navbar-nav .nav-item a::after{
  content: none;
}
header .navbar{
  padding: 0 1rem;
}
header .dropdown-menu{
  padding: 1rem 0 .7rem 0;
}
header .dropdown-menu li a{
  color: #fff !important;
  text-align: center;
  padding: 10px 0 !important;
  position: relative;
  display: block;
  white-space: break-spaces;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
header .dropdown-menu li a::before{
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #1d1d1b;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .dropdown-menu li:last-child a::before{
  content: none;
}
header .dropdown-menu li a:hover,header .dropdown-menu li.active a{
  background: transparent;
  color: #1d1d1b !important;
}
.btn-submenu {
	position: absolute;
	right: 20px;
	top: 0;
	width: 50px;
	text-align: center;
}
.btn-submenu svg {
	fill: #fff;
	width: 20px;
	transition: all 0.4s;
	position: relative;
	top: 0;
}

/* Banniere */
#banniere{
  height: calc(100vh - 191px);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
  margin-top: 191px;
}
#banniere .caption{
  background: rgba(191,204,217,.7);
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  width: 565px;
  border-radius: 30px 30px 0px 0;
  position: relative;
}
#banniere .caption::before{
  content: "";
  background: url(../images/coq.svg) no-repeat center;
  width: 206px;
  height: 159px;
  display: block;
  background-size: contain;
  position: absolute;
  top: -157px;
  left: 0;
}
#banniere .titres{
  font-family: 'Bitter';
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 60px;
}
#banniere .titres::after{
  content: '';
  width: 106px;
  height: 5px;
  display: block;
  background: #fff;
  margin-top: 5px;
}
#banniere p{
  font-size: 37px;
}

/* Intro */
#intro{
  margin-bottom: 60px;
}
#intro h1{
  margin-bottom: 45px;
}
#intro .titre{
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 20px;
  font-family: 'Roboto';
}
#intro p:first-of-type::first-letter{
  font-size: 114px;
  color: #94c6ec;
  font-family: 'Bitter';
  float: left;
  height: 100%;
  font-weight: 700;
  padding-right: 15px;
  line-height: 100px;
}
#intro .first-text::after{
  content: '';
  width: 106px;
  height: 6px;
  background: #bfccd9;
  display: block;
  margin-top: 20px;
}
#intro .first-text{
  margin-bottom: 25px;
  font-size: 15px;
  text-align: initial;
}
#intro p{
  font-size: 15px;
}
#intro .btn-icn{
  margin-top: 25px;
  transition: all .5s ease-in-out;
}
#intro .btn-icn:hover{
  background: #50a4e4;
  color: #fff;
}
#intro .box-images{
  width: 100%;
}
#intro .box-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Matériaux */
#materiaux .container-fluid,#partenaire .container-fluid,#actus .container-fluid{
  max-width: 1440px;
  padding: 0 40px;
}
#materiaux{
  background: url(../images/fond-filigrane.svg) no-repeat center;
  background-size: cover;
  padding: 60px 0 10px 0;
}
#materiaux h3::after,#partenaire h3::after,#actus h3::after{
  content: "";
  background: #bfccd9;
  display: block;
  width: 106px;
  height: 6px;
  margin-top: 10px;
}
#materiaux h3,#partenaire h3,#actus h3{
  margin: 0 0 55px 50px;
}
#materiaux .box-materiaux{
  height: 410px;
  position: relative;
  overflow: hidden;
  margin-bottom: 55px;
  margin-left: 10px;
  margin-right: 10px;
}
#materiaux .box-materiaux > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 40px 0 0;
}
#materiaux .box-materiaux .content{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29,29,27,.5);
  width: 495px;
  margin: 0 auto;
  padding: 10px 15px 15px 15px;
  transition: all .5s ease-in-out;
}
#materiaux .box-materiaux .content .titre{
  font-size: 54px;
  color: #b4b3b2;
  font-family: 'Bitter';
  text-transform: uppercase;
  margin-bottom: 3px;
}
#materiaux .box-materiaux .content .titre strong{
  color: #fff;
}
#materiaux .box-materiaux .content p{
  color: #fff;
}
#materiaux .box-materiaux .content .sous-titre{
  font-size: 19px;
  color: #fff;
  font-family: 'Bitter';
  text-transform: uppercase;
  font-weight: 700;
}
#materiaux .box-materiaux .content .btn-icn{
  margin-top: 15px;
  background: #bfccd9;
  transition: all .5s ease-in-out;
}
#materiaux .box-materiaux .content .btn-icn:hover{
  background: #96b4d3;
  color: #fff;
}
#materiaux .box-materiaux .content .btn-icn .icn::after {
  background: url(../images/arrow3.svg) no-repeat center;
}
#materiaux .box-materiaux .content .fleche{
  margin: 10px 0 10px 15px;
}
#materiaux .box-materiaux:hover .content{
  margin: 0 !important;
}
#materiaux .box-materiaux .content .hidden{
  opacity: 0;
  transition: all .5s ease-in-out;
}
#materiaux .box-materiaux:hover .content .hidden{
  opacity: 1;
}
body.page-template-tpl-actualite #materiaux .box-materiaux .content .titre{ font-size: 27px; }
/* Partenaire */
#partenaire{
  padding: 100px 0 50px 0;
}
#partenaire .listing-partenaire{
  border: 1px solid #94c6ec;
  border-radius: 35px;
  padding: 50px 50px 40px 50px;
  position: relative;
}
#partenaire .listing-partenaire::before{
  content: "";
  background: url(../images/coq.svg) no-repeat center;
  background-size: contain;
  width: 206px;
  height: 160px;
  display: block;
  position: absolute;
  right: 135px;
  top: -158px;
}
#partenaire h3{
  margin-bottom: 40px;
}
#partenaire .listing-partenaire .box-logo{
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#partenaire .listing-partenaire p::before{
  content: "";
  display: block;
  background: #94c6ec;
  width: 30px;
  height: 4px;
  margin: 20px auto 10px auto;
}
#partenaire .listing-partenaire .box-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#partenaire .listing-partenaire p{
  text-align: center;
  font-size: 9px;
  font-family: 'Bitter';
}
#partenaire .listing-partenaire .slick-prev{
  background: url(../images/arrow4.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#partenaire .listing-partenaire .slick-next{
  background: url(../images/arrow4.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  transform: rotate(180deg) translateY(-50%);
  position: absolute;
  right: 15px;
  bottom: 50%;
}

/* Actualités */
#actus{
  margin-top: 20px;
  margin-bottom: 40px;
}
#actus .listing-actus .slick-prev{
  background: url(../images/arrow5.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
#actus .listing-actus .slick-next{
  background: url(../images/arrow5.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  transform: rotate(180deg) translateY(-50%);
  position: absolute;
  right: 20px;
  bottom: 50%;
  z-index: 10;
}
#actus h3 {
  margin-bottom: 40px;
}
#actus .listing-actus li > div{
  height: 70vh;
  background-size: cover !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
}
#actus .listing-actus li > div > img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#actus .listing-actus .content{
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 90px;
}
#actus .listing-actus .content .caption{
  width: 470px;
  border-radius: 30px 30px 0 0;
  background: rgba(191,204,217,.5);
  padding: 20px 25px;
}
#actus .listing-actus .content .caption .titre{
  font-size: 27px;
  color: #000000;
  font-family: 'Bitter';
  text-transform: uppercase;
  font-weight: 700;
}
#actus .listing-actus .content .caption .fleche{
  margin: 7px 0 10px 15px;
}
#actus .listing-actus .content .caption p{
  font-weight: 400;
}
#actus .listing-actus .content .caption .btn-icn img{
  display: initial;
}
#actus .listing-actus .content .caption .btn-icn:hover{
  background: #50a4e4;
  color: #fff;
}
#actus .listing-actus .content .caption .btn-icn{
  margin-top: 20px;
  transition: all .5s ease-in-out;
}

/* Footer */
footer{
  padding-top: 25px;
  padding-bottom: 10px;
  background:#1d1d1b url(../images/footer.svg) no-repeat center right;
  background-size: cover;
  color: #fff;
}
footer .tel{
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
footer .tel img{
  margin-right: 15px;
}
footer .loca p{
  color: #ffffff;
  font-size: 17px;
  font-weight: 300;
  margin-left: 15px;
  margin-bottom: 0!important;
}
footer .loca{
  display: flex;
  align-items: center;
}
footer .copyright li a{
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  transition: all .5s ease-in-out;
}
footer .copyright li a:hover{
  color: #94c6ec;
}
footer .copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
footer .copyright li{
  position: relative;
  margin: 0 10px;
}
#menu-footer-menu li{list-style: none;}
#menu-footer-menu li:first-child{list-style: none;}
footer .copyright li::after{
  content: "";
  background: #fff;
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
footer .copyright li:last-child::after{
  content: none;
}
footer .footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 960px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb{
  max-width: 1440px;
  margin: 191px auto 40px auto !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
  background: transparent;
  padding-top: 25px !important;
  align-items: center !important;
}
.breadcrumb .breadcrumb-item a{
  color: #1d1d1b;
  font-size: 14px;
  font-family: 'Bitter';
  font-weight: 400;
  transition: all .5s ease-in-out;
}
.breadcrumb .breadcrumb-item a:hover{
  color: #94c6ec;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: .2rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: .2rem;
  color: #1d1d1b;
}
.breadcrumb-item.active{
  color: #94c6ec;
  font-size: 14px;
  font-family: 'Bitter';
  font-weight: 400;
}

/* Intro page interne */
#intro-page .container-fluid{
  max-width: 1440px;
  padding: 0 40px;
}
#intro-page{
  margin-bottom: 85px;
}

.page-template-tpl-flexible h1{
  line-height: 65px;
  margin-bottom: 110px;
}
#intro-page h2{
	font-size: 35px;
	line-height: normal;
	margin-bottom: 30px;
}
#intro-page .box-content2 h2,#intro-page .box-content h2{
  color:white;
}


body.page-template-tpl-accueil #intro h2{
	font-size: 35px;
	line-height: normal;
}
#intro-page .box-content{
  margin: 0 10px;
  background: url(../images/fond-interne.svg) no-repeat center;
  background-size: cover;
  min-height: 410px;
  border-radius: 40px 40px 0 0;
}
#intro-page .box-content .first-text::first-letter{
  font-size: 114px;
  color: #94c6ec;
  font-family: 'Bitter';
  float: left;
  height: 100%;
  font-weight: 700;
  padding-right: 55px;
  line-height: 100px;
  padding-bottom: 2rem;
}
#intro-page .box-content .first-text::after{
  content: '';
  width: 106px;
  height: 6px;
  background: #bfccd9;
  display: block;
  margin-top: 20px;
  position: absolute;
  top: 80px;
  left: 0;
}
#intro-page .box-content .first-text{
  margin-bottom: 25px;
  font-size: 15px;
  text-align: initial;
  position: relative;
}
#intro-page .box-content p{
  font-size: 15px;
}
#intro-page .box-content{
  display: flex;
  align-items: center;
  justify-content: center;
}
#intro-page .box-content > div{
  width: 460px;
}
#intro-page .galerie .cntimg{
  height: 410px;
}
#intro-page .galerie .cntimg img{
  border-radius: 40px 40px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#intro-page .galerie .cntimg a{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#intro-page .box-content2{
  border-radius: 40px 40px 0 0;
  min-height: 410px;
  margin: 0 10px 0 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-items: flex-end;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;

}
#intro-page .box-content2 .content{
  background: rgba(29,29,27,.5);
  width: 495px;
  padding: 15px;
}
#intro-page .box-content2 .content h3{
  font-size: 19px;
  color: #fff;
  font-family: 'Bitter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 25px;
  margin-bottom: 10px;
}
#intro-page .box-content2 .content p{
  color: #fff;
}

/* Projet */
#projet{
  padding-top: 35px;
  padding-bottom: 50px;
  /* margin-bottom: 110px; */
  position: relative;
}
#projet::after{
  content: "";
  background: url(../images/fond-projet.svg) no-repeat center;
  background-size: cover;
  display: block;
  width: 100%;
  height: 450px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#projet .container-fluid{
  max-width: 1440px;
  padding: 0 40px;
  overflow: hidden;
}
#projet .titre{
  font-family: 'Bitter';
  font-size: 54px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 60px;
}
#projet .titre::after{
  content: "";
  background: #bfccd9;
  display: block;
  width: 106px;
  height: 6px;
  margin-top: 10px;
}
#projet .titre{
  margin: 0 0 55px 50px;
}
#projet .listing-projet .slick-prev{
  background: url(../images/arrow5.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
#projet .listing-projet .slick-next{
  background: url(../images/arrow5.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  transform: rotate(180deg) translateY(-50%);
  position: absolute;
  right: -30px;
  bottom: 50%;
  z-index: 100;
}
#projet .listing-projet li{
  height: 250px;
  position: relative;
  padding: 0 10px;
  transition: all .5s ease-in-out;
  transform: scale(1);
}
#projet .listing-projet li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
}
#projet .listing-projet li a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block;
}
#projet .listing-projet li:hover{
  transform: scale(1.25);
  z-index: 10;
}
#projet .listing-projet .slick-list{
  overflow: visible !important;
}
#projet .slick-slide{
  opacity: 0;
}
#projet .slick-active{
  opacity: 1;
}
#projet .listing-projet {
  min-height: 313px;
}

/* Materiaux Slide */
#materiaux-slide{
  margin-bottom: 60px;
}
#materiaux-slide .container-fluid{
  max-width: 1440px;
  padding: 0 40px;
  overflow: hidden;
}
#materiaux-slide .titre{
  font-family: 'Bitter';
  font-size: 54px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 60px;
}
#materiaux-slide .titre::after{
  content: "";
  background: #bfccd9;
  display: block;
  width: 106px;
  height: 6px;
  margin-top: 10px;
}
#materiaux-slide .titre{
  margin: 0 0 55px 50px;
}
#materiaux-slide .box-materiaux{
  height: 410px;
  position: relative;
  overflow: hidden;
  margin-left: 25px;
  margin-right: 25px;
}
#materiaux-slide .box-materiaux > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 40px 0 0;
}
#materiaux-slide .box-materiaux .content{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29,29,27,.5);
  width: 495px;
  margin: 0 auto;
  padding: 10px 15px 15px 15px;
  transition: all .5s ease-in-out;
}
#materiaux-slide .box-materiaux .content .titres{
  font-size: 54px;
  color: #b4b3b2;
  font-family: 'Bitter';
  text-transform: uppercase;
  margin-bottom: 3px;
}
#materiaux-slide .box-materiaux .content .titres strong{
  color: #fff;
}
#materiaux-slide .box-materiaux .content p{
  color: #fff;
}
#materiaux-slide .box-materiaux .content .sous-titre{
  font-size: 19px;
  color: #fff;
  font-family: 'Bitter';
  text-transform: uppercase;
  font-weight: 700;
}
#materiaux-slide .box-materiaux .content .btn-icn{
  margin-top: 15px;
  background: #bfccd9;
}
#materiaux-slide .box-materiaux .content .btn-icn .icn::after {
  background: url(../images/arrow3.svg) no-repeat center;
}
#materiaux-slide .box-materiaux .content .fleche{
  margin: 10px 0 10px 15px;
}
#materiaux-slide .box-materiaux:hover .content{
  margin: 0 !important;
}
#materiaux-slide .listing-materiaux .slick-prev{
  background: url(../images/arrow4.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
#materiaux-slide .listing-materiaux .slick-next{
  background: url(../images/arrow4.svg) no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  width: 28px;
  height: 51px;
  transform: rotate(180deg) translateY(-50%);
  position: absolute;
  right: -30px;
  bottom: 50%;
  z-index: 100;
}
#materiaux-slide .btn-icn .icn img{
  display: initial !important;
}

/* Contact */
#intro-page.contact h1{
  font-size: 30px;
  text-transform: initial;
  line-height: 45px;
  margin-bottom: 50px
}
#intro-page.contact .formulaire{
  width: 960px;
  margin: 0 auto;
}
#intro-page.contact .formulaire .form-control {
    font-size: 14px;
    color: #3A4257;
    line-height: 18px;
}
#intro-page.contact .formulaire .form-control {
    border-radius: 7px;
    border: none;
    background: #F5F7FA;
    padding: 10px 20px;
    font-weight: 500;
}
#intro-page.contact .formulaire .form-control::placeholder {
    color: #3A4257;
    opacity: .4;
}
#intro-page.contact .formulaire .form-row {
    margin-right: -8px;
    margin-left: -8px;
    margin-bottom: 10px;
}
#intro-page.contact .formulaire .form-row>.col,
#intro-page.contact .formulaire .form-row>[class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 10px;
}
#intro-page.contact .formulaire form .form-check {
    padding-left: 0;
    margin-top: 7px;
}
#intro-page.contact .formulaire .form-control:not(.cntmg) {
    height: 56px;
}
#intro-page.contact .formulaire .cntcheck label[for="accept"] {
    font-size: 14px;
    line-height: 18px;
    margin-top: 0;
    font-weight: 300;
}
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:not(:checked),
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:not(:checked) + .wpcf7-list-item-label,
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:checked + .wpcf7-list-item-label {
    position: relative;
    padding-left: 39px;
    cursor: pointer;
    display: inline-block;
}
span.wpcf7-list-item{
  margin: 0;
}
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:before,
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:checked + .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #3A4257;
    background: #F5F7FA;
    box-shadow: none;
}
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after {
    opacity: 0;
    transform: scale(0);
}
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:not(:checked) + .wpcf7-list-item-label::after,
#intro-page.contact .formulaire .cntcheck [type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: "✔";
    position: absolute;
    top: 5px;
    left: 12px;
    font-weight: 700;
    font-size: 17px;
    color: #94c6ec;
    transition: all 0.2s ease 0s;
}
#intro-page.contact .formulaire .btn,#intro-page.contact .formulaire a.btn,
#gdrf-form #gdrf-submit-button{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: .8px;
    color: #1d1d1b !important;
    background: #F5F7FA;
    padding: 13px 34px;
    border-radius: 0;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
}
#intro-page.contact .formulaire .btn:hover,
#gdrf-form #gdrf-submit-button:hover{
  color: #fff !important;
  background: #1d1d1b;
}
#gdrf-form #gdrf-submit-button{
	border: none;
	padding: 10px 25px;
}
#gdrf-form label{ display: inline-block; margin-left: 15px; }
#gdrf_data_email, #gdrf_data_human{
	background-color: #F5F7FA;
	border: none;
	border-radius: 7px;
    display: block;
    height: 35px;
    padding: 10px 20px;
    width: 300px;
}
#gdrf-form .gdrf-field.gdrf-field-action{ margin-bottom: 15px; }
#intro-page.contact .formulaire label{
  font-weight: bold;
}
#maps{
  background: url(../images/fond-filigrane.svg) no-repeat center;
  background-size: cover;
}
#maps .titre{
  text-align: center;
  font-family: 'Bitter';
  font-size: 25px;
  color: #94c6ec;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#maps p{
  text-align: center;
  font-size: 20px;
}
.mobile{
  display: none !important;
}
header .navigation .navbar-nav .dropdown-menu .nav-item::after{
  content: none !important;
}
header .navigation .navbar-nav .dropdown-menu .nav-item{
  margin: 0 !important;
}
#materiaux .materiaux-liste .full-colonne{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.single .box-img{
  width: 100%;
  height: 40vh;
  margin-bottom: 3rem;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: top center !important;
}
.single #intro-page h1 {
  margin-bottom: 50px;
}
.page-template-default #intro-page {
  /* min-height: 500px; */
  min-height: 350px;
}
.page-template-tpl-flexible #intro-page {
  min-height: auto;
}
.page-template-default h1{
  margin-bottom: 30px !important;
}
.page-template-default h2,
.post-template-default #intro-page h2{
  font-family: 'Bitter';
  font-size: 34px;
  text-transform: initial;
  margin-bottom: 10px !important;
  line-height: 40px;
}
.page-template-default h3,.page-template-default h4{
  font-family: 'Bitter';
  font-size: 25px;
  text-transform: initial;
  margin-bottom: 10px;
  line-height: 30px;
}
.page-template-default p{
  margin-bottom: 15px;
}
.single-post p{
  margin-bottom: 1.3rem !important;
}
#to_top_scrollup{
  display: none !important;
}
#primaryNav li li a {
  background-color: #bfccd9;
  border-color: #bfccd9;
}
#primaryNav li li a:hover {
  border-color: #abc0d5;
  background-color: #abc0d5;
}
.file-input {
  display: inline-block;
  text-align: left;
  background: #fff;
  padding: 16px;
  width: 450px;
  position: relative;
  border-radius: 3px;
}
.file-input [type='file'] {
  position: absolute;
  top: -9px;
  left: 0;
  width: 95px;
  height: 35px;
  opacity: 0;
  z-index: 10;
}
.file-input .button {
  display: inline-block;
  cursor: pointer;
  background: #f5f7fa;
  padding: 8px 16px;
  border-radius: 0;
  margin-right: 8px;
  transition: all .5s ease-in-out;
}
.file-input:hover .button {
  background: #50a4e4;
  color: #fff;
}
.file-input .label {
  color: #333;
  white-space: nowrap;
  opacity: .3;
}
.file-input label{
  display: block;
  margin-bottom: 10px;
}
.file-input br{
  display: none !important;
}
#map-canvas{
  height: 500px;
  width: 100%;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #1d1d1b;
  border-top: none;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton{
  color: #fff !important;
  background: #50a4e4;
  transition: all .5s ease-in-out;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover{
  color: #fff !important;
  background: #94c6ec !important;
}
#primaryNav li a{
  background: #94c6ec !important;
  border: none !important;
  box-shadow: none !important;
}
#primaryNav li li a {
  background-color: #bfccd9 !important;
}
.page-template-default #intro-page li,#intro-page .box-content li{
  list-style: disc;
}
.page-template-default #intro-page #primaryNav li{ list-style: none; }
#intro-page .box-content p{
  margin-bottom: 1rem;
}
#intro-page .box-content h3,#intro-page .box-content h4{
  font-family: 'Bitter';
  font-size: 18px;
  text-transform: initial;
  margin-bottom: 10px;
  line-height: 30px;
}
#intro-page .box-content h2{
  font-family: 'Bitter';
  font-size: 22px;
  text-transform: uppercase;
  color: #1d1d1b;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 30px;
}
img {
	height: auto;
	max-width: 100%;
}
img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}
img.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

#intro-page ul.lien-speciaux li {
  border: 1px solid #94c6ec;
  color:white;
  background-color: #94c6ec;
  width: 200px;
  text-align: center;
  /* padding: 10px; */
  list-style: none;
  float: left;
  margin-right: 20px;
}
#intro-page ul.lien-speciaux li:hover {
  border: 1px solid #94c6ec;
  color: #94c6ec;
  background-color: white;
  width: 200px;
  text-align: center;
  /* padding: 10px; */
  list-style: none;
  float: left;
  margin-right: 20px;
}

#intro-page ul.lien-speciaux li:not(:has(a)){ padding: 10px; }
#intro-page ul.lien-speciaux li a{
  color:white;
  display: block;
  padding: 10px;
}
#intro-page ul.lien-speciaux li:hover a{
  color: #94c6ec;
}
#intro-page ul.lien-speciaux li::marker {
  border: 1px solid #94c6ec;
  width: 200px;
  text-align: center;
  padding: 10px;
  float: left;
  margin-left: 20px;
}
#intro-page ul.lien-speciaux {
  list-style: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
.grecaptcha-badge{ 
  z-index: 100 !important;
}
.navigation .navbar-expand-xl .navbar-toggler div:not(#nav-icon1){color:#1d1d1b!important;}

#map-canvas div[style*="pointer-events: none;"]{opacity:0!important;}