*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none!important;
  transition: all 0.3s ease;
}

body {
  line-height: 1.5;
  font-size: 15px;
  font-family: "Arial", sans-serif;
  color: #121212;
  overflow-x: hidden;
}
main.contenu p {
  text-align: justify;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 500;
  line-height: normal;
  font-family: "Arial", sans-serif;
  color: inherit;
  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;  /* 28px */ 
}

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 15px;
}
main h3 {
  margin: 40px 0 15px;
}
a, input[type="submit"],button {
  cursor: pointer;
  text-decoration: none; 
  border: none;
  color: inherit; 
} 

input,
button,
textarea {
  outline: none;
}

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

section{
  padding: 100px 0;
}
.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-fixe.png);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before ,
.icon-adr:before{
  background: url(../images/img/icon-localisation.png);
}
.icon-map:before,
.icon-map-marker:before {
  background: url(../images/img/icon-adresse.png);
}
.icon-clock-o:before, .icon-hor:before {
  background: url(../images/img/icon-horloge-bold.png);
}
.icon-devis:before {
  background: url(../images/img/icon-devis.png);
}
.icon-fleche-up:before {
  background: url(../images/img/icon-arrow-up-right-thin.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% ;
}

.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;
}
.align_items_center{
  align-items: center;
}

header#header {
  position: absolute;
  z-index: 999;
  top: 30px;
  width: 100%;
}
.Tablet header#header,
.Mobile header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  z-index: 999;
} 
ul.nav-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.Tablet ul.nav-list, .Mobile ul.nav-list {
    display: flex;
    flex-direction: column;
    max-height: 350px;
    overflow: scroll;
}
.Desktop nav#menu li:last-child {
  grid-column: span 2;
}
li.nav-item {
  list-style: none;
  /* padding: 5px; */
  text-align: center;
  width: 100%;
}
.nav-mobile {
    cursor: pointer;
    background: #ab0a0c 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: 400px;
  position: absolute;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
  z-index: 9;
}
.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: #a10a0a;
}
li.nav-item{
  position: relative;
} 
li.nav-item:hover:before {
  transform-origin:left center; 
  transform:scale(1,1)
}
.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: #ffcccc;
}
li.nav-item a {
  padding: 20px 5px;
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.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: #fef22e;
}
.Tablet nav#menu,
.Mobile nav#menu {
  width: 100%;
}   
.Tablet .top_navigation, .Mobile .top_navigation {
    position: fixed;
    z-index: 999;
    top: 137px;
    left: 0;
    margin: 0 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 8px #333;
    display: none;
}
.Tablet .top_navigation  { 
  max-width: 680px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
}
.swipebox img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
.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;
}
.mentions h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0;
}

.contact-item svg {
  height: 36px; 
  width: auto;
}
.contact-item svg path{
  fill: #287ff9!important;
}
.contact-list{
  margin: 30px 0 0 ;
}
section.block_contact  .form-input {
  background: #f9f9f8;
}

.contact-item {
  display: flex;
  gap: 15px;
} 
.contact-title {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 15px;
} 
/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.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: #333
}
.blog_pageIntrouvable .h1 {
  font-size: 200px;
  color: #ab0a0c;
  font-weight: 600;
  text-align: center;
}
.Mobile .blog_pageIntrouvable .h1 {
  font-size: 100px; 
}
.blog_pageIntrouvable p {
  font-size: 36px;
  line-height: 100%;
  margin-top: -21px;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: #000000;
}
.blog_pageIntrouvable a {
  color: #ab0a0c;
}
.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;
}


/*=================================================LOGO MENU======================================*/

.logomenu {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 8px #333;
  border-radius: 15px;
}
.Tablet .logomenu ,
.Mobile .logomenu {
    padding: 5px;
    margin: 20px 0 0;
    justify-content: space-between;
}
a.logo img {
  width: 200px;
  height: 109px;
  object-fit: contain;
}
.Tablet a.logo img ,
.Mobile a.logo img {
    width: 150px;
    height: 90px;
    object-fit: contain;
}
.homeslider {
  width: 100%;
  height: 900px;
  position: relative;
  overflow: hidden;
}
.Tablet .homeslider,
.Mobile .homeslider { 
    height: 600px; 
}
.imgFull {
    background-color: #9b9b9b;
    width: 100%;
    height: 900px;
    background-blend-mode: multiply;
}

