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

body {
    background: rgb(20 30 41);
    line-height: 1.7;
    font-size: 14px;
    font-family: "Helvetica", sans-serif;
    color: #333;
    overflow-x: hidden;
}
.contenu p {
  text-align: justify;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: 1.1;
  font-family: "Helvetica", sans-serif;
  color: #333333;
  margin: 0 0 15px;
  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 30px;
}
a, input[type="submit"], input[type='submit'], button {
  cursor: pointer;
  text-decoration: none;
  color: #333333;
}

input,
button,
textarea {
  outline: none;
}

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

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

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

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

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

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

.slick-list
{
  position: relative;

  display: block;
  overflow: hidden;

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

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

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

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

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

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

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

  height: auto;

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

.icon{
  position: relative;
  padding: 12px;
}
.icon:before {
  content: "";    
  background-repeat: no-repeat!important;
  background-size: contain!important;
  background-position: center!important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-phone:before {
  background: url(../images/img/icon-fixe-mob.webp);
  filter: brightness(0);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.webp);
  filter: brightness(0);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.webp);
  filter: brightness(0);
}
.icon-location:before {
  background: url(../images/img/icon-locali.webp);
  filter: brightness(0);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.webp);
}
.icon-clock-o:before, .hor: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: 1200px;
  display: block;
}
.Tablet .container {
  max-width: 720px ;
}
.Mobile .container {
  max-width: 100% ;
}



.bg-black{
  background: #000;
}
.bg-grey{
  background: #e3e8ed;
}

.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5, 
.bg-black p,
.bg-black li {
  color: #fff;
}


.align-items_center{
  align-items: center;
}
.grid-col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);  
}
.grid-col-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
} 
.grid-col-5{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
} 
.footer-content .grid-col-4{
  grid-template-columns: repeat(4, 1fr);
}
.gap-20{
  gap:20px;
}
.gap-30{
  gap:30px;
}
.gap-40{
  gap:40px;
}
.gap-50{
  gap:50px;
}
.gap-100{
  gap:100px;
}
.gap-200{
  gap: 200px;
}
.Tablet .grid-col-2  {
  grid-template-columns: 100%;
  gap: 50px;
}
.Mobile .grid-col-2{
  grid-template-columns: 100%;
  gap: 30px;
}

header#header {
  position: relative;
  z-index: 999;
  background: #fff;
}
.Tablet header#header,
.Mobile header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.logomenu {
  display: flex; 
}
.Tablet .logomenu, .Mobile .logomenu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.topLogo {
  background: #fff;
  width: 250px;
  height: auto;
  padding: 5px 40px;
}
.Tablet .topLogo,
.Mobile .topLogo {
  background: transparent;
  width: fit-content;
  padding: 0;
}
a.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_navigation {
  width: calc(100% - 250px);
  height: auto;
}
.Mobile .top_navigation, .Tablet .top_navigation {
    width: 100%;
    position: fixed;
    top: 100px;
    left: 0;
    display: none;
    z-index: 999;
}
.top_contact {
  display: flex;
  background: #e3e8ed;
  width: 100%;
  justify-content: space-between;
  padding: 10px 20px;
}
.top_contact a {
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top_contact_mobile {
    background: rgb(20 30 41);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 5px 0;
}
.top_contact_mobile a {
    background: #ff9933;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 900px;
    color: #000000;
}
 .top_contact_mobile .icon:before {
    filter: brightness(0);
}
.top_navigation {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.Tablet .top_navigation,
.Mobile .top_navigation{
  padding:0 ;
}
ul.nav-list {
  display: flex;
  /*align-items: flex-start;*/
}
.Desktop ul.nav-list {
  grid-template-columns: repeat(7, 1fr);
}
.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: #141e29 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: 100%;
  position: absolute;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
}
.Desktop ul.nav-submenu {
  width: max-content;
}
.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
  width: 100%;
  position: relative;
  transform: none; 
}
.Desktop li.nav-item:hover ul.nav-submenu { 
  transform: scaleY(1);
}
li.nav-item.active > a {
  color: #ff9500;
}

.Desktop li.nav-item.active > a {
    color: #141e29;
    text-decoration: underline;
}

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

.Tablet .nav-item.active, .Mobile .nav-item.active {
  background: #ff9500;
}
li.nav-item a {
  padding: 20px 5px;
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}

.Desktop li.nav-item a {
  padding: 10px 5px;
}
.Tablet li.nav-item a, .Mobile li.nav-item a {
  padding: 10px;
  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: #ff9500;
}
.Tablet nav#menu,
.Mobile nav#menu {
  width: 100%;
}
.Desktop span.nav-click{
  display: none;
}
span.nav-click {
  width: 30px;
  height: 30px;
  background: #ffffffe8;
  position: absolute;
  z-index: 900;
  top: 5px;
  right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
span.nav-click i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.Mobile span.nav-click i::before, .Tablet span.nav-click i::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/drop.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1);
}

