*,
*::before,
*::after{
	padding: 0;
	margin: 0;
	box-sizing: border-box; 
  transition: all 0.3s ease;
}
a{
	text-decoration: none;
	color: inherit;
  cursor: pointer;
}

body {
    line-height: 1.5;
    font-size: 15px;
    font-family: "Arial", sans-serif;
    color: #505659;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    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: #333;
  margin: 0 0 15px;
  text-align: left;
}
h1, .h1 {
    font-size: 32px;
}
h2, .h2 {
  font-size: 28px; 
}

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

h4, .h4 {
  font-size: 20px; 
}

h5, .h5 {
  font-size: 18px;  
}

h6, .h6 {
  font-size: 16px;  
}

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


section {
  padding: 100px 0;
  position: relative;
}
.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.webp);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.webp);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.webp);
}
.icon-location:before {
  background: url(../images/img/icon-locali.webp);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.webp);
}
.icon-clock-o:before{
  background: url(../images/img/icon-hor.webp);
}
.icon-devis:before {
  background: url(../images/img/icon-devis.webp);
}
.icon-fleche:before {
  background: url(../images/img/arrow-up-right-long.webp);
}
.icon-check-bouclier:before {
  background: url(../images/img/icon-check-bouclier.webp);
}
.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% ;
}

.grid-col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);  
}
.grid-col-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.Mobile .grid-col-3{
  grid-template-columns: 100%;
}
.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;
}



header {
  position: relative;
  width: 100%;
  z-index: 999;
}
.Mobile header,
.Tablet header {
    position: fixed;
    background: #fff;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
}
.navbar {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
}
.Mobile .navbar,
.Tablet .navbar {
    position: relative;
    top: 0;
}
.logomenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px;
  padding: 20px;
  border-radius: 16px;
  gap: 50px;
}
.Tablet .logomenu,
.Mobile .logomenu {
    gap: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}
.logo {
  display: flex;
}
.logo img {
  width: 200px;
  height: 131px;
  object-fit: contain;  
}
.Tablet .logo img,
.Mobile .logo img {
    height: 100px;
    width: 130px;
}
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: #424546 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: max-content;
  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: block; 
  width: 100%;
  position: relative;
  transform: none; 
}
li.nav-item:hover ul.nav-submenu { 
  transform: scaleY(1);
}
li.nav-item.active > a {
    color: #c2303b;
}
li.nav-item{
  position: relative;
}
li.nav-item:before {
  content:'';
  height:4px;
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background-color:#424546;
  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)
}






 
.Tablet li.nav-item, .Mobile li.nav-item {
  background: #e3e8ed;
  width: 100%;
}

.Tablet .nav-item.active, .Mobile .nav-item.active {
    background: #424546;
}

li.nav-item a {
  padding: 20px 5px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.Tablet li.nav-item a, .Mobile li.nav-item a {
  padding: 12px;
  width: 100%;
  font-size: 12px;
  color: #000;
}
.Tablet .nav-item.active > a, .Mobile .nav-item.active > a {
  color: #fff;
}
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: #424546;
    color: #fff;
}
.Tablet nav#menu, .Mobile nav#menu {
    display: none;
    width: 100%;
    position: fixed;
    top: 192px;
    left: 0;
    z-index: 999;
    max-height: 400px;
    overflow: scroll;
}
.Tablet nav#menu{
  top: 149px;
}
.top_contact_mobile {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    background: #47673d;
    padding: 5px 0;
}
.top_contact_mobile a {
    background: #c2303b;
    color: #fff;
    padding: 8px;
    display: block;
    width: fit-content;
    font-weight: 600;
    border-radius: 900px;
}
.top_contact_mobile .icon:before {
    filter: invert(1);
}