.caption {
  position: absolute;
  top: 65%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
}
.Mobile .caption{
  top: 68%;
}
.caption-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}  
.Mobile .caption-content,
.Tablet .caption-content{
  grid-template-columns: repeat(1, 1fr);
}
.Desktop.ville .title-slider::first-line, .title-slider {
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  margin: 30px 0;
}
.Desktop.ville .title-slider {
  line-height: normal;
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  /* margin: 0; */
  font-style: italic;
  text-transform: none;
}
.Mobile .title-slider,
.Tablet .title-slider {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}
.tel_contact {
  display: flex;
  align-items: center;
  gap: 50px;
}
.Mobile .tel_contact { 
    flex-wrap: wrap;
    gap: 0;
}
.tel_contact_item a {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}
.tel_contact_item a span {
  width: 50px;
  height: 50px; 
  background: #d01012;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-slider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0 0;
    flex-wrap: wrap; 
}
.btn-style-1 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #ab0a0c;
  padding: 5px 20px 5px 5px;
  border-radius: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
}
.btn-style-1 span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 3px;
}
.btn-style-1 .icon:before {
  filter: invert(1);
  width: 15px;
  height: 15px;
}
.btn-style-1:hover {
  background: #000000;
}
.btn-style-1:hover span {
  background: #ab0a0c;
}

input.btn-style-1 {
  border: none;
  color: #fff;
  padding: 12px 25px;
}
input#mail{
  display: none;
}
.form-input {
    font-family: inherit;
    color: #000;
    padding: 12px;
    width: 100%;
    margin: 0 0 5px;
    border-radius: 10px;
    border: 1px solid #ddd;
    max-width: 360px;
}
.devis_slider {
  display: flex;
  justify-content: center;
}
.devis_slider .formulaire_slider {
  width: 100%;
  max-width: 420px;
  background: rgb(255 255 255 / 90%);
  padding: 30px;
  border-radius: 15px;
}
textarea.form-input {
  height: 100px;
  max-width: 100%;
  min-width: 100%;
}