a.logo img {
  width: 250px;
  height: 106px;
  object-fit: contain;
  display: block;
}
.Tablet a.logo img, .Mobile a.logo img {
  width: 123px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.btn-style-1 {
  padding: 15px 25px;
  background: #ff9500;
  color: #000;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  width: max-content;
  border-radius: 3px;
}
.btn-style-1:hover {
  background: #fbcf9b;
  color: #333333;
}
.btn-style-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%; 
  transform: skewX(-20deg); 
  background-image: linear-gradient(to right,transparent,rgba(255,255,255,.4),transparent);
  z-index: 1;
}
.btn-style-1:hover:after { 
  animation:btn_shine 1.2s ease; 
  animation-delay:.1s
}
@keyframes btn_shine {
  100% {
    left:200%
  }
}
.btn_top {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #e3e8ed;
}
.homeslider {
  background: #e3e8ed;
  width: 100%;
  height: 600px;
  display: block;
  position: relative;
}
.Mobile .homeslider {
    margin-top: 220px;
    height: 600px;
}
.Tablet .homeslider {
  margin-top: 143px;
}
.imgFull {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #b9b8b8;
    background-blend-mode: multiply;
}
.Mobile .imgFull {
    height: 600px;
}
.clipp1 {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: -1px;
  background-size: cover;
} 
.Mobile .clipp1 { 
  height: 50px;
}

.Tablet .clipp1 {
  height: 100px;
}

.caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 9;
}
.caption-text {
  margin: auto;
  text-align: center; 
  width: 67%;
}


.Societe_name {
  text-align: center;
  color: #fff;
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000, -2px 2px 0px #000000, 0 0 15px rgba(255, 255, 255, 0.8);
}
.Tablet .Societe_name { 
  font-size: 24px; 
}
.Mobile .Societe_name {
  font-size: 22px;
  white-space: initial;
}
.Mobile .Societe_name.split-chars.titre {
    font-size: 18px;
    margin: 10px 0 20px;
}

.btn-slider {
  margin: 30px 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}



#navscrool {
  transform-origin: 0 0 0;
  transform: scaleY(0);
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  background: #fff;
}

.Desktop #navscrool.sticky {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
#navscrool.sticky a.logo img {
  width: 200px;
  height: 90px;
  object-fit: contain;
  display: block;
}
div#Map {
    width: 100%;
    height: 250px;
    z-index: 0;
    background: #e3e8ed;
    z-index: 0;
    border-radius: 10px;
}
.Mobile div#Map{
  height: 250px;
}
footer {
  position: relative; 
  padding: 50px 0 0;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 5px;
  background: #ff950070;
  transform: translateX(-50%);
}
.footer-logo {
  margin: 0 0 20px;
}
.footer-logo .logo img {
  width: 230px;
  height: 120px;
  object-fit: contain;
  background-color: #fff;
}
.footer-content {
  padding: 100px 0 50px;
  color: #333;
}
.footer-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 30px;
    position: relative;
    padding: 0 0 15px;
}
.footer-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9500, #ff9500);
  border-radius: 2px;
  animation: titleUnderline 1s 
  ease-out 1s forwards;
  position: absolute;
}

@keyframes titleUnderline{
  100% {
    width: 50px;
  }
}


