*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;	
	transition: all .3s ease;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  line-height: 1.5;
  font-size: 15px;
  font-family: "Arial", sans-serif;
  color: #54595f;
  overflow-x: hidden;
}
main.contenu p {
  text-align: justify;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: normal;
  font-family: "Arial", sans-serif;
  color: #000000;
  margin: 0 0 30px;
  text-align: left;
}
h1, .h1 {
  font-size: 2.5rem;   /* 40px */ 
}

h2, .h2 {
  font-size: 2rem;     /* 32px */ 
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 500;
}
h4, .h4 {
  font-size: 1.5rem;   /* 24px */ 
}

h5, .h5 {
  font-size: 1.25rem;  /* 20px */ 
}

h6, .h6 {
  font-size: 1rem;     /* 16px */ 
}

.Mobile h1,
.Mobile .h1 {
  font-size: 30px;
}
.Mobile h2,
.Mobile .h2 {
  font-size: 26px;
}
.Mobile h3,
.Mobile .h3 {
  font-size: 22px;
}

.Contenu h2,
.Contenu h3,
.Contenu h4{
  margin: 0 0 30px;
}
a, input[type="submit"], input[type='submit'], button {
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

input,
button,
textarea {
  outline: none;
}

textarea {
  font-family: inherit;
  max-width: 100%;
}

section{
  padding: 100px 0;
}
.Mobile section{
  padding: 50px 0!important;
}

/* Slider */
.slick-slider
{
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
  display: table;

  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.icon{
  position: relative;
  padding: 12px;
}
.icon:before {
  content: "";    
  background-repeat: no-repeat!important;
  background-size: contain!important;
  background-position: center!important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-phone:before {
  background: url(../images/img/icon-fixe-mob.png);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before {
  background: url(../images/img/icon-locali.png);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.png);
}
.icon-clock-o:before, .hor:before {
  background: url(../images/img/icon-hor.png);
}
.icon-devis:before {
  background: url(../images/img/icon-devis.png);
}
.icon-fleche:before {
  background: url(../images/img/arrow-up-right-long.png);
}
.icon-check-bouclier:before {
  background: url(../images/img/icon-check-bouclier.png);
}
.container-fluid {
  width: 100%;
  margin: auto;
  padding: 0 50px;
}
.Mobile .container-fluid {
  padding: 0 20px;
}
.container{
  padding: 0 20px;
  width: 100%;
  margin: auto;
  max-width: 1320px;
  display: block;
}
.Tablet .container {
  max-width: 720px ;
}
.Mobile .container {
  max-width: 100% ;
}

.align-items_center{
  align-items: center;
}
.grid-col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);  
}
.grid-col-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
} 
.grid-col-5{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
} 
.gap-20{
  gap:20px;
}
.gap-30{
  gap:30px;
}
.gap-40{
  gap:40px;
}
.gap-50{
  gap:50px;
}
.gap-100{
  gap:100px;
}
.Tablet .grid-col-2  {
  grid-template-columns: 100%;
  gap: 50px;
}
.Mobile .grid-col-2{
  grid-template-columns: 100%;
  gap: 30px;
}
.top_navigation {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.Tablet .top_navigation, .Mobile .top_navigation {
    display: none;
    padding: 0;
    position: fixed;
    top: 205px;
    width: 100%;
    left: 0;
    max-height: 350px;
    overflow: scroll;
}
.Tablet .top_navigation  { 
  top: 141px; 
}
ul.nav-list {
  display: flex;
  /*align-items: flex-start;*/
}
.Tablet ul.nav-list,
.Mobile ul.nav-list {
  display: flex ;
  flex-direction: column;
}
li.nav-item {
  list-style: none;
  /* padding: 5px; */
  text-align: center;
  width: 100%;
}
.nav-mobile {
    cursor: pointer;
    background: #171717 url(../images/nav.svg) no-repeat 85% center;
    background-size: auto;
    background-size: 18px;
    height: 50px;
    width: 85px;
    padding-left: 9px;
    line-height: 50px;
    color: white;
    position: relative;
    z-index: 999;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-align: initial;
}

ul.nav-submenu {
  display: block;
  flex-direction: column;
  width: 400px;
  position: absolute;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
}
.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
  display: none; 
  width: 100%;
  position: relative;
  transform: none; 
}
li.nav-item:hover ul.nav-submenu { 
  transform: scaleY(1);
}
li.nav-item.active > a,
li.nav-item > a:hover {
  color: #ff7a7a;
}
li.nav-item{
  position: relative;
}
li.nav-item::before {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #171717;
  transform-origin: right center;
  transform: scale(0,1);
  transition: transform .3s cubic-bezier(.37,.31,.2,.85);
}
li.nav-item:hover:before {
  transform-origin:left center; 
  transform:scale(1,1)
}