.devis_titre {
  font-size: 24px;
  margin: 0 0 15px;
  color: #000;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

/*=================================================FOOTER======================================*/
footer.footer { 
  padding :0 0; 
}
.bg-black {
  background-color: #1c1d18;
  background-image: url(../images/img/dark-section-bg-image.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover ;
  color: #fff;
}
hr {
  border: solid 1px #333;
  border-top: none;
  margin: 30px 0;
}
.footer_top {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: 50px;
  padding: 100px 0 0px;
}
.Tablet .footer_top {
  gap: 30px;
  grid-template-columns: repeat(2,1fr); 
}
.Mobile .footer_top { 
    grid-template-columns: 100%; 
}
.footer_logo a.logo img {
  background: #fff;
  padding: 0;
  border-radius: 5px;
  width: 250px;
  height: 150px;
}
.footer_between {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.Tablet .footer_between,
.Mobile .footer_between { 
    grid-template-columns: 100%; 
}

.footer_col_1 {
  background: #FFFFFF1A;
  padding: 30px;
  border-radius: 15px;
}
.titre-f {
  font-size: 24px;
  margin: 0 0 30px;
}
.Tablet .footer_col ul {
  column-count: 2;
}
.cord > div {
  display: flex;
  margin: 0 0 20px;
  gap: 5px;
}
.cord div .icon:before {
  filter: invert(1);
}

.footer_col li {
  margin: 0 0 12px;
  position: relative;
  list-style-position: inside; 
  display: flex;
  padding-left: 20px;
}
.footer_col li:before {
  content: "✱";
  position: absolute;
  left: 0;
}
.footer_bottom {
  padding: 0 0 30px;
  text-align: center;
}
.footer .tel a {
  font-size: 20px;
  font-weight: 600;
}
.copyright {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.Mobile .copyright{
  flex-wrap: wrap;
}
.copyright a {
  display: flex;
}
.copyright img {
  width: 150px;
  height: 25px;
  object-fit: contain;
}
.btn-content {
  margin: 30px 0 0;
}
.sect1-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.Mobile .sect1-img { 
    grid-template-columns: 100%; 
}
.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;
}
figure.image-anime {
  border-radius: 16px; 
}
figure.image-anime img{
  object-fit: cover;
}
.Mobile figure.image-anime{
  height: 250px;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.sect1-img1 img {
  width: 100%;
  height: 450px;
  background: #333;
  display: block;
  object-fit: cover ;
}

.satisfaction-card { 
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center; 
  margin: 20px 0 0;
}
.avatars{
  display:flex;
  justify-content:center;
  margin-bottom:30px;
}

.avatars img{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
  margin-left:-12px;
  transition:0.3s;
}

.avatars img:first-child{
  margin-left:0;
}

.avatars img:hover{
  transform:translateY(-5px);
  z-index:10;
}

.satisfaction-card .h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.separator{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.12);
  margin:25px 0;
}

.rating-card{
  background:linear-gradient(
    90deg,
    #11130f 0%,
    #13150f 50%,
    #14180f 100%
  );
  border-radius:25px;
  padding:30px 25px;
  max-width:350px;
  color:#fff; 
}

.rating-card .h2{
  margin:0; 
  font-weight:700;
  line-height:1;
}

.rating-card p{
  margin-top:20px;
  margin-bottom:0;
  font-size:18px; 
  font-weight:600;
  line-height:1.4;
}

.sect1-img2 a {
  display: flex;
  margin: -75px auto 0;
  width: fit-content;
  z-index: 2;
  position: relative; 
}
.rotating {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sect1-img2 a img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center;
}
.sect1-img2 figure{
  margin: 20px 0 0;
}
.sect1-img2 figure img {
  width: 100%;
  height: 500px;
  display: block;
  background: #eee; 
  object-fit: cover;
}
.sect1-txt .btn-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.Mobile .sect1-txt .btn-content { 
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.sect1-txt  hr { 
  margin: 40px 0;
  border-color: #eee;
}
.sect1_tel {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sect1_tel > span {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sect1_tel > span img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(1);
  object-position: center;
}
.sect1_tel a {
  color: #ab0a0c;
  font-weight: 600;
}
.Scat_txt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  color: #fff;
}
.Mobile .Scat_txt {
    grid-template-columns: 100%;
    gap: 0;
}
.section_cat{ 
  padding: 100px 0;
  color: #fff;
}
.cat-liste {
  display: flex; 
  gap: 30px;
  margin-top: 50px;
}
.cat-item {
    background-color: #3c3c3c;
    background-blend-mode: multiply;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    display: flex !important;
    align-items: end;
    height: 430px;
    margin: 0 10px;
}
.Mobile .cat-item {
    height: 300px;
    padding: 20px;
}
.cat_img {
  position: absolute;
  top: 40px;
  left: 40px;
  width: fit-content;
} 
.cat-item .cat_img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    -webkit-mask-image: url(../images/img/service-image-shape-1.svg);
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    filter: brightness(1.5);
}
.cat-item.active .cat_img img { 
  -webkit-mask-image: url(../images/img/service-image-shape-3.svg); 
}

.titre-cat-item {
  font-size: 18px;
}

.sect2-img img {
  width: 100%;
  height: 448px;
  object-fit: contain; 
  animation: topBottom 2s ease-in-out infinite;
}
.Mobile .sect2-img img { 
    height: 235px; 
}

@keyframes topBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.skill {
  margin-bottom: 30px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.progress {
  position: relative;
  width: 100%;
  height: 10px;
  background: #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}

/* Barre noire */
.progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1f1f1b;
  border-radius: 10px;
}

/* Largeurs personnalisées */
.experience::before {
  width: 95%;
}

.expertise::before {
  width: 92%;
}
.competence {
  margin-top: 50px;
  padding-top: 50px;
  border-top: solid 1px #ddd;
}
.sect2-item2 {
  margin-top: 100px;
}
.sect2-img2 img {
  width: 100%;
  height: 100%;
  display: block;
  background: #eee;
  border-radius: 15px;
  object-fit: cover;
}
.sect3_item {
  margin-top: 94px;
  padding: 30px;
  background: #343530;
  border-radius: 15px; 
  position: relative;
}
.Mobile .sect3_item {
    margin-top: 94px;
    padding: 30px 20px 20px;
    background: #343530;
    border-radius: 15px;
    position: relative;
}
.sect3_item:before {
  content: "";
  background: url(../images/img/service-box-image-gold.png);
  background-size: contain;
  background-repeat: repeat;
  width: 240px;
  height: 94px;
  position: absolute;
  top: -94px;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}
.sect3_item span {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.sect3_item span img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.sect4-grid {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 50px;
  align-items: center;
} 

.promo-card {
  position: relative;
  padding: 40px;
  background: #11130f;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  padding-bottom: 300px;
}
.Mobile section.promo-card {
    padding: 20px 20px 170px !important;
}
.promo-card:before {
  content: "";
  background: url(../images/img/toiture_et_homme.webp);
  width: 100%;
  height: 400px;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.Tablet .promo-card::before{
  height: 500px;
}
.promo-content{
  position:relative;
  z-index:2;
  max-width:450px;
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: #d01012;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 30px;
} 

.promo-card p { 
  line-height: 1.7;
  color: #d9d9d9;
  margin-bottom: 40px;
} 
section.sect5 {
  background: #ffcccc;
}
.sect5-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
  justify-content: center;
}
.promo-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.sect4_img img {
  width: 100%;
  height: 100%;
  background: #eee;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

._avis_ .slick-next,
._avis_ .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 70px;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}
._avis_ .slick-next:focus,
._avis_ .slick-next:hover,
._avis_ .slick-prev:focus,
._avis_ .slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}
._avis_ .slick-next:focus:before,
._avis_ .slick-next:hover:before,
._avis_ .slick-prev:focus:before,
._avis_ .slick-prev:hover:before {
  opacity: 1;
}
._avis_ .slick-next.slick-disabled:before,
._avis_ .slick-prev.slick-disabled:before {
  opacity: 0.25;
}
._avis_ .slick-next:before,
._avis_ .slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
._avis_ .slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
._avis_ .slick-prev:before {
  content: "←";
}
[dir="rtl"] ._avis_ .slick-prev:before {
  content: "→";
}
._avis_ .slick-next {
  right: -25px;
}
[dir="rtl"] ._avis_ .slick-next {
  right: auto;
  left: -25px;
}
._avis_ .slick-next:before {
  content: "→";
}
[dir="rtl"] ._avis_ .slick-next:before {
  content: "←";
}
._avis_ .slick-dotted.slick-slider {
  margin-bottom: 30px;
}
._avis_ .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
._avis_ .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
._avis_ .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}
._avis_ .slick-dots li button:focus,
._avis_ .slick-dots li button:hover {
  outline: 0;
}
._avis_ .slick-dots li button:focus:before,
._avis_ .slick-dots li button:hover:before {
  opacity: 1;
}
._avis_ .slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
._avis_ .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
} 
._avis_ {
  background: #ffcccc;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.star {
  color: #ffd700;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

/* Personnalisation des flèches Slick */
.slick-prev,
.slick-next {
  width: 50px !important;
  height: 50px !important;
  z-index: 10;
  opacity: 1;
}

.slick-prev {
  left: 10px !important;
}

.slick-next {
  right: 10px !important;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

._avis_ button{
  position: relative;
}


._avis_ button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  object-fit: contain;
}



.avis_box {
  background: #f6f6f8;
  margin: 0 5px;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.Mobile .avis_box {
  margin: 10px 0;
  position: relative;
}
.avis_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Mobile .avis_top {
  align-items: start;
}

.avis_top_left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avis_top_left p {
  margin: 0;
  font-size: 16px;
}

.avis_top_left img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.avis_top_right img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sta {
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avis_txt {
  max-height: 200px;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 25px;
}

.Mobile .avis_txt {
  height: 100px;
  font-size: 14px;
  line-height: 20px;
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}

.avis > i {
  background: url(../images/rating-sprit.png) no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin: 20px 0;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}

.Mobile .section-title .h2 {
  font-size: 22px;
}

.Mobile .section-title p,
.Mobile .video_p {
  font-size: 15px;
  line-height: 20px;
}

.rev_arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.rev_p {
  color: #000;
}
._avis_ button {
  position: relative;
  width: 50px;
  height: 50px;
  background: #ffffff8f;
  outline: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.rev_tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin: auto;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .h2 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.section-title p {
  color: #000;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center !important;
}
.rev_tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.teltop a {
  background: #033671;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
  margin: 0 3px;
  transition: all .3s ease;
  position: relative;
}
/*.Desktop .teltop a:before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  left: 15px;
  display: block;
  background-image: url(../images/img/icon_tel.png);
  top: 50%;
  transform: translateY(-50%);
}*/
.Desktop .teltop a {
  padding: 10px 20px 10px 50px;
}

._avis_btn {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}
._avis_btn a {
  font-size: 18px;
  color: #000;
  padding: 10px 30px;
  background: #fff;
  border-radius: 20px;
}




.s7_star_1 {
  display: inline-block;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  align-items: center;
  width: 120px;
  height: 22px;
  background-image: url(/js/etoile.svg);
}

.s7_star_2 {
  height: 22px;
  background-image: url(/js/etoile-on.svg);
}

.s7_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(246, 246, 248);
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.Mobile .s7_top {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 30px;
}

.s7_top_left {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 7px; 
  width: fit-content;
  padding: 10px;
  border-radius: 5px; 
}

.s7_top_left_top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s7_top_left_top svg {
  width: 76px;
  height: 33px;
  object-fit: contain;
}

.s7_top_left_top ._avi {
  font-size: 20px;
  font-weight: 600;
}

.s7_top_left_bottom {
  display: flex;
  align-items: center;
}

.s7_avis_nb {
  font-size: 27px;
  line-height: 1;
  font-weight: 600;
  margin-right: 7px;
}

.s7_avis_votes {
  color: #535353;
  margin-left: 12px;
}
.avis_btn a {
  border-radius: 24px;
  border-color: #033671;
  line-height: 18px;
  color: #fff;
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  background-color: #033671;
  text-transform: none;
  border-width: 2px;
  padding: 7px 19px;
  display: block;
}

.stem_h1 {
  font-size: 50px;
  text-align: center;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.Mobile .stem_h1 {
  font-size: 30px;
}

.Tablet .stem_h1 {
  font-size: 35px;
}

.stem_h2 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  text-align: center;
}

.Mobile .stem_h2 {
  font-size: 22px;
}

.stem_p {
  text-align: center;
  margin: 10px 0 30px;
  color: #444;
  font-size: 20px;
}

form#avis_form\ {
  display: grid;
}

form#FormDevis {
  display: grid;
  gap: 10px;
}

div#MonAvis {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: fit-content;
}

.Mobile div#MonAvis {
  flex-direction: column-reverse;
}

input#mail {
  display: none;
}
.stem_content {
  max-width: 1170px;
  margin: auto;
}
.stem_content label {
  margin: 8px 0 5px;
}

.stem_content .input-form {
  background: rgb(227 227 227);
  padding: 16px;
  border: none;
  border-radius: 5px;
}
.section_content .form-input {
  background: rgb(255 255 255);
  padding: 16px;
  border: none;
  border-radius: 5px;
}

.stem_content textarea.input-form {
  height: 250px;
  max-height: 250px;
}

.section_content textarea.form-input {
  height: 150px;
  max-height: 150px;
}

.stem_content input.btn {
  margin-top: 30px;
  background: #033671;
  padding: 11px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
}

.section_content input.btn-submit {
  background: #033671;
  padding: 11px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #000;
}
.stem_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.Mobile .stem_content .stem_grid {
  grid-template-columns: 1fr;
}

.stem_grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: #ddd;
}