.footer-title span,
.footer-col.first-col strong {
  color: #ff9500;
}
.footer-col.first-col p {
  margin: 0 0 20px;
}
.footer-col.first-col p:last-child {
  margin: 0;
}
#mail,
#mail2{
  display: none;
}
form#rappel_immediat {
  display: flex;
  margin: 30px 0 0;
  align-items: center;
  justify-content: center;
}
form#rappel_immediat input.input-form {
  width: 70%;
  height: 48px;
  padding: 12px;
  border: 2px solid #eee;
  outline: none;
}
form#rappel_immediat input.btn-style-1 {
  width: 30%;
  height: 48px;
  padding: 12px;
  border: none;
  outline: none;
  background: #ff9500;
  border-radius: 0;
  color: #000;
}
form#rappel_immediat input.btn-style-1:hover{
  background: #287ff9;
}
ul.informations li {
  list-style: none;
  margin: 0 0 20px;
}
ul.informations li a,
ul.informations li p {
  display: flex;
  gap: 5px;
  align-items: center;
}
ul.services li {
  list-style: none;
  /* line-height: 2.5; */
  padding: 0 0 18px;
}
ul.services li a {
  font-size: 14px;
}
.copyright {
    text-align: center;
    color: #ffffff;
}
.copyright a {
  font-weight: 600;
  color: #ffffff;
}
.Mobile .copyright a { 
  display: block;
  margin: 15px 0 0;
}
.cr-flex {
    padding: 20px 0;
    border-top: 2px solid rgb(255 255 255 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Mobile .cr-flex { 
  flex-wrap: wrap;
  justify-content: center;
}



.form-input {
    margin: 0 0 15px;
    width: 100%; 
    position: relative;
    padding: 12px 15px;  
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s 
ease;
}
.form-input::placeholder{ 
  color: #fff;
}
.form_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-content: center;
}
.Mobile .form_group{
  grid-template-columns: 100%;
  gap: 0;
}
textarea.form-input {
  min-height: 120px;
  min-width: 100%;
  display: block;
}
input.btn-style-1 {  
    background: linear-gradient(135deg, rgb(44, 62, 80), rgb(52, 73, 94));
    width: 100%;
    border-radius: 20px;
    width: 100%;
    padding: 15px; 
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s 
ease;
    margin-top: 10px;
}
.devis-img {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
}


.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.titre-album {
    clear: both;
    display: block;
    font-size: 32px;
    margin: 20px 0;
    width: 100%;
    color: #fff;
    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;
    color: #ff9500;
}
.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;
}
.logo-divers img {
  width: 100px;
  height: 80px;
  object-fit: contain;
}
.logo-divers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0 0;
}

.Mobile .block1-grid,
.Tablet .block1-grid {
  grid-template-columns: 100%;
  gap: 30px;
}
.Mobile main.contenu figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.Tablet main.contenu figure img { 
  height: 350px; 
}
.Tablet footer .grid-col-4 {
  grid-template-columns: repeat(2, 1fr);
}
.Mobile footer .grid-col-4 {
  grid-template-columns: 100%;
}
.Tablet .grid-col-2.gap-30.contact-list {
  grid-template-columns: repeat(2,1fr);
}
/*------------------------------------------------------------------------- 
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: #333333;
  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: #333333;
}
.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;
}

.container > .gap-100 {
  align-items: center;
}
section.presta2.bg-grey .container > .gap-100 {
  align-items: normal;
}




.decorative-line {
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #fbcf9b, #ff9500, #fbcf9b);
  margin: 40px auto;
  border-radius: 3px;
  animation: lineSlideIn 2s 
  cubic-bezier(0.23, 1, 0.32, 1) 4.8s forwards;
  box-shadow: 0 0 25px rgba(231, 76, 60, 0.4);
  position: relative;
}

@keyframes lineSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-200px) rotate(-20deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

}

.decorative-line::before, .decorative-line::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ff9500;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
  animation: dotPulse 2s 
  ease-in-out 5.5s infinite;
}

.decorative-line::before {
  left: -20px;
}
.decorative-line::after {
  right: -20px;
}

@keyframes dotPulse{
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.9);
  }
}


.split-chars { display: inline-block; white-space: nowrap; } 

.split-chars .char {
  display: inline-block;              
  transform: translateY(0.6em);        
  opacity: 0;                         
  will-change: transform, opacity;
  animation-name: slideUpFade;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.2,.8,.2,1); 
}

@keyframes slideUpFade {
  from {
    transform: translateY(0.6em);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
} 
.split-chars.animate-once .char { animation-iteration-count: 1; }


.avis-slider {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.avis-slider-flex {
  position: relative;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.avis-card {
  width: fit-content;
  height: auto;
  padding: 50px 30px 20px;
  background: #ffffff6e;
  position: relative;
  color: #202020;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 10px;
}
.slider-icon-quote {
  position: absolute;
  top: -65%;
  transform: translate(-50%, 50%);
  left: 60%;
}
.slider-icon-quote img {
  width: 125px;
  height: 105px;
  object-fit: contain;
}
.slider-icon-google {
  position: relative;
  left: -20%;
  top: -60px;
  display: flex;
  width: fit-content;
  height: auto;
  transform: translate(50%, 50%);
}
.slider-icon-google img { 
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.urgence-banner { 
    padding: 20px;
    text-align: center;
    color: #ff9500;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.urgence-banner div {
    color: #ff9500;
    font-size: 20px;
    margin: 0 0 20px;
    text-align: center;
    margin: 20px 0;
}
.Tablet .urgence-banner a,
.Mobile .urgence-banner a {
  display: block;
}
.informations-item {
    margin: 0 0 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 5px;
}
.urgence-banner a {
    color: #fff;
    font-weight: 600;
}
.urgence-banner .icon:before {
  filter: brightness(0) invert(1);
}


/*================================= BEFORE AFTER =================================*/
 