.top-pub {
  color: #fff;
}




.Tablet li.nav-item.active > a,
.Mobile li.nav-item.active > a {
  color: #000;
}
.Tablet li.nav-item, .Mobile li.nav-item {
  background: #e3e8ed;
  width: 100%;
}

.Tablet .nav-item.active, .Mobile .nav-item.active {
  background: #f00;
}
li.nav-item a {
    padding: 20px 2px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.Tablet li.nav-item a, .Mobile li.nav-item a {
  padding: 12px;
  width: 100%;
  font-size: 12px;
  color: #000;
}
li.nav-submenu-item {
  list-style: none;
}
li.nav-submenu-item a {
  width: 100%;
  padding: 10px!important;
  display: block;
  color: #000;
  background: #fff;
  border-top: solid 1px #e3e8ed;
}
.Mobile li.nav-submenu-item a,
.Tablet li.nav-submenu-item a {
  text-align: center;
}
li.nav-submenu-item.active a {
    background: #ff0000;
}
.Tablet nav#menu,
.Mobile nav#menu {
  width: 100%;
}
.Desktop span.nav-click{
  display: none;
}
span.nav-click {
  width: 30px;
  height: 30px;
  background: #ffffffe8;
  position: absolute;
  z-index: 900;
  top: 5px;
  right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
span.nav-click i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.Mobile span.nav-click i::before, .Tablet span.nav-click i::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/drop.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1);
}

