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

body {
  line-height: 1.7;
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
  color: #333;
  overflow-x: hidden;
}
main.contenu p {
  text-align: justify;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: normal;
  font-family: "Helvetica", sans-serif;
  color: #2c3e50;
  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 30px;
}
a, input[type="submit"], input[type='submit'], button {
  cursor: pointer;
  text-decoration: none;
  color: #2c3e50;
}

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);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.webp);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.webp);
}
.icon-location:before {
  background: url(../images/img/icon-locali.webp);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.webp);
}
.icon-clock-o:before, .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(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;
}
.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;
}
.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: 5px;
}
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: 110px;
    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: #14287b;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 5px 0;
}
.top_contact_mobile a {
    background: #cd1125;
    padding: 12px;
    display: flex
;
    align-items: center;
    gap: 5px;
    border-radius: 900px;
    color: #ffffff;
}
.top_contact_mobile .icon:before {
    filter: brightness(0) invert(1);
}
.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;*/
}
.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: #14287b url(../images/nav.svg) no-repeat 85% center;
  background-size: auto;
  background-size: 18px;
  height: 50px;
  width: 85px;
  padding-left: 9px;
  line-height: 50px;
  color: white;
  position: relative;
  z-index: 999;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  text-align: initial;
}


ul.nav-submenu {
  display: block;
  flex-direction: column;
  width: 400px;
  position: absolute;
  text-align: left;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease-out;
}
.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
  display: none; 
  width: 100%;
  position: relative;
  transform: none; 
}
li.nav-item:hover ul.nav-submenu { 
  transform: scaleY(1);
}
li.nav-item.active > a {
    color: #c0392b;
}


li.nav-item{
  position: relative;
}
/*
li.nav-item:before {
  content:'';
  height:4px;
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background-color:#14287b;
  transform-origin:right center; 
  transform:scale(0,1); 
  transition:transform .3s cubic-bezier(.37,.31,.2,.85)
}
li.nav-item:hover:before {
  transform-origin:left center; 
  transform:scale(1,1)
}

*/




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

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

.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: #cd1125;
}
.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: 200px;
  height: 120px;
  object-fit: contain;
  display: block;
}
.Tablet a.logo img, .Mobile a.logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.btn-style-1 {
  padding: 15px 25px;
  background: #c0392b;
  color: #ffffff;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  width: max-content;
  border-radius: 3px;
}
.btn-style-1:hover { 
  background: #ffdd00;
  color: #2c3e50; 
}
.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;
  overflow: hidden;
  display: block;
  position: relative;
}
.Mobile .homeslider {
    margin-top: 196px;
    height: 450px;
}
.Tablet .homeslider {
  margin-top: 143px;
}
.imgFull {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
}
.Mobile .imgFull{
  height: 450px;
}
.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; 
}


.Societe_name {
  text-align: center;
  color: #fff;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 0 8px #33333361;
}
.Tablet .Societe_name { 
  font-size: 24px; 
}
.Mobile .Societe_name {
    font-size: 22px;
    white-space: initial;
}

.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;
}
.Mobile div#Map{
  height: 250px;
}
footer {
  position: relative;
  background: #fff;
  padding: 50px 0 0;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 5px;
  background: #e74c3c70;
  transform: translateX(-50%);
}
.footer-logo {
  margin: 0 0 20px;
}
.footer-logo .logo img {
  width: 230px;
  height: 120px;
  object-fit: contain;
}
.footer-content {
  padding: 100px 0 50px;
  color: #333;
}
.footer-title {
  color: #2c3e50;
  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, #e74c3c, #c0392b);
  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: #cd1125;
}
.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: #cd1125;
  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: #000;
}
.copyright a {
  font-weight: 600;
}
.Mobile .copyright a { 
  display: block;
  margin: 15px 0 0;
}
.cr-flex {
  padding: 20px 0;
  border-top: 2px solid rgba(231, 76, 60, 0.1);
  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%;
    padding: 16px 20px;
    font-size: 14px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.4s 
cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.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 {
  color: #fff;
  border: 2px solid #fff;
  background: linear-gradient(135deg, rgb(44, 62, 80), rgb(52, 73, 94));
  width: 100%;
  border-radius: 20px;
}
.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;
}
.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;
}
.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: #14287b;
  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: #14287b;
}
.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, #e74c3c, #c0392b, #e74c3c);
  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: #e74c3c;
  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 {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.05));
  border: 2px solid #e74c3c33;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: #cd1125;
  font-size: 18px;
} 
.urgence-banner div {
  color: #cd1125;
  font-size: 20px;
  margin: 0 0 20px;
}
.Tablet .urgence-banner a,
.Mobile .urgence-banner a {
  display: block;
}
.informations-item {
  margin: 0 0 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}


/*================================= BEFORE AFTER =================================*/
.img-comp {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: right;
  padding: 0 50px 0 0;
  position: relative;
}
.Mobile .img-comp {
  padding: 0;
  margin: auto;
  text-align: center;
  display: block;
  width: fit-content;
}
/*.img-comp:before {
  content: "";
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #14287b;
  right: 70px;
  position: absolute;
}*/
.Mobile .img-comp:before {
  display: none; 
}