.img-comp {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 50px 0 0;
  position: relative;
}
.Mobile .img-comp {
  padding: 0;
  margin: auto;
  text-align: center;
  display: block;
  width: fit-content;
}

.img-comp-img img {
  background: #e3e8ed;
}
.Mobile .img-comp-img img {
  width: 250px;
  height: 350px; 
}
.img-comp-overlay img {
  background: #888;
}
.img-comp-overlay {
  transition: width 0.25s ease;
}
.img-comp-container {
  position: relative;
  width: 350px;
  height: 480px;
  overflow: hidden;
  overflow: hidden; 
}
.Mobile .img-comp-container{
  width: 250px;
  height: 350px; 
}
.img-comp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.img-comp-img img {
  width: 350px;
  height: 480px;
  display: block;
  object-fit: cover;
}

.img-comp-overlay {
  width: 50%; /* manomboka amin'ny 50% ho “open” */
  overflow: hidden;
  transition: width 0.25s ease;
  z-index: 2;
}

.img-comp-slider {
    position: absolute;
    z-index: 3;
    cursor: ew-resize;
    width: 3px;
    /* background-color: #fff; */
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(359deg, #ff9500, #ffffff, #ff9500 );
}

.img-comp-slider:before {
    content: "↔️";
    width: 30px;
    height: 30px;
    /* background: #ff9500 url(../images/img/icon-arrow-ba.png); */
    top: 50%;
    display: block;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-size: contain;
    border-radius: 50%;
    /* padding: 5px; */
    background: #00a6ed;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: grayscale(1);
    border: solid 3px #fff;
}










 

.align_center{
  align-items: center;
}

.decorative-separator {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #fbcf9b, #ff9500, #fbcf9b);
  margin: 50px auto;
  position: relative;
  opacity: 0;
  animation: separatorReveal 2.5s 
  ease-out 2s forwards;
}
@keyframes separatorReveal{
  0% {
    opacity: 0;
    transform: scaleX(0) rotateZ(180deg);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2) rotateZ(90deg);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) rotateZ(0deg);
  }
}

.decorative-separator::before {
  left: -25px;
}
.decorative-separator::after {
  right: -25px;
  animation-direction: reverse;
}
.decorative-separator::before, .decorative-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ff9500;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.6);
  animation: dotRotation 4s 
  linear 3s infinite;
}

@keyframes dotRotation{
  0% {
    transform: translateY(-50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.3);
  }
  100% {
    transform: translateY(-50%) rotate(360deg) scale(1);
  }
}

.contenu h1 {
  text-align: center;
}

.contenu ,
.contenu h1,
.contenu h2,
.contenu h3
.contenu p{
  color: #fff;
}

.logo_devis {
  position: relative;
}
.logo_devis img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: absolute;
  position: absolute;
  top: -120px;
}
.Tablet .logo_devis img,
.Mobile .logo_devis img { 
  position: relative;
  top: 0;
  margin: 0 auto 30px;
  display: block;
}

.titre-categorie {
  font-size: 46px;
  color: #ffffff;
  margin: 0 0 30px;
}
.Mobile .titre-categorie {
  font-size: 22px; 
}
section.categorie .bouton {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.bg-color {
  background: linear-gradient(145deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.03));
}
.section-title {
  text-align: center;
  font-size: 46px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 20px 0 50px;
  color: #fff;
  position: relative;
  padding: 0 0 20px;
  display: block;
  text-shadow: 0px 0px 7px #000;
}
.Mobile .section-title { 
  font-size: 24px; 
}
.section-title:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9500, #ff9500, #ff9500);
  animation: titleUnderline2 2s 
  ease-out 1.5s forwards;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.5);
}
@keyframes titleUnderline2 {
  100% {
    width: 200px;
  }
}



.section-title span { 
  animation: colorAnim 5s ease infinite;
}
@keyframes colorAnim {
  0%,
  100% {
    color: #fbcf9b;
  }
  50%{
    color: #ff9500;
  }
}
.cat-block-img {
  width: 100%;
  height: 250px;
  background: #eee;
  overflow: hidden;
  display: block;
}
.categorie-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: solid 2px rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.categorie-item a {
  width: 100%;
  text-align: left;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 42px;
  padding: 12px;
  text-align: center;
  color: #fff;
}

.Mobile .categorie-item a { 
  font-size: 12px; 
  min-height: inherit;
}
.categorie-item.active,
.categorie-item:hover { 
  background: #333;
}
.categorie-item.active a, 
.categorie-item:hover a {
  color: #ff9500;
}