header.header {
  position: relative;
  z-index: 999;
}
.top_info_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_info {
  background: #171717;
  padding: 10px;
}
.Mobile .top_info,
.Tablet .top_info {
  display: none;
}
.logomenu {
  background: #171717; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
.Tablet .logomenu,
.Mobile .logomenu {
    padding: 5px 20px;
    background: #fff;
}
a.logo {
    display: flex;
}
.topLogo a.logo img {
  width: 150px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border-radius: 3px;
}
.btn-slider {
    display: flex;
    gap: 20px;
    margin: 30px 0 0;
    flex-wrap: wrap;
}

.btn {
  padding: 12px 32px;
  color: #000000;
  background: #ff0000;
  border-radius: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: .5s;
  border: 2px solid #ff0000;
  width: max-content;
  font-size: 16px;
  font-weight: 600;
}
.btn:hover { 
  color: #fff; 
}
.btn:before {
 position: absolute;
 content: "";
 z-index: -1;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 border-radius: 0px;
 background: #171717;
 transform: scale(0);
 transition: .5s;
}
.btn:hover:before {
 transform: scale(1);
}
.btn.style-2 {
  border: none;
  border-radius: 5px; 
}
.btn.style-2:before,
.btn.style-2:after{
	border-radius: 5px;
}
.homeslider {
  background: #edf2fa;
  width: 100%;
  position: relative;
  height: 800px;
  display: block;
  overflow: hidden;
}
.imgFull {
    width: 100%;
    height: 800px;
    display: block;
    background-color: #c3c3c3;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
}
.Tablet .homeslider, 
.Tablet .imgFull,
.Mobile .homeslider, 
.Mobile .imgFull {
    height: 500px;
}
.Desktop.ville .title-slider::first-line, .title-slider {
  font-size: 48px;
  color: #fff;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  margin: 30px 0;
  text-shadow: 0 0 8px #333;
}
.Desktop.ville .title-slider {
  line-height: normal;
  font-size: 42px;
  color: #ffffff;
  font-weight: 500;
  /* margin: 0; */
  font-style: italic;
  text-transform: none;
}

.Mobile .title-slider {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
}

.subtitle {
    margin: 0 0 22px;
    font-size: 18px;
    text-transform: capitalize;
    color: #000000;
    font-weight: 700;
    padding: 0 0 0 50px;
    width: auto;
    position: relative;
}
.subtitle:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0;
  top: 4px;
  background: #ff0000;
  z-index: 2;
}
.subtitle:after {
  position: absolute;
  content: "";
  width: 38px;
  height: 2px;
  left: 0;
  top: 14px;
  background: #ff0000;
  z-index: 2;
}
.caption {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block_under_slider_contenu {
  background: #fff;
  padding: 40px;
  display: flex;
  font-weight: 600;
  margin-top: -100px;
  z-index: 9;
  gap: 20px;
}
.Mobile .block_under_slider_contenu { 
    flex-wrap: wrap;
    gap: 15px;
}

.svg-slide svg {
  display: block;
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 360px;
  height: 300px; 
}
.Tablet .svg-slide svg,
.Mobile .svg-slide svg{
  display: none;
}
.svg-slide .svg2 svg {
  bottom: 0;
  right: 22%;
}


footer {
  background-color: #333;
  background-blend-mode: multiply;
  color: #fff;
}
.footer_info {
  padding: 100px 0;
}
.Mobile .footer_info {
    padding: 50px 0;
}
.footer-title {
  position: relative;
  color: #FFFFFF; 
  font-size: 26px;
  font-weight: 700;
  margin: 0px 0px 28px 0px;
}
.footer-title:before {
  position: absolute;
  content: "";
  bottom: -11px;
  left: 0;
  height: 3px;
  width: 75px;
  z-index: 1; 
  background-image: url(../images/img/construction-footer-title-border.png);
  background-repeat: no-repeat;
}
.Tablet .footer_info .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
}
.Mobile .footer_info .grid-col-4 {
    grid-template-columns: 100%;
}
ul.services li {
  list-style: none;
}
ul.services li a {
  color: #fff;
  font-size: 12px;
  line-height: 2.5;
}
input#mail,
input#mail2{
  display: none;
}

footer .informations > div {
  margin: 30px 0 0;  
}
footer .informations > div a, footer .informations > div p {
    display: flex;
    gap: 10px;
    color: #fff;
}
.input-form {
  width: 100%;
  padding: 15px;
  margin: 20px 0 5px;
  border: none;
  color: #000;
}
 .input-form:placeholder {  
  color: #333;
}
.footer-logo img {
  width: 300px;
  height: 148px;
  background: #fff;
  border-radius: 5px;
}
.text-agence p {
  margin: 20px 0 0;
  font-size: 12px;
}
.copyright {
  background: #66666675;
  padding: 20px 0;
}
.copyright_flex {
  display: flex  ;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Mobile .copyright_flex {     
    gap: 20px;
    justify-content: center;
}
.animate-line {
  padding: 10px 0;
  position: relative;
}
.animate-line hr { 
  position: relative;
} 
.animate-line:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  z-index: 5;
  background: #ff0000;
  top: 50%;
  transform: translateY(-50%);
  animation: left-to-right 18s linear infinite!important;
}

@keyframes left-to-right {
  0% {
    left: -30px;
  }
  100% {
    left: 100%;
  }
}

section.S1 {
  background-image: url(../images/img/s1-bg.webp);
  background-size: cover;
  background-position: bottom center;
}