.Mobile .img-comp-img img {
    width: 100%;
    height: 250px;
}
.img-comp-overlay img {
  background: #888;
}
.img-comp-overlay {
  transition: width 0.25s ease;
}
.img-comp-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 30px;
}
.Mobile .img-comp-container{ 
  height: 250px; 
}
.img-comp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.img-comp-img img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    background: #e3e8ed;
    object-position: left bottom;
}
.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: 10px;
  background-color: #fff;  
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.img-comp-slider:before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    background-size: contain;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: linear-gradient(45deg, #0055A4, #EF4135);
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: all 0.3s ease;
    animation: sliderGlow 2s ease-in-out infinite alternate;
    border: 5px solid #fff;
}
.img-comp-slider:after {
    content: "";
    width: 20px;
    height: 20px;
    top: 50%;
    display: block;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;  
    z-index: 5;
    transition: all 0.3s 
ease;
    animation: sliderGlow 2s 
ease-in-out infinite alternate;
    background-image: url(../images/img/arrows-alt-h.webp);
    filter: invert(1);
    background-size: contain;
}
.align_center{
  align-items: center;
}

.decorative-separator {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2c3e50, #c0392b, #34495e, transparent);
  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: #c0392b;
  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);
  }
}

main.contenu h1 {
  text-align: center;
}

.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: #121212;
  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: #2c3e50;
  position: relative;
  padding: 0 0 20px;
  display: block;
}
.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, #c0392b, #a93226, #c0392b);
  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 { 
  color: #c0392b;
} 
.cat-block-img {
  width: 100%;
  height: 250px;
  background: #eee;
  overflow: hidden;
  display: block;
}
.categorie-item a {
  margin: 20px 0;
  width: 100%;
  text-align: left;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 42px;
}
.Mobile .categorie-item a { 
    font-size: 12px; 
    min-height: inherit;
}
.categorie-item.active a,
.categorie-item:hover a {
  color: #c0392b;
} 
.categorie-item figure {
  padding-left: 15px;
  display: block;
  align-items: center;
  height: auto;
  position: relative;
}
.categorie-item figure:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 200px;
  width: 15px;
  display: block;
  transform: translateY(-50%);
  background: #c0392b;
}
.Mobile .categorie-item figure:before { 
  height: 100px;
}
.categorie-item figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.Mobile .categorie-item figure img { 
    height: 150px!important; 
}

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



.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;
  border: 2px solid rgba(231, 76, 60, 0.1);
  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;
} 
.Mobile .block2-content { 
   padding: 20px; 
}
@keyframes introReveal { 
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.block2-stat-item {
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  background: rgba(231, 76, 60, 0.05);
  border: 1px solid rgba(231, 76, 60, 0.1);
  transition: all 0.3s 
  ease;
  opacity: 0;
  transform: translateY(30px);
  animation: statReveal 0.8s 
  ease-out forwards;
}
@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: #e74c3c;
  margin-bottom: 10px;
}
.block2-stat-item p {
  font-size: 14px;
  color: #333333;
  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 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 {
  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;
  height: fit-content;
}
.block4.-txt {
  padding: 40px;
} 
.Mobile .block4.-txt{
  padding: 20px;
}
.block4-right > div,
.col-devis-right > div {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 40px 30px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 0, 0, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}
.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;
}
input.form-input, textarea.form-input {
    border: 2px solid rgba(231, 76, 60, 0.2);
    /* 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: #c0392b;
  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 rgba(255, 0, 0, 0.1);
  font-weight: 600;
}

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


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

@keyframes slide{
  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: #ffdd00;
}
.block6-txt {
  position: relative; 
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s 
  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.block6-content{
  position: relative;
}
.block6-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #c0392b, #34495e, #c0392b);
  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-item{
  position: relative;
}
.block6-item .cercle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c0392b, #a93226);
  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 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);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(192, 57, 43, 0.6), 0 0 0 8px rgba(255, 255, 255, 1), 0 0 0 16px rgba(192, 57, 43, 0.3);
  }
}
.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: #14287b;
}
.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: #2c3e50;
  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: #2c3e50;
  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;
}
.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: #2c3e50;
    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: #e74c3c;
    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: #2c3e50;
    margin-bottom: 5px;
}
.coordonnees-list {
    margin: 30px 0 0;
    display: block;
    box-sizing: border-box;
}
label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}
.urgency-alert {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1)) !important;
    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: #e74c3c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.urgency-alert p {
    color: #c0392b;
    font-weight: 600;
    text-align: center !important;
}

.Tablet .urgency-alert strong,
.Mobile .urgency-alert strong {
    display: block;
}
.Liens {
    display: block;
    column-count: 2;
}
.Mobile .Liens{
  column-count: 1;
}
.Liens a {
    display: block;
    margin: 0 0 15px;
}
.Services h2.Titre {
    text-align: center;
}
.Services {
    padding: 0 0 50px;
}
.logo-contenu img {
    width: 500px;
    height: 280px;
    object-fit: contain;
}
.tel-num a{
  line-height: 2;
  font-size: 18px;
}