.Tablet .categorie-list.grid-col-4,
.Mobile .categorie-list.grid-col-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.categorie-item figure {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
}
.Mobile .categorie-item figure { 
    height: 125px; 
}
.categorie-item figure img.cat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eee;
  display: block;
  transform: scale(1) rotate(0);
}

.categorie-item:hover figure img.cat-image { 
 transform: scale(1.1) rotate(5deg);
}

.block2-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(15px);
  opacity: 0; 
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
  transform: translateY(50px) scale(0.95);
  animation: introReveal 2s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.5s forwards;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.Mobile .block2-content { 
 padding: 20px; 
}
@keyframes introReveal { 
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.block2-stat-item { 
  padding: 25px;
  border-radius: 15px; 

  transition: all 0.3s 
  ease;
  opacity: 0;
  transform: translateY(30px);
  animation: statReveal 0.8s 
  ease-out forwards;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid  rgba(255, 255, 255, 0.15); 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
@keyframes statReveal{
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.block2-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 0;
  text-align: center;
}
.Tablet .block2-stat { 
  grid-template-columns: repeat(2, 1fr); 
}
.Mobile .block2-stat { 
  grid-template-columns: 100%; 
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff9500;
  margin-bottom: 10px;
}
.block2-stat-item p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center !important;
  display: block;
  width: 100%;
}

.btn-content  {
  display: block;
  margin: 30px 0 0;
}
.btn-content a.btn-style-1 {
  border-radius: 900px;
}
.block3-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative; 
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cardSlideUp 1s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}


@keyframes cardSlideUp{
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.block3-card, 
.block3-card p {
 color: #34495e;
}
.block3-card h1,
.block3-card h2,
.block3-card h3{

  color: #2c3e50;
}



.block3-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: left bottom;
  display: block;
  background: #eee;
}
.block3-txt {
  padding: 40px;
}
.Mobile .block3-txt{
  padding: 20px;
}
.block4-grid {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 50px;
}
.Mobile .block4-grid,
.Tablet .block4-grid { 
  grid-template-columns: 100%; 
}

.block4-txt img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  background: #eee;
  object-position: left bottom;
}

.block4-txt { 
  position: relative; 
  transition: all 0.6s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cardSlideUp 1s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  height: fit-content;
}
.block4.-txt {
  padding: 40px;
} 
.Mobile .block4.-txt{
  padding: 20px;
}
.block4-right > div, .col-devis-right > div {
    margin-bottom: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}
.Mobile .block4-right > div, 
.Mobile .col-devis-right > div { 
  padding: 20px!important; 
}
.Tablet .col-devis-right > div {
  padding: 20px !important;
}
/*.Tablet .block4-right {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  align-items: baseline;
}*/
.Tablet .eng-list {
  column-count: 2;
}
input.form-input, textarea.form-input {
 border: 2px solid rgba(1, 111, 174, 0.1);
 /* border-radius: 20px; */
}
.eng-list > div {
  text-align: left;
  margin: 0 0 10px;
  padding-left: 20px;
  position: relative;
}
.eng-list > div:before {
  content: "🗸";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ff9500;
  font-weight: 600;
  font-family: monospace;
  font-size: 20px;
}

.eng-list a {
  display: block;
  text-align: left;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-weight: 600;
  color: #fff;
}

.titre-with-before{
  position: relative;
  padding-left: 30px;
} 
.titre-with-before:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #ff9500;
  transform: translateY(-50%);
}


.partenaire-slide {
  display: flex ;
  gap: 20px;
  animation: slide 20s infinite 
  linear;
}


0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-100%);
}
}
.partenaire-slide img {
  width: 150px;
  height: 100px;
  object-fit: contain;
}

.partenaire {
  margin: 50px 0 0;
}
section.block5 {
    background-color: #333;
    background-blend-mode: multiply;
    background-size: cover;
    color: #fff;
}
section.block5 h2,
section.block5 h3 {
  color: #ff9500;
}
section.block6 {
    background: linear-gradient(160deg, #1d262a 0%, #252e33 30%, #2a3439 60%, #1f292e 100%);
}
.block6-txt { 
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.5s 
  ease;
  cursor: pointer;
  overflow: hidden;
}
.Mobile .block6-txt{
    background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.5s 
  ease;
  cursor: pointer;
  overflow: hidden;
  padding: 20px 10px;
}
.block6-content{
  position: relative;
}
.block6-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: #fbcf9b;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.3);
  animation: lineGrow 3s 
  ease-out 2.5s forwards;
  transform-origin: top;
  scale: 1 0;
}

@keyframes lineGrow{
  100% {
    scale: 1 1;
  }
}