section.S1 .grid-col-2 {
  margin: 50px 0 0;
}
.titre-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 30px;
    flex-wrap: wrap;
}
.titre h1, .titre { 
  width: 75%;
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  font-family: "Arial", sans-serif;
  color: #000000; 
  text-align: left;
}
.titre h1{
  margin: 0;
}
.titre{
  margin: 0 0 30px;
}
.Tablet .titre h1, 
.Tablet .titre { 
  font-size: 38px; 
}
.Mobile .titre h1, .Mobile .titre {
    width: 100%;
    font-size: 30px;
    text-align: center;
    display: block;
}
.Mobile .titre-flex .btn_left {
    justify-content: center;
    display: flex;
    width: 100%;
}
.Mobile.titre {   
    margin: 0 0 20px; 
    text-align: center;
}
.S1-left-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0 0;
}
.Mobile .S1-left-content {
    grid-template-columns: 100%;
}
.S1-left-engagement span {
  display: block;
  line-height: 2.5;
  padding-left: 25px;
  position: relative;
  font-weight: 600;
  color: #000;
}
.S1-left-engagement span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/img/choose-icon.png);
  width: 20px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.S1-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #eee;
}
.Mobile .S1-img1 img { 
    height: 250px; 
}
.S1-right img { 
  height: 590px;
  width: 100%;
  position: relative;
  object-fit: cover;
  display: block;
  background: #eee;
}
 
.S1-right > div {
  position: relative;
  height: 590px;
  max-width: 616px;
}
.Tablet .S1-right img ,
.Tablet .S1-right > div { 
    height: 400px; 
}
.Mobile .S1-right img ,
.Mobile .S1-right > div { 
    height: 350px; 
}
.experience {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/img/about-img-shape.png);
  background-repeat: no-repeat;
  height: 175px;
  width: 235px;
  padding: 40px 0 0 40px;
  text-align: center;
}
.experience span {
  color: #fff;
  font-size: 20px;
}
.experience span strong {
  display: block;
  font-size: 50px;
}

.forme-right-bottom {
  display: flex;
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: -3px;
  right: -3px;
}
.forme-right-bottom svg {
  width: 157px;
  height: 150px;
}
.titre .h2 {
  margin: 0;
  width: 75%;
  font-size: 60px;
}
hr {
  margin: 30px 0;
}
.signature {
  font-size: 20px;
  font-family: cursive;
  color: #000;
}

section.s-categorie {
  background-image: url(../images/img/service-bg.webp);
  background-size: cover;
  background-position: center;
}
section.s-categorie p {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}
.Mobile section.s-categorie p {
    font-size: 16px; 
}
.services-item {
  position: relative; 
  margin: 0 20px;
  box-shadow: 0 0 10px #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.Desktop .services-item { 
    min-width: 380px;
}
.cat-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  background: #eee;
}
.cat-icon {
  position: absolute;
  top: 230px;
  right: 40px;
  width: 75px;
  height: 75px; 
  background: #ff0000; 
  display: flex;
  z-index: 1;
  border-radius: 4px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.cat-txt {
  padding: 40px;
  position: relative;
}
.cat-txt::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 76%;
  height: 5px;
  background: #ff0000;
  transition: .5s;
  z-index: -1;
}
.cat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.services-item:hover .cat-icon img {  
  animation: scale-cat .5s;
}
@keyframes scale-cat {
  50% {
    transform: scaleX(-1);
    filter: brightness(0) invert(1);
  }
  0%, 100% {
   transform: scaleX(1);
   filter: brightness(1) invert(0);
 }
}

.cat-txt a {
  font-size: 18px;
  font-weight: 600;
}
.services-liste {
  margin: 50px 0 0;
  display: flex;
}
section.S2 {
  background: #F5F6F8;
}
section.S2 .grid-col-2 {
  margin: 50px 0 0;
}
.s2-item {
  padding: 40px;
  background: #fff;
  border-bottom: 3px solid #ff0000;
}
.Mobile .s2-item {
    padding: 20px; 
}
.s2-item > span {
  background: #f5f6f8;
  width: 80px;
  height: 80px;
  display: flex;
  margin: 0 0 30px;
  align-items: center;
  justify-content: center;
}
.s2-item > span img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.s2-img {
  margin: 30px 0 0;
}
.s2-img img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  background: #ddd;
}
.btn-content {
  margin: 30px 0 0;
}
.bar-statistique {
  width: 100%;
  height: 6px;
  background: #333;
  border-radius: 2px;
  position: relative;
}
.statistique-item {
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}
.s3-txt {
  padding: 50px;
}
.bar-statistique::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #ff0000;
  width: 100%;
  height: 100%;
  border-radius: 2px; 
}
.bar-statistique.w-80:before{  
  width: 80%;
}