.sco_bloc.sco_horaire {
  padding: 38px;
  box-shadow: 0 0 5px #121212;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.s6_h1 {
  font-size: 35px;
  color: #121212;
  text-align: center;
  margin-bottom: 30px;
}
.s6_grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.Tablet .s6_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 10px;
}

.Mobile .s6_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 10px;
}
.s6_box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: auto;
  display: block;
  filter: invert(1);
}
.Mobile .s6_box img {
  height: 60px;
  width: 60px;
}

.s6_p {
  color: #333;
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}

.Mobile .s6_p {
  font-size: 16px;
  line-height: 1.1;
}
/* =========================
   PRESTA 1
========================= */

.presta1 {
    padding: 100px 0;
    background: #ffcccc;
}

.presta1-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
} 
.section-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border:1px solid #ddd;
  border-radius:30px;
  margin-bottom:25px;
  font-size:15px;
}   
.presta1-images{
  position:relative;
  min-height:650px;
}
.img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}
.help-box{
  position:absolute;
  top:80px;
  right:-60px;
  background:#fff;
  padding:25px;
  border-radius:24px;
  display:flex;
  align-items:center;
  gap:18px;
  min-width:310px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.help-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ab0a0c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 60px;
}
.help-box .h4 {
    margin: 0 0 5px;
    font-size: 26px;
}