.block6-content:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) ;
  width: 6px;
  height: 100%;
  background: #ff9500;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.3);
  animation: lineGrow 3s 
  ease-out 2.5s forwards;
  transform-origin: top;
  scale: 1 0;
  animation: heightAnim 4s ease 3.5s  infinite;
}

@keyframes heightAnim{ 
 0% {
  opacity: 1;
  scale: 1 0;
}

80%{
  opacity: 1;
  scale: 1 1;
}

100% {
  scale: 1 1;
  opacity: 0;

}
}

.block6-item{
  position: relative;
}
.block6-item .cercle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(0deg, #ff9500, #ff9500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(192, 57, 43, 0.4), 0 0 0 8px rgba(255, 255, 255, 1), 0 0 0 12px rgba(192, 57, 43, 0.2);
  z-index: 10;
  animation: numberPulse 2s 
  ease-in-out infinite;
}
.Mobile .block6-item .cercle, .Tablet .block6-item .cercle {
  position: relative; 
}
@keyframes numberPulse{
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 18px 50px rgba(241, 196, 15, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.2);
  }
}
.cercle img {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
  object-fit: contain;
}




/*
Avis
*/

section.section-avis {
  padding: 100px 0;
}


.imgAvis.bg {
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
}
.Mobile .imgAvis.bg {
  padding: 10px;
}
b.titreAvis {
  display: block;
  font-size: 26px;
  color: #376371;
  text-transform: uppercase;
}
b.titreAvis::after {
  content: "";
  display: block;
  margin: 2rem auto ;
  width: 35px;
  border-bottom: 3px solid #376371;
}
.block-avis {
  margin: 0 auto;
  padding: 40px;
  border-radius: 7px;
  text-align: center;
}
#temoignages .item-tem p {
  margin-bottom: 0;
}