.bar-statistique.w-90::before{ 
  width: 90%;
}
.s3-img {
  background-color: #ddd;
  background-size: cover;
  position: relative;
}
.Mobile .s3-img {
    height: 350px;
}
.s3-txt {
  padding: 100px;
}
.Mobile .s3-txt {
    padding: 20px;
}
.btn-appel {
  width: 120px;
  height: 120px;
  background-color: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
}
.btn-appel span {
  width: 63px;
  height: 63px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(255 255 255 / 80%);
  }

  100% {
    box-shadow: 0 0 0 30px rgb(255 255 255 / 0%);
  }
}

.counter {
  padding: 50px 0;
}
.counter-item > div {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 20px 0;
}
.counter-item > div > div {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
}
.counter-item p {
  text-align: center !important;
  margin: 15px 0 0;
}
.counter-item {
  background: url(../images/img/counter_shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  flex-direction: column; 
  padding: 15px;
}
.counter-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0; 
  box-shadow: inset 0 0 0 15px #ff0000; 
  height: 100%;
  width: 100%;
  transition: .5s;
  opacity: 0.5; 
}
.counter-item:after {
  position: absolute;
  content: "";
  right: -84%;
  background: url(../images/img/feature_shape.png);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  bottom: -75%;
  opacity: 0;
  transition: .5s;
}
.counter-item:hover:before,
.counter-item:hover:after {
  opacity: 1;
}
.counter .grid-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.Tablet .counter .grid-col-4{
  grid-template-columns: repeat(2, 1fr);
}
.Mobile .counter .grid-col-4{
  grid-template-columns: 100%;
}
.Mobile .s4-img img {
    height: 200px;
    width: 200px;
    display: block;
    background: #ddd;
}


section.s5 {
  background: #F5F6F8;
}
section.s5 .grid-col-2 {
    align-items: center;
}
.s5-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: #ddd;
  display: block;
  border-bottom: solid 5px #ff0000;
}
.Mobile .s5-img img { 
    height: 250px; 
}
.pub-s5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
}
.Mobile .pub-s5{
  grid-template-columns: 100%;
}

.pub-s5-item {
  background: #fff;
  padding: 20px;
  display: flex;
  text-align: left;
  gap: 20px;
  align-items: center;
  box-shadow: 0 0 8px #ddd;
}

.pub-s5-item p {
  font-size: 14px;
  text-align: start !important;
  font-weight: 600;
  color: #000;
}
section.s6 {
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #1f1f1f;
}
section.s6 {
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #1f1f1f;
  color: #fff;
}
section.s6 h2,
section.s6 h3,
section.s6 p{
  color: #fff;
}
section.s7 {
  background: #f5f6f8;
}
.s7-texte-card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 8px #ddd;
  position: relative;
}
.s7-texte-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 10px;
    width: 50%;
    transition: .5s;
    z-index: 1;
    background: #ff0000;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
.s7-texte-card::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 10px;
    width: 50%;
    transition: .5s;
    z-index: 1;
    background: #171717;
    border-radius: 0;
    clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
}
.icon-couvreur {
  height: 78px;
  width: 78px;
  line-height: 106px;
  display: inline-block;
  background: #fe0000;
  border-radius: 50%;
  display: flex;
  margin: 0 0 30px;
  align-items: center;
  justify-content: center;
}
.icon-couvreur img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.Mobile section.s7 .grid-col-3,
.Tablet section.s7 .grid-col-3 {
    grid-template-columns: 100%;
}

body.prestations section.s5{
  background: #fff;
}
.bg-color,
section.s5.bg-color,
body.prestations section.s5.bg-color{
 background: #333;
 color: #fff;
} 
.bg-color h2,
.bg-color h3,
.bg-color p{
  color: #fff
}
.bg-color .subtitle,
.caption-text .subtitle {
    color: #fff;
}

