*,
*::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: 16px;
    font-family: "Arial", sans-serif;
    color: #272a2b;
    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;
}

main h3 {
    margin: 30px 0 15px;
}

section {
  padding: 100px 0;
  position: relative;
}
.Mobile section{
  padding: 50px 0;
}

/* 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-phone.png);
}
.icon-mobile:before {
  background: url(../images/img/icon-mobile.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail2.png);
}
.icon-location:before {
  background: url(../images/img/icon-localisation2.png);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse2.png);
}
.icon-clock-o:before{
  background: url(../images/img/icon-horloge2.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: 1140px;
  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;  
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgb(51 51 51 / 90%);
}
.navbar {
    position: relative;
    width: 100%;
    background: #043c17;
}
.Tablet .navbar,
.Mobile .navbar {
    border-radius: 15px;
    background: #fff;
    margin: 0 0 10px;
}
.logomenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; 
    gap: 50px;
    padding: 5px;
}
.Tablet .logomenu,
.Mobile .logomenu {
  gap: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.logo {
  display: flex;
}
.logo img {
    width: 137px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}
.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;
    border-radius: 5px;
}

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: #9cc342;
}
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: 500;
    color: #fff;
}
.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: 229px;
    left: 0;
    z-index: 999;
    max-height: 350px;
    overflow: scroll;
}
.Tablet nav#menu {
  top: 187px;
}
.top_contact_mobile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  background: #9cc342;
  padding: 5px 0;
  border-radius: 15px;
  width: 100%;
}
.top_contact_mobile a {
    background: #043c17;
    color: #fff;
    padding: 8px;
    display: block;
    width: fit-content;
    font-weight: 600;
    border-radius: 900px;
    font-size: 14px;
}
.top_contact_mobile .icon:before {
    filter: brightness(0) invert(1);
}



.homeslider {
  position: relative;
  height: 700px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.homeslider:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/img/before_slider.webp);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: unset;
    /* filter: brightness(0.5); */
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.Mobile .homeslider:before, 
.Tablet .homeslider:before{
  display: none;
}
.imgFull {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #686565;
    background-blend-mode: multiply;
}
.Mobile .homeslider,
.Mobile .imgFull ,
.Tablet .homeslider,
.Tablet .imgFull {
  height: 700px;
}
.caption {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
}
.Tablet .caption,
.Mobile .caption { 
    top: 65%; 
}
.caption-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.subtitle {
    font-size: 16px;
    color: #9cc342;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 62px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 0 0 30px;
      line-height: 1;
}
.Desktop.ville .title-slider {
  line-height: normal;
  font-size: 48px;
  color: #ffffff;
  font-weight: 500;
  /* margin: 0; */
  font-style: italic;
  text-transform: none;
}
.Desktop .caption-text {
    width: 60%; 
}
.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: 18px 25px; 
    border: none;
    max-width: 100%;
    min-width: 100%;
    background: #e9e9ef;
    margin: 0 0 20px;
    font-family: inherit; 
}
textarea.form-input {
    height: 200px;
}
#mail {
  display: none;
}
.btn {
    background: #043c17;
    color: #fff;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 900px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.btn:hover {
  background: #121212; 
}
.Devisgratuit .h3 {
  color: #424546;
  margin: 0 0 10px; 
}


.twol-tel {
  display: flex;
  align-items: center;
  gap: 15px;
}
.twol-tel span {
    line-height: 0;
    display: flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    background: #9cc342;
    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);
} 
.rea_block {
  width: 100%;
  padding: 25px;
  background: #e9e9ef;
  border-radius: 16px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.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: #043c17;
  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: 0;
    font-size: 16px;
    margin: 0 0 10px;
}

.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;
} 
#footer .logo img {
  width: 250px;
  height: 192px;
} 
 
.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;
} 