.help-box span{
  color:#777;
}

.img-small {
    position: absolute;
    width: 55%;
    right: -50px;
    bottom: 80px;
    border-radius: 25px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    height: 350px;
    object-fit: cover;
}

/* ========= MOBILE ========= */

.Mobile .presta1-grid,
.Tablet .presta1-grid{
  grid-template-columns:1fr;
}
.Tablet .presta1-images,
.Mobile .presta1-images{
  min-height:auto;
}
.Tablet .img-main,
.Mobile .img-main{
  height:500px;
}
.Mobile .help-box,
.Tablet .help-box{
  position:relative;
  right:auto;
  top:auto;
  margin-top:20px;
  min-width:100%;
}
.Tablet .img-small,
.Mobile .img-small{
  position:relative;
  width:100%;
  right:auto;
  bottom:auto;
  margin-top:20px;
}
.Mobile .presta1-cards,
.Tablet .presta1-cards{
  grid-template-columns:1fr;
} 
.sect4-grid.inverse {
  margin-top: 100px;
  grid-template-columns: 40% 1fr;
}
.Mobile .sect4-grid.inverse {
    margin-top: 30px; 
}
 
.sect4-grid.item_3 {
  margin: 100px 0 0;
}
.presta2 {
    background-color: #ddd;
    background-blend-mode: multiply;
    background-size: cover;
    background-attachment: fixed;
}
.presta2_grid {
  display: grid;
  grid-template-columns: 1fr 60%;
}
.Mobile .presta2_grid { 
    grid-template-columns: 1fr;
}
.presta1-txt {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
}
.caption-text .section-badge {
  color: #fff;
}
.text_agence {
  font-size: 12px; 
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: solid 1px #ddd;
}
.rappel_footer {
  display: flex;
  align-items: center;
  gap: 50px;
}