.temoin { 
  color: black;
  padding: 80px 0;
}
.Mobile .temoin {
  padding-top: 12rem;
}
.Desktop .temoin .grid-row {
  display: grid;
  grid-template-columns: 60% auto;
  grid-gap: 20px;
}
.Tablet .temoin .grid-row,
.Mobile .temoin .grid-row {
  display: block;
}
.col-right .blockFormulaire {
  background: #e3e8ed;
  border-radius: 10px;
  padding: 40px;
}
.Desktop .col-right {
  margin-left: 1rem;
}
.temoin .item-tem {
  border-bottom: 1px solid rgb(98 98 98 / 20%);
  padding-bottom: 15px;
  margin-bottom: 1rem;
}
h1.Titrecontenu {
  font-size: 36px;
  margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
  font-size: 22px;
}
h2.Titrecontenu {
  color: #092750;
}
#avis_form {
  margin-top: 15px;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

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

}
.avis i {
  background: url(../images/img/rating-sprit.webp) no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  /* margin-right: 15px; */
  /* margin-bottom: 20px; */
}
.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;
}
#temoignages a.btn-rea {
  margin-top: 1rem;
  padding: 7px 35px;
}
.item-tem img {
  margin: 0;
  width: 50px;
  height: 50px;
}
img.google {
  width: 60px;
  height: 25px;
  object-fit: contain;
}
.avis-nom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.temoignages .col-left .avis > i {
  background: url(../images/img/rating-sprit.png) no-repeat;
  height: 9px;
  width: 50px;
  margin: 0;
}
.temoignages .col-left .avis-0 {
  background-position: 0 0 !important;
}
.temoignages .col-left .avis-1 {
  background-position: 0 -11px !important;
}
.temoignages .col-left .avis-2 {
  background-position: 0 -22px !important;
}
.temoignages .col-left .avis-3 {
  background-position: 0 -32px !important;
}
.temoignages .col-left .avis-4 {
  background-position: 0 -43px !important;
}
.temoignages .col-left .avis-5 {
  background-position: 0 -53px !important;
}
.temoignages .col-left .avis-6 {
  background-position: 0 -65px !important;
}
.temoignages .col-left .avis-7 {
  background-position: 0 -75px !important;
}
.temoignages .col-left .avis-8 {
  background-position: 0 -85px !important;
}
.temoignages .col-left .avis-9 {
  background-position: 0 -95px !important;
}
.temoignages .col-left .avis-10 {
  background-position: 0 -105px !important;
}
.avis-t {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-temoignage .avis-t {
  justify-content: center;
  margin: 10px 0 5px;
}
.Mobile .slide-temoignage .avis-t {
  flex-wrap: wrap;
  gap: 0;
}
.temoignages .col-left img.google {
  width: 36px;
  height: 15px;
  object-fit: contain;
}
.sa-titre {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  /* margin: 0 0 40px; */
}
.sa-item {
  padding: 30px;
  margin: 0 20px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 25px;
  border: 2px solid rgba(231, 76, 60, 0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.6s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.Tablet .sa-item,
.Mobile .sa-item { 
  padding: 20px; 
  margin: 0 10px;
}
/*.sa-item:after{
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;   
  width: 40px;
  height: 40px; ;
  background-image: url(../images/img/right-quote.svg);
  background-size: contain;
}*/
.sa-content .avis {
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.sa-content .avis img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.sa-item .avis b {
  display: flex;
  align-items: center;
  gap: 15px;
}
section.section-avis .btn-content {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}
.titreAvis {
  font-size: 36px;
  font-weight: 600;
  padding: 30px 60px;
  border-bottom: 2px solid #F2F3F6;
  margin-bottom: 30px;
  color: #333333;
}
.Mobile .titreAvis {
  font-size: 28px; 
  padding: 0 0 20px; 
  margin: 0;
}
.avis-nom span {
  text-transform: capitalize;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(231, 76, 60, 0.1);
  backdrop-filter: blur(10px);
  max-width: 400px;
  margin: 0 auto;
  transform: scale(0.8);
  opacity: 0;
  animation: badgeZoomIn 1.5s 
  cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s forwards;
}

@keyframes badgeZoomIn{
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.google-logo img{
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: logoSpin 3s 
  ease-in-out 2.5s infinite;
}
@keyframes logoSpin{
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.1);
  }
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 5px;
  text-align: center;
}
.rating-text {
  font-size: 1.3rem;
  color: #666;
  font-weight: 600;
}
.sa-content {
  margin: 50px 0 0;
}
.temoignage_nom {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.sa-item p {
  position: relative; 
  line-height: 1.7;
  color: #34495e;
  font-weight: 500;
  position: relative; 
  font-style: italic;
  font-size: 18px;
  margin: 0 0 15px;
}
.sa-item p::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 4rem;
  color: rgba(231, 76, 60, 0.2);
  font-family: serif;
  line-height: 1;
}
.sa-item p::after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 4rem;
  color: rgba(231, 76, 60, 0.2);
  font-family: serif;
  line-height: 1;
}


.subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #333333;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s 
  ease-out 2s forwards;
}
section.block-devis {
    background: linear-gradient(160deg, #1d262a 0%, #252e33 30%, #2a3439 60%, #1f292e 100%);
}
section.block-devis .subtitle { 
    color: #ffffff; 
}
.Mobile .subtitle { 
  font-size: 16px; 
  font-weight: 600;
}
@keyframes fadeInUp{
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bdevis-grid {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 50px;
}
.Tablet .bdevis-grid { 
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}
.Mobile .bdevis-grid { 
  grid-template-columns: 100%; 
}
.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}
.info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ff9500;
  border-radius: 2px;
}
.coordonnees {
  padding: 50px !important;
}
.coordonnees-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin: 0 0 20px;
  gap: 15px;
}
.coordonnees-item strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f69102;
    margin-bottom: 5px;
}
.coordonnees-item a, 
.coordonnees-item p{
  color: #fff;
}
.coordonnees-list {
  margin: 30px 0 0;
  display: block;
  box-sizing: border-box;
}
label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    transition: all 0.3s 
ease;
    position: relative;
    text-align: left;
}
.urgency-alert {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    animation: urgencyPulse 3s 
ease-in-out infinite;
}
.urgency-alert .h4 {
  color: #ff9500;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.urgency-alert p {
  color: #ff9500;
  font-weight: 600;
  text-align: center !important;
}