.homeslider {
  position: relative;
  height: 900px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.homeslider:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #424546;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: unset;
    opacity: 0.5;
    filter: brightness(0.5);
}
.imgFull {
    width: 100%;
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
}
.Mobile .homeslider,
.Mobile .imgFull ,
.Tablet .homeslider,
.Tablet .imgFull {
    height: 700px;
}
.caption {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
}
.caption-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}
.subtitle {
    background: #fff;
    padding: 10px 25px;
    border-radius: 16px;
    font-size: 16px;
    color: #424546;
    font-weight: 600;
    width: fit-content;
} 
.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 62px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 30px 0;
    line-height: normal;
}
.Desktop.ville .title-slider {
  line-height: normal;
  font-size: 48px;
  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;
}
.Tablet .title-slider {
  font-size: 32px; 
}

.devis-slider {
  width: 100%;
  max-width: 430px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
}
.Devisgratuit .form-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  max-width: 100%;
  min-width: 100%;
  background: #e9e9ef;
  margin: 0 0 10px;
  font-family: inherit;
  font-size: 18px;
}
textarea.form-input {
  height: 120px;
}
#mail {
  display: none;
}
.btn {
    background: #47673d;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.btn:hover {
    background: #3479bb; 
}
.Devisgratuit .h3 {
  color: #424546;
  margin: 0 0 10px; 
}
.Mobile .Devisgratuit .h3 ,
.Tablet .Devisgratuit .h3 {
    color: #ffffff;
    margin: 0 0 10px;
}
.btn-slider {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.btn-white {
  background: #ffff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  color: #424546;
  position: relative;
  display: block;
  width: fit-content;
}
.btn-white:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #424546;
  position: absolute;
  left: 0;
  top: 0;
  transform: scaleX(0);
  border-radius: 5px;
}

.btn-white:hover{
	color: #fff;
}
.btn-white:hover::before{
	transform: scaleX(1);
}
.btn-white span {
  position: relative;
}

.btn-color {
    width: fit-content;
    background: #47673d;
    padding: 12px 25px;
    border-radius: 16px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: block; 
    cursor: pointer;
}
.btn-color:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #3479bb;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    border-radius: 14px;
}
.btn-color:hover{
	color: #fff;
}
.btn-color:hover::before{
	transform: scaleX(1);
}
.btn-color span {
  position: relative;
}


.twol-tel {
  display: flex;
  align-items: center;
  gap: 15px;
}
.twol-tel span {
  line-height: 0; 
  display: flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.twol-tel a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.btn_top {
  width: max-content;
  flex: 0 0 auto;
}




.block-rs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
} 
.block-rs a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: all .3s ease;
}
.block-rs a:hover img { 
  filter: drop-shadow(1px 1px 3px black);
}
.footer-top {
  padding: 50px 0;
}
.copyright {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #CCD4E0;
}
.footer_title {
    font-size: 24px;
    font-weight: 600;
    color: #47673d;
    margin: 0 0 20px;
}
.footer_contact div,
.footer_liste > div   {
  display: block;
  margin: 0 0 15px;
}
.footer_contact div > p, .footer_contact div > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}



.rea_block {
    width: 100%;
    padding: 25px;
    background: #e9e9ef;
    border-radius: 16px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* avatars container */
.avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* images */
.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  z-index: 1;
}

/* first image tsy mi-offset */
.avatars img:first-child {
  margin-left: 0;
}

/* bouton + */
.add_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c2303b;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid #fff;
    cursor: pointer;
    transition: 0.3s;
}

.add_btn:hover {
  background: #1e4ed8;
  transform: scale(1.1);
}

/* title */
.title {
  margin-top: 15px;
  font-size: 18px;
  color: #444;
}

/* ENGAGEMENT */
.engagement {
  padding: 30px 0; 
  border-bottom: 1px solid #CCD4E0; 
} 

.engagement ul {
  list-style: none;
  padding: 0; 
  margin: 0; 
  column-count: 2;
}
.Mobile .engagement ul{
  column-count: 1;
}
.engagement li {
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
}
.engagement li:before {
    content: "🗸";
    width: 20px;
    height: 20px;
    background: #47673d;
    display: block;
    position: absolute;
    left: 0;
    border-radius: 50%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #fff;
}