.Tablet .rappel_footer,
.Mobile .rappel_footer {
    flex-wrap: wrap;
    gap: 20px;
}
.rappel_footer .h3 {
  margin: 0;
}
form#rappel_immediat {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
form#rappel_immediat input.form-input {
  height: 49px;
  margin: 0;
  width: 320px;
  max-width: 320px;
  position: relative;
}
form#rappel_immediat input.btn-style-1 {
  width: fit-content;
  height: 45px;
  margin: 0;
  position: absolute;
  right: 2px;
  font-size: 12px;
  font-weight: 600;
}

.sect_contact{
  padding:100px 0;
  background:#f5f0e8;
} 
.contact_grid{
  display:grid;
  grid-template-columns: 1fr 40%;
  gap:30px;
}

/* =====================
   FORMULAIRE
===================== */

.contact_form{
  background:#f8f8f8;
  border-radius:25px;
  padding:60px;
} 
.mail_contact {
  margin: 0 0 20px;
  font-size: 18px;
}

.contact_form p{
  color:#777;
  line-height:1.8;
  max-width:650px;
  margin-bottom:35px;
}

.form_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:20px;
}

.contact_form .form-input{
  width:100%;
  border:1px solid #ddd;
  background:#fff;
  border-radius:10px;
  padding:16px 20px;
  font-size:16px;
  outline:none;
}