.urgency-alert strong a {
    color: #fff;
}
.urgency-alert .icon:before,
.coordonnees-item .icon:before {
    filter: brightness(0) invert(1);
}
.Tablet .urgency-alert strong,
.Mobile .urgency-alert strong {
  display: block;
}
.Liens {
    display: block;
    column-count: 3;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.Tablet .Liens{
  column-count: 2;
}
.Mobile .Liens{
  column-count: 1;
}
.Liens a {
  display: block;
  margin: 0 0 15px;
  color: #fff;
}
.Services h2.Titre {
  text-align: center;
}
.Services {
  padding: 0 0 50px;
}
.logo-contenu img {
    width: 380px;
    height: 212px;
    object-fit: contain;
    background-color: #fff;
}
.tel-num a{
  line-height: 2;
  font-size: 18px;
}
.top-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: max-content;
}
.Desktop .top-tel {
  width: 20%;
  flex: 0 0 20%;
}
.top-tel span {
  background: #ddd;
  width: 40px;
  height: 40px;
  display: flex
  ;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
body.Desktop header#header .container {
  width: 100%;
  max-width: 100%;
  padding: 0 50px;
}
.top-tel div a {
  display: block;
  font-size: 16px;
  color: #214083;
  font-weight: 600;
}
/* .Desktop .categorie-list.grid-col-4.gap-30 {
  grid-template-columns: repeat(4, 1fr);
} */
.logoDiver {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logoDiver {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


.tagline {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase; 
  text-shadow: 2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000, -2px 2px 0px #000000, 0 0 15px rgba(255, 255, 255, 0.8);
}
.Tablet .tagline {
  font-size: 24px;
}
.Mobile .tagline {
    font-size: 22px; }
.sub-tagline {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  /* opacity: 0; */
  /* transform: translateY(30px); */
  animation: fadeInUp 1.5s 
  ease-out 4.5s forwards;
  text-shadow: 1px 1px 0px #000000, -1px -1px 0px #000000, 1px -1px 0px #000000, -1px 1px 0px #000000;
}

 
.partenaire-wrapper {
  overflow: hidden;
  width: 100%;
}

.partenaire-liste {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll 20s linear infinite;
  width: max-content;
}
.partenaire-liste img {
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  width: 150px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partenaires {
    color: #fff;
    padding: 50px 0;
    background-color: #b9b8b8;
    background-size: cover;
    background-blend-mode: multiply;
}
.partenaires .h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
}
.block-engangement .h4 {
  color: #fff;
}
.titre .light {
  text-shadow: 2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000, -2px 2px 0px #000000, 0 0 20px rgb(255 149 0), 0 0 40px rgb(251 207 155), 0 0 60px rgb(251 207 155);
  color: #ff9500;
}
section.block-texture {
    padding: 0;
    background: linear-gradient(160deg, #1d262a 0%, #252e33 30%, #2a3439 60%, #1f292e 100%);
}
.block-texture-content {
  background: linear-gradient(160deg, #1d262a 0%, #252e33 30%, #2a3439 60%, #1f292e 100%);
  color: white;
  padding: 120px 50px; 
  position: relative;
  overflow: hidden;
}
.Mobile .block-texture-content.texture {
    padding: 0;
}
.texture{
  position: relative;
}
.texture:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/img/texture.svg);
  background-repeat: repeat;
  pointer-events: none;
}
form#FormDevis {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(80px);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1); 
}
.Mobile form#FormDevis {
    padding: 20px;
}
.Tablet #FormDevis {
  padding: 30px;
}

body.Desktop .bdevis-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
    margin: auto;
    width: 60%;
}
body.Tablet .bdevis-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px; 
}
.correspondance-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}
.correspondance-item picture {
    font-size: 2rem;
    margin-bottom: 12px;
}
.correspondance-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    text-align: center;
    color: #fff;
}
.correspondance-item .h4,
.correspondance-item p, 
.correspondance-item a{
    text-align: center;
    color: #fff;
} 
.correspondance-item p {
    line-height: 2;
    font-weight: 600;
}
form#rappelImmediat {
    width: 100%;
    max-width: 320px;
    margin: auto;
}
.footer-content p, .footer-content a, .footer-content {
    color: #fff;
}
.footer-content .icon:before {
  filter: brightness(0) invert(1);
}
.Mobile .block-correspondance .grid-col-3.gap-20 {
    grid-template-columns: 100%;
}
.grid-col-2.gap-200.block6-item {
  position: relative;
  z-index: 2;
}
.Desktop .devis-slide .bdevis-grid {
    width: 100% !important;
}
.Desktop .caption-content {
    display: flex;
}
.Desktop .devis-slide {
    width: 350px;
    z-index: 999;
    right: 0;
    position: fixed;
    top: 160px;
}
.Desktop .devis-slide .subtitle{
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
}
.Desktop .devis-slide form#FormDevis{
  padding: 20px;
}
.Desktop .devis-slide .section-title{
  margin: 0;
  padding: 0;
}
.Desktop .devis-slide .section-title{
  font-size: 24px;
}
.Mobile .caption-text {
    margin: auto;
    text-align: center;
    width: 100%;
}
.copyright img {
    width: 150px;
    height: 25px;
    position: relative;
    top: 5px;
}
.block6-txt h3,
.block2 h3 {
    color: #fff;
}

.slidetravaux{
    color: #fff;
    font-size: 30px;
    border-right: 3px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 3s steps(20) forwards, blink 0.7s infinite;
  }
  @keyframes typing{
    to{
      width: 50ch;
    }
  }
  @keyframes blink{
    100%{
      border-color: transparent;
    }
  }
  .Mobile .slidetravaux{
    display: none;
  }
.imageAssurance{
  width: 50px;
  margin-left: 50px;
} 