/* STATISTIQUE */
.statistique {
  display: flex; 
  padding: 40px 0; 
  gap: 50px;
} 
.Mobile .statistique { 
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.stat span {
    font-size: 60px;
    color: #333333;
}
.stat p {
  font-size: 20px; 
}
main .subtitle {
    background: #e9e9ef;
    margin: 0 0 10px;
    color: #47673d;
}
figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee;
    display: block;
}
.sect1_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.Mobile .sect1_img {
    grid-template-columns: 100%;
}
.sect1_img figure {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
.sect1_img > div {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

.about1-shape{
  position: absolute;
  bottom: 0px;
  right: 0px; 
  display: block;
  width: fit-content;
}
.about1-shape-img {
  width: fit-content;
}


.aniamtion-key-2 { 
  animation-name: animation-2;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes animation-2 {
  0% {

    transform:translateX(0) ;
  }

  100% {

    transform: translateX(50px);
  }
}

img.about3_shape {
  width: 164px;
  height: 214px;
  object-fit: contain;
}
.Mobile img.about3_shape {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.cat-item { 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #DCDDDE;
    border-radius: 16px;
}
 
.cat-image {
    position: relative;
    height: 340px; 
    width: 100%;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.cat-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff; 
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
 
.cat-content {
    padding: 30px 20px; 
}
.cat-content a {
    color: #47673d;
    font-size: 18px;
    font-weight: 600;
}
.Mobile .cat-content a { 
    font-size: 15px; 
}
 
.Desktop .categorie_liste {
    display: flex;
    overflow: hidden; 
}
.Desktop .cat-item {
    min-width: 320px;
    margin: 0 10px;
}
.Tablet .cat-item { 
    margin: 0 10px;
}
.categorie_flex {
    margin: 0 0 50px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    color: #fff;
}
.Mobile .categorie_flex { 
    flex-wrap: wrap;
}
section.categorie {
    background: linear-gradient(180deg, #47673d 50%, #fff 50%);
}
section.categorie .h2 {
    color: #fff;
    font-size: 52px;
}
.Mobile section.categorie .h2 { 
    font-size: 30px;
}
.cat-item:hover .cat-icon,
.cat-item.active .cat-icon {
    background: #424546;
}
.cat-item:hover .cat-icon img,
.cat-item.active .cat-icon img{
  filter: brightness(0) invert(1);
}

.work3-shape {
    position: absolute;
    top: 0;
    left: 0;
}
.aniamtion-key-1 {  
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes animation-1 {
    0% {
      
      transform:translateY(0) ;
    }

    100% {
    
      transform: translateY(30px);
    }
  }
  .work3-shape img {
    width: 260px;
    height: 260px; 
    object-fit: contain;
}
.Mobile .work3-shape img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

section.sect2 {
    background: #e9e9ef;
}
section.sect2 .subtitle {
    margin: 0 auto 15px;
    background: #fff;
}
section.sect2 .h1 {
    width: 70%;
    display: block;
    margin: 0 auto 50px;
    text-align: center;
}
.Mobile section.sect2 .h1 {
    width: 100%; 
}
.sect2_txt_item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
}
.Mobile .sect2_txt_item {
    flex-wrap: wrap;
}
.sect2_txt_item picture {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    background: #e9e9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.sect2_txt {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
}
main h3 {
    margin: 30px 0 15px;
}
.sect2_img figure {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.Tablet .sect2_img figure { 
  height: 250px; 
}
.sect2_img {
    display: flex;
    justify-content: end;
    position: relative;
}
 

 .process2-info-logo {
    width: 100px;
    height: 100px;
    background: #47673d;
    border-radius: 8px;
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0 auto;
}
.process2-info-logo .process2-info-logo-num {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    line-height: 101px;
    text-align: center;
    height: 105px;
}
.project2-icon-shape {
    position: absolute;
    bottom: -61px;
    right: 11px;
    transform: rotate(55.61deg);
    background: #fff;
    width: 54px;
    height: 130px;
}
.process2-logo-icon {
    height: 100px;
    width: 100px;
    display: flex;
    z-index: 99;
    position: relative;
    text-align: center;
    line-height: 80px;
    border-radius: 60px;
    top: -60px;
    margin-left: 55px;
    background: #e9e9ef;
    transition: all 0.4s;
    align-items: center;
    justify-content: center;
}
.process2-box-content {
    margin-top: 80px;
    background: #e9e9ef;
    border-radius: 16px;
    padding: 28px 18px;
}
.Desktop .process2-box-content {
    height: calc(100% - 180px);
    max-height: stretch;
}
.process2-logo-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.sect4_img1 figure {
    width: 100%;
    height: 400px;
}
.sect4_img1 figure img {
    mask-image: url(../images/img/mask1.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}
section.sect4 {
    background: #333;
    overflow: hidden;
}
.herohm5-bg-shape img {
    width: 100%;
    height: 600px;
    transform: rotate(20deg);
    object-fit: contain;
}

.aniamtion-key-3 {
    position: relative;
    animation-name: animation-3;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes animation-3 {
    0% {
      
      transform:translateY(0) ;
    }

    100% {
    
      transform: translateY(60px);
    }
  }
  .herohm5-bg-shape {
    position: absolute;
    top: 0;
    right: -8%;
} 
section.sect4 h2,
section.sect4 h3,
section.sect4 p,
section.sect4{
  color: #fff;
}
.btn-content {
    margin: 30px 0 0;
}
 

.cta3-phn-bar {
    z-index: 1;
    text-align: end;
    position: relative;
}
.cta3-phn-bar-shape {
    position: absolute;
    top: -65px;
    right: -94px;
}
.cta3-phn-bar-num {
    display: inline-block;
    position: relative;
}
.cta3-phn-bar-num-shape {
    position: absolute;
    bottom: -44px;
    right: 104px;
}
.space44 {
    height: 44px;
}
.cta3-phn-bar-logo a {
    background: #fff;
    display: inline-flex;
    height: 84px;
    width: 84px;
    text-align: center;
    line-height: 84px;
    border-radius: 100px;
    margin-right: 86px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.bloc_rappel {
    padding: 100px 0;
    background: #47673d;
    overflow: hidden;
}
input#mail2{
  display: none;
}
.bloc_rappel_title {
    color: #fff;
    font-size: 52px;
}
.Mobile .bloc_rappel_title{
  font-size: 30px;
}
.bloc_rappel_txt p {
    font-size: 20px;
    color: #fff;
    margin: 0 0 20px;
}
.Mobile .bloc_rappel_txt p{
  font-size: 16px;
}
form#rappel_immediat {
    display: block;
    align-items: center;
    width: 100%;
    max-width: 400px;
    position: relative;
}
form#rappel_immediat input.form-input {
    padding: 18px;
    width: 100%; 
    border: none;
    outline: none;
    border-radius: 16px;
    font-size: 16px;
}

button.btn-color {
    border: none;
    position: absolute;
    top: 50%;
    right: 5px;
    z-index: 2;
    transform: translateY(-50%);
}
.cta3-phn-bar-num a {
    background: #c2303b;
    padding: 26px 32px;
    display: block;
    line-height: 28px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    border-radius: 12px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.sect5 {
    background: #424546;
    color: #fff;
}
.sect5_item figure {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    margin: 0 0 30px;
}
.sect5_grid1 {
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 20px;
    margin: 0 0 20px;
}
.sect5_grid2 {
    display: grid;
    grid-template-columns:  45% 1fr;
    gap: 20px; 
}
.Mobile .sect5_grid1 ,
.Mobile .sect5_grid2,
.Tablet .sect5_grid1 ,
.Tablet .sect5_grid2 {
    grid-template-columns: 100%;
}
.sect5_item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
}
.sect5_item:hover{
    background: rgba(255, 255, 255, 0.2);
    margin-top: 10px;
}
.sect5_item h2,
.sect5_item h3{
  color: #fff;
}

.sect6_img figure {
    height: 100%;
    width: 100%;
    border-radius: 16px 16px 0 16px;
}
.Tablet .sect6_img figure {
  height: 300px;
}
.Mobile .sect6_img figure{
  border-radius: 16px;
}
.sect6_txt1 {
    padding: 0 0 50px 50px;
} 
.Tablet .sect6_txt1 {
  padding: 0 0 50px 0;
}
.Mobile .sect6_txt1 {
    padding: 0;
    margin: 0 0 30px;
}
.sect6_txt2 {
    padding: 40px;
    background: #e9e9ef;
    border-radius: 0 16px 16px 0;
}
.Tablet .sect6_txt2, .Mobile .sect6_txt2 {
    border-radius: 16px;
    padding: 20px;
}

.sect6_img {
    position: relative;
}
.sect6_img > div {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #c2303b;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 16px 0 0 0;
    width: 100%;
    max-width: 360px;
    z-index: 2;
}
.Mobile .sect6_img > div {
    position: relative;
    margin: 5px 0;
    border-radius: 16px;
}
.sect6_img > div > img {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    flex: 0 0 100px;
    object-fit: contain;
    object-position: center;
    padding: 5px;
    display: flex;
}
.sect6_img > div span {
    color: #ffff;
    font-size: 18px;
}
section.sect6 .grid-col-2 {
    align-items: end;
}

.sect2_txt_item picture img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

div#Map {
    z-index: 0;
    height: 350px;
    width: 100%;
}
.Mobile div#Map{
  height: 250px;
}
section.sect4 .grid-col-2 {
    align-items: center;
}
section.sect3 {
    background-size: cover;
    backdrop-filter: revert;
    background-attachment: fixed;
}
.sect6_icon {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
    opacity: 0.9;
}

.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.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;
}

.Mobile main figure {
    width: 100%;
    height: 250px;
}


.sect2 .btn-content,
.sect3 .btn-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.Tablet .footer-top .grid-col-4{
  grid-template-columns: repeat(2, 1fr);
}
.Mobile .footer-top .grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.Mobile .copyright a {
    display: block;
    margin: 20px 0 0;
}
.Mobile section.sect3 .grid-col-3,
.Tablet section.sect3 .grid-col-3 {
    grid-template-columns: 100%; 
}
.devis_mobile {
    background: #333;
}
#footer .logo img {
  width: 250px;
  height: 192px;
}
.Tablet .bloc_rappel .grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card_contact {
    border: 1px solid #E6EBED;
    border-radius: 8px;
    text-align: center; 
    transition: 0.4s;
    padding: 32px; 
}
.card_contact:hover {
      background: #f0f0fa;
}
.card_contact .h3 {
    text-align: center;
}
.card_contact .icon:before {
    width: 32px;
    height: 32px;
}
.card_contact span {
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 auto 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
}
.card_contact:hover span {  
  background: #424546;
}
.card_contact:hover .icon:before{
  filter: invert(1);
}

.block_contact_bottom {
    position: relative;
    margin: 100px auto 0;
    padding: 100px 0 0;
    max-width: 1600px;
    width: 100%;
}
.devis_formulaire {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 1;
    width: 40%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E6EBED;
}
.Mobile .devis_formulaire {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 20px;
    right: inherit;
}
.Desktop .block_contact_bottom div#Map,
.Tablet .block_contact_bottom div#Map {
    height: 600px;
} 
body.contact section {
    padding-bottom: 0!important;
}
.Mobile .block_contact_bottom {
    margin: 0;
    padding: 50px 0 0;
}
.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;
}

section.categorie a.btn-color {
    background: #c2303b;
}
.footer_liste a:hover,
.footer_contact a:hover {
    color: #c2303b;
}
.cta3-phn-bar-logo svg path {
    fill: #c2303b;
}

.blog_pageIntrouvable {
    background: #fff;
    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: #000;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #47673d;
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #c2303b;
    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: #47673d;
}
.blog_pageIntrouvable a {
    color: #c2303b;
}
.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;
  }
  div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

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

.sect6_icon.aniamtion-key-1 img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.Mobile .sect6_icon.aniamtion-key-1 img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.Desktop .caption-text {
    max-width: 50%;
}