.contact_form textarea{
  min-height:150px;
  resize:none;
}


.bloc_info .tel_contact a {
  font-size: 20px; 
}
.btn_contact{
  margin-top:25px;
  border:none;
  background:#f7931a;
  color:#fff;
  padding:15px 30px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn_contact:hover{
  opacity:.9;
}

/* =====================
   INFOS
===================== */

.contact_info{
  background:#11130f;
  color:#fff;
  border-radius:25px;
  padding:45px;
}

.intro{
  color:#d5d5d5;
  line-height:1.8;
  margin-bottom:40px;
}

.bloc_info{
  padding:25px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.bloc_info:last-of-type{
  border-bottom:none;
} 

.horaire{
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-bottom:12px;
}

.socials{
  margin-top:35px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.socials span{
  margin-right:15px;
  font-weight:600;
}

.socials a{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}

.Tablet .contact_grid,
.Mobile .contact_grid{
  grid-template-columns:1fr;
}
.Tablet .contact_info,
.Mobile .contact_info,
.Tablet .contact_form,
.Mobile .contact_form{
  padding:20px;
} 
.Tablet .form_grid,
.Mobile .form_grid{
  grid-template-columns:1fr;
}
.Tablet .bloc_info .h3,
.Mobile .bloc_info .h3{ 
  word-break:break-word;
}
.Tablet .bloc_info span,
.Mobile .bloc_info span{
  font-size:22px;
}
.Tablet .horaire,
.Mobile .horaire{
  flex-direction:column;
} 
.fournisseur {
    background: #eee;
}
.fournisseur .h3 {
  text-align: center;
  display: block;
  width: 100%;
}
.fournisseur_liste {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}

.fournisseur_liste img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border-radius: 15px;
}
.Tablet .fournisseur_liste img ,
.Mobile .fournisseur_liste img{
    width: 150px;
    height: 70px;
    object-fit: contain;
}
.Tablet .top_contact_mobile, .Mobile .top_contact_mobile {
    background: #fff;
    margin: 10px 20px;
    box-shadow: 0 0 8px #333;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-evenly;
}
.Tablet .top_contact_mobile { 
  max-width: 680px;
  margin: 10px auto 0;
}
.Mobile .top_contact_mobile a, .Tablet .top_contact_mobile a {
    color: #fff;
    background: #ab0a0c;
    padding: 12px;
    display: block;
    width: fit-content;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
} 
.Mobile .top_contact_mobile .icon:before,
.Tablet .top_contact_mobile .icon:before {
    filter: invert(1);
}
.devis_mobile {
    padding: 40px 0;
}
.Tablet .sect4-grid, 
.Tablet .sect5-grid,
.Mobile .sect4-grid, 
.Mobile .sect5-grid{
  grid-template-columns: 100%;
  gap: 20px;
} 
.logoDivers {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}
.Mobile .logoDivers {
  justify-content: center;
}
.logoDivers img {
    width: 100px;
    height: 90px;
    object-fit: contain;
}