.top_contact_mobile {
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 10px;
    padding: 5px 0;
}
.top_contact_mobile a {
    background: #171717;
    padding: 12px;
    border-radius: 900px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
.s4-img {
    position: relative;
}
.s4-img-1 img {
    position: relative;
    width: 450px;
    height: 550px;
    object-fit: cover;
    background: #ddd;
    display: block;
    border-radius: 5px;
    margin-bottom: 50px;
}
.s4-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;  
}
.s4-img-2 img {
    width: 250px;
    height: 350px;
    background: #333333;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    box-shadow: inset 0 0 0 5px #333333;
    padding: 5px;
}
.s7-texte-card .icon-couvreur img {
    filter: brightness(0) invert(1);
}

.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.titre-album {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}


div#realisations .container-box .row {
    display: flex;
    flex-wrap: wrap;
}
div#realisations .container-box .row > div {
  width: 25%;
  flex:0 0 25%;
  padding: 0 5px;
}
.Tablet div#realisations .container-box .row > div {
  width: 50%;
  flex:0 0 50%;
  padding: 0 5px;
}
.Mobile div#realisations .container-box .row > div {
  width: 100%;
  flex:0 0 100%;
  padding: 0 5px;
}

/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
    margin: 30px 0 15px;
}


.devis-block-content {
    padding: 100px; 
}
.Mobile .devis-block-content {
    padding: 20px; 
}
textarea.input-form {
    width: 100%;
    min-width: 100%;
    min-height: 150px;
}
.block_formulaire .input-form {
    margin: 10px 0 0 0 !important;
}
.titre-devis {
    font-size: 32px;
    font-weight: 900;
}



div#Map {
    width: 100%;
    height: 100%;
    position: relative;
}
.Mobile div#Map {
    width: 100%;
    height: 250px;
    position: relative;
}
.icon-contact {
    width: 100px;
    height: 100px;    
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}
.contact-item {
    background: #F5F6F8;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-txt b {
    margin: 20px 0 0;
    display: block;
    text-align: center;
    color: #000;
}
.contact-txt p {
    text-align: center !important;
    margin: 15px 0 0;
}
.contact-formulaire {
    background: #333;
    padding: 50px;
    width: 100%;
    max-width: 70%;
    border-top: solid 5px #ff0000;
    margin: 50px auto 0;
}
.contact-item:hover .icon-contact {
    background: #ff0000;
}
.contact-item:hover .icon-contact .icon:before {
  filter: brightness(0) invert(1);
}
.text-agence a {
    color: #ff8e8e;
}
.copyright a {
    color: #fff;
}
.contact-formulaire .h2,
.contact-formulaire p{
  color: #fff;
}
.Mobile .contact-content .grid-col-3 {
    grid-template-columns: 100%;
}
.Mobile .contact-formulaire .grid-col-2 ,
.Tablet .contact-formulaire .grid-col-2{
  gap: 0;
}
.Mobile .contact-formulaire {
  max-width: 100%;
  padding: 20px;
}
.Tablet .contact-formulaire {
  max-width: 100%; 
}
.contact-formulaire .input-form {
    margin: 10px 0 0;
}
.copyright_flex span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.copyright_flex span a{
  display: flex;
}
div#Map.map_contact {
    width: 100%;
    height: 350px !important;
    display: block;
}

/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.blog_pageIntrouvable {
    background: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
  left: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #fff;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #fff;
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #ff0000;
    font-weight: 600;
    text-align: center;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}
.blog_pageIntrouvable a {
    color:  #ff0000;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
.Mobile .blog_pageIntrouvable {
    font-size: 14px;
  }
  .Mobile .blog_pageIntrouvable a {
      display: block;
  }
  .Mobile .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .Mobile .blog_pageIntrouvable h1 {
    font-size: 100px;
  }

  /*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

div#Messages {
    text-align: center;
    background-color: #ff0000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #000;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}