.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: #043c17;
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #043c17;
    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: #043c17;
}
.blog_pageIntrouvable a {
  color: #043c17;
}
.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;
}
.btn-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}
.underSlider {
    background: #9cc342;
    padding: 20px 0;
}
.underSlider_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  gap: 20px;
}
.Mobile .underSlider_flex {
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.underSlider_flex p { 
    color: #121212;
    font-size: 20px;
}
.underSlider_flex img {
    width: 100px;
    height: 100px; 
    object-fit: contain;
}
.footer-top {
    background: #043c17;
    padding: 100px 0;
    font-size: 14px;
}
.Mobile .footer-top { 
    padding: 50px 0;
}
.footer-top .grid-col-4 {
    gap: 30px;
}
.Tablet .footer-top .grid-col-4 {
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.Mobile .footer-top .grid-col-4 {
    gap: 30px;
    grid-template-columns: 100%;
}
.footer-col > div {
    margin: 0 0 30px;
}
.footer-col > div:last-child {
    margin: 0 ;
}
.footer_title {
    text-transform: uppercase;
    color: #9cc342;
    font-weight: 600;
    margin: 0 0 15px;
}
.footer-col p {
    margin: 0 0 10px;
    color: #fff;
}
.btn_clair {
    background: #9cc342;
    color: #121212;
}
.btn_clair:hover {
    background: #fff;
    color: #121212;
}
.copyright {
    text-align: center;
    padding: 20px;
    background: #9cc342;
    color: #121212;
}
.copyright a {
    font-weight: 600;
}
.footer-top a:hover {
    color: #9cc342;
}

.Mobile .copyright a {
    display: block;
    margin: 15px 0 0;
}
 
 .categorie_liste {
  display: flex;
  overflow: hidden;
 }
 
.cat_item {
    transition: all 0.2s ease;
    padding: 0 5px;
}
.cat_item.active .cat_img span {
    color: #043c17;
    font-weight: 500;
}
.marge0 {
    margin-top: 0;
}
.marge1 {
    margin-top: 40px;
}
.marge2 {
    margin-top: 80px;
}
.Desktop .cat_item{
  min-width: 210px;
}
.cat_title {
    color: #043c17;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}
.Tablet .cat_title ,
.Mobile .cat_title{ 
    font-size: 13px; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat_img {
    position: relative;
}
.cat_img img {
    background: #eee;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cat_img span {
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px;
}
.sect1 {
    background: #9cc342;
}
.sect1_img img {
    width: 100%;
    height: 100%;
    background: #eee;
    display: block;
    object-fit: cover;
}
.btn-content {
    display: flex;
    margin: 30px 0 0;
}
.sect2_img {
    margin-bottom: -40px;
    margin-top: 30px;
}
.sect2_img img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    background: #eee;
} 
.sect2 {
    padding-bottom: 0;
}
.Mobile .sect2 {
    padding-bottom: 20px !important;
}
.sect2_txt {
    padding: 100px 0 100px;
    background-image: url(../images/img/bg-content.webp);
    background-color: #043c17;
    background-blend-mode: multiply;
    color: #fff;
    background-size: cover;
}
.sect2_txt h2,
.sect2_txt h3{
  color: #fff;
} 
.sect3 {
    background: #043c17;
    padding: 0;
    color: #fff;
    display: grid;
    grid-template-columns: 40% 60%;
}
.Mobile section.sect3 {
    grid-template-columns: 100%;
    padding: 0 !important;
}
.sect3 h2,
 .sect3 h3{ 
    color: #fff;
}
.sect3_txt2 {
    margin: 30px 0;
}
.sect3_txt {
    padding: 100px;
}
.sect3_bg {
    background-size: cover;
}
.Tablet .sect3_txt ,
.Mobile .sect3_txt {
    padding: 20px;
}
.sect4_content {
    padding: 100px 0;
    position: relative;
}
.sect4_bg { 
    top: 0;
    right: 0;
    width: 60%;
    z-index: 0;
    height: 100%;
    display: block; 
    background: #eee;
    position: absolute;
    background-size: cover;
}
.sect4_txt {
    background: #9cc342;
    border-radius: 16px;
    padding: 50px;
    position: relative;
}
.Mobile .sect4_txt {
    padding: 20px;
}
.sect4_txt img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 0 20px;
}
.sect5 {
    padding: 0;
}
.sect5_txt {
    padding: 50px;
    background: #043c17;
    color: #fff;
}
.Mobile .sect5_txt {
    padding: 20px;
}
.sect5_txt h2,
.sect5_txt h3{
  color: #fff;
}
.sect5 {
    background-color: #ddd;
    background-blend-mode: multiply;
    background-size: cover;
}
.sect8 {
    background: #043c17 url(../images/img/tree-rings-light.png);
    padding: 50px 0 0;
    background-size: contain; 
}
.Mobile section.sect8 {
    padding-bottom: 0;
}
.sect8_container {
    border: solid 3px #9cc342;
    margin: 0 50px;
    padding: 100px 0;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
}
.Mobile .sect8_container {
    margin: 0 20px;
    padding: 20px 0;
}
.sect8_item {
    background: #fff;
    padding: 30px;
    border: solid 3px #9cc342;
    border-radius: 20px;
}
.sect8_title {
    color: #fff;
    text-align: center;
}

.sect8_title .subtitle {
    margin: 0 auto 15px;
}
.sect8_title  .h2 {
    color: #fff;
    margin: 0 0 50px; 
    text-align: center;
}
.sect8_bottom {
    background: #9cc342; 
}
.sect8_bottom_content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: end;
    position: relative;
} 
.Mobile .sect8_bottom_content {
    flex-direction: column;
    justify-content: right;
    align-items: end;
    gap: 20px;
    padding: 20px 0;
}
.sect8_bottom_content > div {
    width: 50%;
    padding: 50px 0;
    font-size: 22px;
}
.Mobile .sect8_bottom_content > div {
    width: 50%;
    padding: 20px 0 0;
    font-size: 19px;
}
.sect8_bottom_content:before {
    content: "";
    background-image: url(../images/img/tree-logo.png);
    width: 200px;
    height: 220px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.Mobile .sect8_bottom_content:before{
  width: 150px;
}
.devis_texte .h2 {
    font-weight: 500;
    font-size: 42px;
}
.devis_texte .h2 strong {
    background: #9cc342;
    color: #000;
}
.devis_grid {
    display: grid;
    grid-template-columns: 33.33% 1fr;
    width: 100%;
    gap: 50px;
}
.Tablet .devis_grid,
.Mobile .devis_grid {
    grid-template-columns: 100%;
}
form#FormDevis > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
}
.Mobile form#FormDevis > div{
  grid-template-columns: 100%;
  gap: 0;
}
.prestations .sect_devis,
.ville .sect_devis {
    background: #eee;
}
.prestations .Devisgratuit .form-input,
.ville .Devisgratuit .form-input {
    background: #fff;
}
.sect_devis .subtitle {
    color: #043c17;
}
.contact_divers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    margin: 0 0 30px;
}
.Mobile .contact_divers{
  grid-template-columns: 100%;
}
.contact_title {
    font-size: 24px;
    margin: 0 0 15px;
}
.contact_divers p {
    margin: 0 0 15px;
}
.contact_divers > div {
    display: flex;
    align-items: normal;
    justify-content: left;
    gap: 15px;
}
.contact_divers > div > img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
}
.logo-divers {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 30px;
}
.logo-divers img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.Mobile .logo-divers img {
    width: 80px;
    height: 80px; 
}
.sect6_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom left;
} 
.Mobile .sect1_img img,
.Mobile .sect2_img img,
.Mobile .sect3_bg ,
.Mobile .sect6_img img{
    width: 100%;
    height: 250px;
} 
div#Map {
    width: 100%;
    height: 250px;
    z-index: 0;
}

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