  

/* ========== Loader plein écran ========== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-spinner img {
  width: 80px; /* ajuste selon la taille souhaitée */
  height: 80px;
  animation: rotateLoader 1s linear infinite;
}

@keyframes rotateLoader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Animation fadeInUp personnalisée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* État initial */
.animate-scroll {
    opacity: 0;
}

/* Classe appliquée quand visible */
.animate-scroll.visible {
    animation: fadeInUp 0.8s ease-out both;
}

/* Reset simple */

/*------------------------------------- 
ICONE 
-------------------------------------*/


.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 ,
.icon-smartphone: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-arrow-right:before{
    background: url(../images/img/icon-flch.webp);
}



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

body {
      font-family: 'Calibri', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  font-size: 1rem;
}
a, a:hover{
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
    li{
        list-style: none;
    }
}
h2,p{
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 600;
  line-height: normal;
  font-family: "Calibri", sans-serif;
}
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 */ 
}
input,textarea{
    background: none;
    border: none;
    outline: none;
  }
  
  img{
       max-width: 100%;
       max-height: 100%;
  }

/*
button
*/
.btn {
    background-color: #ff2337;
    border-radius: 999px;
    padding: 15px 40px;
    font-size: 20px;
    display: inline-block;
    align-items: center;
    transition: color .3s ease, background-color .3s ease;
    color: #000000;
    font-weight: 600;
}

.btn:hover {
    background-color: #0e0e0e;
    color: #fff;
}
/*.btn:not(:last-child) {
    margin-bottom: 15px;
}*/
@media(min-width: 992px) {
    .btn:not(:last-child) {
        /*margin-right: 15px;*/
        margin-bottom: 0;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
  padding: 4rem 0;
}

/* Flex row */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.col {
  flex: 1 1 100%;
}

/* CTA Bouton */
.cta-btn {
  display: inline-block;
  background: #ff2337;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #e25500;
}

/* Galerie responsive */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery img {
  flex: 1 1 calc(100% - 1rem);
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/*
Header
*/
@media(min-width: 992px) { 
    #header {
        position: absolute;
        width: 100%;
        z-index: 100;
    }
    .realisations #header,
    .temoignages #header,
    .devis #header,
    .mentions #header,
    .contact #header {
        position: static;
        background-color: #0e0e0e;
    }
    #headerNav {
        position: relative;
        /*background-color: #fff;*/
    }
}
@media(min-width: 1200px) { 
    #headerNav .container {
        width: 100%;
        max-width: 1400px;
        padding-top: 0;
        padding-bottom: 0;
    }
}
.header-top {
    position: relative;
    top: 5px;
}
.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-color: #ff2337;
    border-radius: 50px 0 0 50px;
}
.logo-header {
    margin-top: -48px;
}
a.logo {
    display: flex;
    align-items: center;
    width: 220px;
}
@media(min-width: 992px) {
    .logo-header {
        margin-top: -5rem;
        background-color: #fff;
        padding: 3rem 15px 15px;
        border-radius: 0 0 25px 25px;
    }
    .realisations .logo-header,
    .temoignages .logo-header,
    .devis .logo-header,
    .mentions .logo-header,
    .contact .logo-header {
        border-radius: 0;
    }
}
.logo img {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

@media(max-width: 991px) {
    .logo-header {
        margin-top: 0;
    }
    .nav-top-block {
        position: absolute;
    }
}
@media(max-width: 991px) {
    .logo img {
        width: 200px;
    }
}
.nav-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.info-top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
@media(min-width: 768px) {
    .info-top:hover::before {
        box-shadow: 2px 0 2px 2px #8e3136;
    }
}
.tel-left a {
    margin-right: 15px;
}
.info-top a {
    color: #000000;
    font-weight: bold;
}
@media(max-width: 991px) {
    .info-top {
        padding: 3px 10px;
        position: absolute;
        width: 100%;
        z-index: 20;
        justify-content: center;
        gap: 12px;
    }
    .info-top a {
    color: #000;
    font-size: 18px;
    background-color: #ff2337;
    padding: 12px;
  }
}
.nav-list {
    display: table;
}
.Desktop .nav-list { 
    margin: 10px 0 0;
}
.nav-item {
    display: table-cell;
    padding: 0 10px;
    position: relative;
}

.nav-item > a {
    display: flex;
    color: var(--color-black);
    font-size: 16px;
    align-items: center;
}
@media(min-width: 992px) {
    .nav-item > a {
        color: #fff;
        font-weight: bold;
    }
}
li.nav-item.active > a {
    color: #ffe12a;
}
.nav-submenu {
    padding-top: 25px;
    position: absolute;
    top: 100%;
    left: 10px;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    pointer-events: none;
    max-height: none;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
@media(min-width: 992px) {
    .nav-submenu {
        width: 250px;
    }
}
@media (min-width: 1025px) {
    .nav-item:hover .nav-submenu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        pointer-events: auto;
    }
}
.nav-submenu-item {
    background-color: #fff;
    padding: 0 20px;
}
.nav-submenu-item a {
    padding: 10px 0;
    display: block;
    font-size: 16px;
    transition: color .3s ease;
    color: #333;
}
.nav-submenu-item.active a,
.nav-submenu-item:hover a {
    color: #ff2337;
}
.nav-submenu-item:not(:last-child) a {
    border-bottom: 1px dashed #dddddd;
}
.nav-block .btn {
    padding: 15px 20px;
}
.nav-block .btn:hover {
    background-color: #0e0e0e;
    color: #fff;
}
.nav-block .btn i {
    margin-left: 10px;
}
.nav-block .btn:hover i {
    color: #fff;
}

/*
Menu urger mobile
*/
/* ----- BURGER ----- */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 24px;
    cursor: pointer;
}
.burger-menu span {
    display: block;
    height: 4px;
    background: #ff2337;
    border-radius: 2px;
}

/* ----- MOBILE MENU ----- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: left 0.3s ease;
    padding: 20px;
}
.mobile-nav.active {
    left: 0;
}
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
}
.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* ----- MOBILE NAV LIST ----- */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.mobile-nav-item {
    margin-bottom: 10px;
}
.mobile-nav-item > a {
    color: #0e0e0e;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
        display: flex;
    justify-content: space-between;
}
.mobile-submenu {
    padding-left: 15px;
}
.mobile-submenu-item a {
    color: #0e0e0e;
    font-size: 16px;
    text-decoration: none;
    padding: 6px 0;
    display: block;
}
.mobile-nav-item.active > a,
.mobile-submenu-item.active > a {
    color: #ff2337;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
    .burger-menu {
        display: flex;
    }
    .nav-list,
    .cta_block {
        display: none !important;
    }
}

.nav-link .submenu-toggle {
    transform: rotate(90deg);
    margin-left: 7px;
    margin-top: 5px;
    color: #ff2337;
}
.Mobile .nav-link .submenu-toggle {
    transform: none;
    display: flex;
    align-items: center;
;
    align-items: center;
}
/* Rotation flèche submenu mobile */
.submenu-toggle {
    transition: transform 0.3s ease;
}
.submenu-toggle.open {
    transform: rotate(90deg);
}


/* Footer */
.footer-block {
    background-color: #fff;
}
.logo-header-footer {
    margin-top: -7.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 30;
    text-align: center;
    width: fit-content;
    background: #eee;
}
.col-footer {
    flex: 0 0 33%;
}
.col-footer:not(:last-child) {
    margin-right: 45px;
    flex: 0 0 calc(33% - 45px);
}

/* Tablette (≥ 768px) */
@media (min-width: 768px) {
  .col {
    flex: 1 1 calc(50% - 1.5rem);
  }
  .gallery img {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .col {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
  .gallery img {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

/*
Page hero
*/
.section-hero {
    background-color: #e4e4e4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 588px;
    height: 100vh;
    position: relative;
}

.slider-hero {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.item-slider-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 588px;
    height: 100vh;
}
@media(min-width: 1200px) {
    .section-hero,
    .item-slider-hero {
        min-height: 800px;
    }
}
.page-interne {
    height: 64vh;
    min-height: 1px;
}
@media(min-width: 1200px) {
    .page-interne {
        height: 570px;
    }
}
@media(max-width: 1024px) {
    .section-hero, .item-slider-hero {
        min-height: 5px;
        height: 600px;
    }
}
.section-hero:not(.page-interne)::before {
    content: "";
    position: absolute;
    background: linear-gradient(183deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 0%) 80%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    top: 0;
    height: 30%;
    left: 0;
    z-index: 2;
}
.section-hero.page-interne::before {
    content: "";
    position: absolute;
    background: linear-gradient(183deg, rgb(0 0 0 / 65%) 0%, rgba(0, 0, 0, 0.67) 45%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    z-index: 2;
}
@media(min-width: 1600px) {
    .section-hero {
        height: 800px;
    }
}
.section-hero .container {
    position: relative;
    z-index: 7;
    height: 100%;
    display: table;
    padding-top: 0;
}
.caption-slider {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 8rem;
}

.caption-slider > div {
    max-width: 700px;
    position: relative;
    z-index: 2;
}
@media(min-width: 1200px) {
    .caption-slider {
        padding-bottom: 2rem;
        position: relative;
    }
    /*.section-hero:not(.page-interne) .caption-slider::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        background-color: #0e0e0e;
        height: 100%;
    }*/
    .section-hero:not(.page-interne) .caption-slider::after {
        content: "";
        position: absolute;
        left: -32rem;
        top: 0;
        width: 100%;
        /*background-image: url(../images/p/bg-texte.png);*/
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
    }
    .caption-slider > div {
        margin-left: -7rem;
    }
    .page-interne .caption-slider > div {
        padding-top: 8rem;
    }
}
.page-interne .caption-slider > div {
    max-width: 90%;
}
.like-h1 {
    font-size: 65px;
    font-weight: bold;
    color: #fff;
    line-height: 100%;
}
@media(max-width: 991px) {
    header#headerNav {
         position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 100;
        background-color: white;
    }
    .caption-slider {
        padding-bottom: 0;
        padding-top: 8rem;
    }
    .like-h1 {
        font-size: 45px;
    }
}
@media(max-width: 991px) {
    .like-h1 {
        font-size: 25px;
    }
}
/*
Rappel block
*/
.rappel-block {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 0px 90px 0px;
    position: relative;
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.rappel-block .subtitle {
    color: #fff;
}
.background-overlay {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    background-color: #181B1D;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.rappel-block .container {
    position: relative;
}
.flex-bloc {
    justify-content: space-between;
}
.title-left .h3 {
    font-size: 44px;
    line-height: 100%;
    font-weight: bold;
    color: #fff;
}
.subtitle {
    margin-bottom: 5px;
    display: inline-block;
    color: #ff2337;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}
#rappel_immediat {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.form-right .form-input {
    min-width: 300px;
    background-color: #fff;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
}
.form-right .btn {
    border-radius: 0 10px 10px 0;
    padding: 15px;
    margin-left: -10px;
    font-size: 16px;
    letter-spacing: 1px;
    height: 51px;
}
@media(max-width: 991px) {
    #rappel_immediat {
        display: block;
    }
    .form-right .form-input {
        width: 100%;
    }
    .form-right .btn {
        border-radius: 10px;
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
}
/*
Page contenu
*/
.container-texte,
.container-texte-4 {
    padding: 60px 0;
    position: relative;
    background-color: #0e0e0e;
    color: #fff;
}
section.container-texte-4 h2 {
    color: #fff;
}
section.container-texte h1 {
    color: #ffe12a;
    margin: 0 0 30px;
}
.img-parttern {
    top: -6rem;
    position: absolute;
    z-index: 20;
}
@media(max-width: 991px) {
    .img-parttern {
        top: -1rem;
    }
}
.container-texte-4 .img-parttern {
    bottom: -6rem;
}
h1 {
    font-size: 60px;
    line-height: 65px;
}
@media(max-width: 991px) {
    h1 {
        font-size: 36px;
        line-height: 40px;
    }
}
.container-texte-2 {
    padding: 20px 0;
    position: relative;
    min-height: 800px;
    overflow: hidden;
}
.content-texte-2 {
    background-color: #ffe12a;
    padding: 40px 0;
    color: #333;
}
@media(min-width: 992px) {
    .content-texte-2 {
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
}
.container-texte-2 .contact-image {
    width: 100%;
}
.content-texte-2 .btn-devis {
    background-color: #fff;
}
.content-texte-2 .btn-devis:hover {
    background-color: var(--color-black);
    color: #fff;
}
.item-2 {
    position: relative;
}
.item-2 h3 {
    margin-top: 25px;
}
.container-texte-4 .img-parttern {
    bottom: -70px;
    top: auto;
    transform: rotate(-180deg);
}
@media(max-width: 991px) {
    .container-texte-4 .img-parttern {
        bottom: -20px;
    }
}
.container-texte-3 {
    border-top: 5px solid #ff2337;
}

/*
quality
*/
@media(min-width: 1200px) {
    .qualite-block {
        width: 100%;
        position: absolute;
        bottom: -25px;
        z-index: 25;
    }
}
.qualite-container {
    display: flex;
    justify-content: flex-end;
}

@media(min-width: 1200px) {
    .qualite-container {
        margin-right: -7rem;
    }
}
.qualite-item {
    position: relative;
    padding: 20px 25px;
    background: #fff;
    border-radius: 50px 50px 50px 0px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    flex: 0 0 250px;
    max-width: 250px;
    margin-left: 20px;
    z-index: 1;
}
@media(max-width: 991px) {
    .qualite-container {
        display: block;
    }
    .qualite-item {
        margin-right: auto;
        margin-left: auto;
    }
    .qualite-item:not(:last-child) {
        margin-bottom: 25px;
    }
}

.qualite-icon {
  width: 80px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 60px;
  background: #ff2337;
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 #F2F3F5;
  position: relative;
  transition: all .5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qualite-item:hover .qualite-icon {
  transform: rotateY(360deg);
}

.qualite-icon img{
  width: 48px;
  /*filter: brightness(0) invert(1);*/
}

.qualite-content{
  flex: 1;
}

.qualite-content .like-h4 {
  color: #0e0e0e;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}

.qualite-content p{
  color: #333;
}

/*
Services
*/
.services-block {
    padding: 60px 0;
}
.heading-title {
    text-align: center;
    margin-bottom: 35px;
}
.heading-title .like-h2 {
    color: #0e0e0e;
    font-size: 36px;
}
@media(max-width: 991px) {
    .services-block {
        padding-top: 30px;
    }
    .heading-title .like-h2 {
        line-height: 130%;
        font-size: 24px;
    }
}
.services-container {
    display: flex;
    flex-wrap: wrap;
}
.serv-item {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px) ;
    margin: 0 15px 25px;
    position: relative;
  margin-bottom: 25px;
  padding: 20px 20px 15px 20px;
  border-radius: 50px 50px 50px 0;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}
.serv-item:hover {
    background-color: var(#f7f7f7);
}
.serv-item.active {
    background-color: #0e0e0e;
    color: #fff;
}

.serv-item-img{
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 30px 0;
    height: 250px;
    background-color: #f7f7f7;
    margin-bottom: 20px;
}

.serv-item-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  border-radius: 30px 30px 30px 0;
  transition: all .5s ease-in-out;
}

.serv-item:hover .serv-item-img img{
  transform: scale(1.1);
} 

.serv-item.active .serv-item-info .btn:hover {
    background-color: #fff;
    color: #ff2337;
}
.serv-item-info .btn:hover {
    background-color: #0e0e0e;
    color: #fff;
}

.serv-item-info a.like-h4 {
    font-size: 22px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #333;
    display: inline-block;
    background: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
}

.serv-item-info a.like-h4:hover {
  color: #0e0e0e;
}
.serv-item.active .serv-item-info a.like-h4 {
    color: #fff;
}

.accordeon-container {
    padding: 0 5%;
}
.image_accordion {
    display: flex;
    width: 100%;
    overflow: hidden;
    gap: 1px;
}

.image_accordion-item {
    width: 50%;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 500px;
    cursor: pointer;
}
.Mobile .image_accordion-item,
.Tablet .image_accordion-item { 
    padding: 5px;
}
@media(max-width: 991px) {
    .image_accordion {
        flex-wrap: wrap;
        justify-content: center;
    }
    .image_accordion-item:not(:last-child) {
        width: calc(50% - 1px);
        flex: 0 0 calc(50% - 1px);
        height: 150px;
    }
    .image_accordion-item:last-child {
        flex-basis: 100%;
        height: 150px;
    }
}

.image_accordion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.image_accordion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_accordion-item-area {
    display: flex;
}

.image_accordion-item-area-icon a i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #212121;
    border-radius: 50%;
    transition: 0.4s;
}

.image_accordion-item-content {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transform: translateY(30px);
    padding: 0 25px;
}

.image_accordion-item-content .like-h4 {
    transition: 0.4s;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.image_accordion-item.active {
    width: 100%;
}

.image_accordion-item.active::before,
.image_accordion-item.active::after {
    opacity: 1;
}

.image_accordion-item.active .image_accordion-item-content {
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
    transform: translateY(0);
}

.image_accordion-item.active .font {
    opacity: 0;
}
.image_accordion-item-area {
    text-align: left;
    width: auto;
    align-items: center;
    background: var( --color-primary );
    border-radius: 15px 15px 15px 15px;
    padding: 40px 60px 40px 35px;
}
@media(max-width: 991px) {
    .image_accordion-item-content {olute;
        right: 0;
        bottom: 40px;
        opacity: 1;
        visibility: visible;
        padding: 0 5px;
        justify-content: center;
    }
    .image_accordion-item-area {
        text-align: center;
        border-radius: 5px;
        padding: 10px;
        height: 58px;
    }
    .serv-item-info a.like-h4 {
        font-size: 12px;
    }
}

/*
contenu
*/
.container-texte-3 {
    padding: 60px 0;
}
@media(min-width: 992px) {
    .item-3,
    .item-4 {
        display: flex;
        align-items: center;
    }
    .item-3 *,
    .item-4 * {
        flex: 1;
    }
}
.row-rev {
    flex-direction: row-reverse;
}
.item-4 h2,
.item-4 h3 {
    color: #ff2337;
}
.item-4 h3 {
    margin-top: 15px;
}
.item-4 figure {
    margin-right: 40px;
}
.Tablet .item-4 figure,
.Mobile .item-4 figure {
    margin: 20px 0 !important;
    display: flex;
}
.item-4 figure::after {
    width: 130px;
    position: absolute;
    content: "";
    height: 100%;
    background-color: #ff2337;
    top: 37px;
    left: -70px;
}
.container-texte-3 .item-4 figure::after {
    display: none;
}
.container-texte-3 .item-4:not(.row-rev) figure {
    margin-right: 0;
    margin-left: 40px;
}
.container-texte-3 .item-4:not(:last-child) figure {
    margin-bottom: 60px;
}
@media(max-width: 991px) {
    .item-4 figure::after {
        display: none;
    }
}
.item-3 figure img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}
.item-4 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Tablet .item-4 figure img,
.Mobile .item-4 figure img { 
    height: 250px; 
}
.item-5 {
    background-color: #0e0e0e;
    color: #fff;
    padding: 40px;
}
section h2::after {
    content: "";
    display: block;
    border-bottom: 2px solid #ff2337;
    width: 45px;
    margin: 2rem 0;
}
section .item-2 h2::after {
    border-bottom-color: #fff;
    margin: 2rem 0;
}
@media(max-width: 991px) {
    section .item-2 h2::after {
        margin-left: 0;
    }
}

/*
Section 1
*/
.container-texte1 {
    position: relative;
    padding: 80px 0;
}
.container-texte1 h2, .container-texte1 h3, .container-texte1 p {
    color: #000000;
}
@media(min-width: 992px) {
    .container-texte1::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 200px;
        background-color: #ffe12a;
        bottom: 30px;
        right: 0;
        z-index: -1;
    }
}
.container-texte1 .contact-image {
    right: initial;
    left: 0;
}
.container-texte1 .container {
    position: relative;
}

.item-1-logo {
    align-items: center;
    display: flex;
    background-color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    position: absolute;
    padding: 10px;
    width: 205px;
    top: -80px;
    border-radius: 0 0 99px;
    height: 280px;
}
.item-1-logo img {
    height: auto;
}
.texte-1 {
    max-width: 600px;
    background-color: #ff2337;
    padding: 60px 40px 40px;
    margin: 0 6rem 0 auto;
}

.bloc-tel-content {
    position: absolute;
    right: 0;
    top: -30px;
    z-index: 4;
}
@media(max-width: 991px) {
    .container-texte1 {
        padding: 0;
    }
    .container-texte1 .container {
        width: 100%;
         padding: 0;
    }
    .texte-1 {
        padding: 20px;
        margin: 0;
    }
    .bloc-tel-content {
        right: 50%;
        top: -100px;
        width: 300px;
        transform: translateX(50%);
    }
}
.tel-chantier {
    background-color: #0e0e0e;
    padding: 15px 35px 15px 15px;
    display: flex;
    border-radius: 99px;
    min-width: 285px;
    align-items: center;
}
.tel-chantier div strong {
    font-weight: normal;
    display: block;
    color: #ffe12a;
}
.tel-chantier span {
    border-radius: 50%;
    max-width: 50px;
    background-color: #fff;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    width: 50px;
    height: 50px;
}
.tel-chantier a {
    color: #ffe12a;
    font-size: 22px;
}
section .texte-1 h2::after {
    border-bottom-color: #fff;
}
@media(min-width: 992px) {
    .texte-3 {
        padding-right: 35px;
    }
}
.combine-image {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex ;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
    flex: 0 0 auto;
    width: 58.3333333333%;
    padding-left: 15px;
}
.combine-image figure {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}
.combine-image figure span {
    display: block;
    margin-bottom: 30px;
}
.fig-1,
.fig-4 {
    flex: 0 0 auto;
    width: 58.3333333333%;
}
.fig-2, .fig-3 {
    flex: 0 0 auto;
    width: 41.6666666667%;
}
.fig-2 span {
    padding-right: 50px;
    margin-top: 45px;
}
.fig-3 span {
    padding-left: 50px;
}
.fig-4 span {
    margin-top: -130px;
}

/*
footer
*/
.footer-block {
    padding: 80px 0 25px;
    position: relative;
} 
.footer-block .row {
    gap: 0;
}
@media(max-width: 991px) {
    .footer-block .row {
        display: block;
    }
}

.footer-block .container {
    position: relative;
}

.footer-link-area .h3 {
    color: #0e0e0e;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 32px;
}
.footer-link-area ul li:not(:last-child) {
    margin-bottom: 20px;
}
.footer-link-area ul li a {
    line-height: normal;
    display: block;
    font-size: 16px;
    transition: padding-left .3s ease;
    color: #333;
}
.footer-link-area ul li a:hover {
    padding-left: 2px; 
    color: #b10000; 
    text-decoration: underline;
}
.footer-link-area ul li a:active,
.footer-link-area ul li.active a,
.footer-link-area ul li a:focus {
    color: #ff2337;
}

.contact-footer li {
    display: flex;
    align-items: center;
}
.contact-footer li i {
    margin-right: 5px;
}
@media(min-width: 992px) {
    .copyright-area {
        display: flex;
        justify-content: space-between;
    }
}
.copyright-area ul {
    display: flex;
    gap: 17px;
}
@media(max-width: 991px) {
    .footer-link-area {
        margin-bottom: 30px;
    }
    .copyright-area ul {
        margin-top: 15px;
        text-align: center;
        font-size: 10px;
        align-items: center;
    }
}

.container-contact,
.container-texte-7 {
    padding: 60px 0;
    position: relative;
}
@media(min-width: 992px) {
    .container-texte-item {
        width: 44%;
        margin-left: auto;
        position: relative;
    }
}
.logo-divers {
    position: absolute;
    left: -12rem;
    top: 50%;
    transform: translateY(-50%);
}
.logo-divers span {
    display: block;
    width: 150px;
    margin: 15px auto;
    text-align: center;
}

/*
Formulaire
*/
.devisBlockFixed {
    position: fixed;
    right: -500px;
    top: 50%;
    transform: translateY(-45%);
    transition: right 0.4s ease;
    z-index: 100;
}
.devis .btn-fixed-mobile {
    display: none !important;
}
.devisBlockFixed.active {
    right: 5rem; /* position finale */
}

.devisBlockFixed .btn-close {
        display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #ff2337;
    color: #fff;
    border: none;
    position: absolute;
    top: 25px;
    left: -20px;
    cursor: pointer;
    border-radius: 99px;
    width: 40px;
    height: 40px;
    font-size: 17px;
}
.devis-form{
  background: #fff;
  border-radius: 80px 80px 80px 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
@media(min-width: 768px) {
    .devis-form{
      width: 450px;
    }
}

.contact-image {
    min-height: 250px;
    overflow: hidden;
}
.contact-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media(max-width: 991px) {
    .container-contact {
        padding: 0;
    }
    .container-texte-5 .container {
        padding: 0;
        width: 100%;
    }
    .contact-image {
        height: 250px;
    }
}
@media(min-width: 992px) {
    .contact-image {
        position: absolute;
        height: 100%;
        background-color: #fff;
        top: 0;
        right: 0;
        width: 50%;
    }
    .container-texte-5 .contact-image {
        left: 0;
        right: initial;
        height: 90%;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 0 90px 90px 0;
        width: 60%;
    }
}

.devis-form form{
  padding: 30px;
}

.devis-form-header{
  background: #0e0e0e;
  border-radius: 50px 50px 50px 0;
  padding: 20px 30px;
}

.devis-form-header .h3 {
    font-size: 22px;
}
.devis-form-header .h3,
.devis-form-header p {
  color: #fff;
}
@media(max-width: 991px) {
    .devisBlockFixed.active {
        right: 1rem;
        transform: translateY(-50%);
    }
    .devis-form{
        min-width: 300px;
      width: 90%;
      margin: auto;
    }
    .devis-form-header p {
        display: none;
    }
    .devisBlockFixed .btn-close {
        top: -22px;
        left: 5px;
    }
    .devis-form .btn {
        font-size: 14px;
    }
}

.devis-form .form-group {
  margin-bottom: 20px
}

#avis_form .form-control,
#FormDevis .form-control,
.devis-form .form-group .form-control {
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 12px;
    color: #333;
    background-color: #f9f9f9;
    border: none;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.devis-form .btn {
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: normal;
    width: 100%;
    cursor: pointer;
    font-size: 22px;
}
.btn-cta {
    margin-top: 25px;
}

.containerDevis {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    background-color: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 0 20px 3px #ebebeb;
}
@media(max-width: 991px) {
    .containerDevis {
            margin: 5rem 15px auto;
    }
}
.containerDevis h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px !important;
}
.containerDevis .form-control {
    margin: 7px 0;
}
.containerDevis textarea.form-control {
    resize: vertical;
    height: 125px;
}

/*
Devis page
*/
.mentionL,
.temoinBlock,
#realisations,
.devis-section,
.ContactezNous {
    position: relative;
    background-color: #f7f7f7;
    padding: 60px 0 210px;
}
@media(max-width: 991px) {
    .temoinBlock,
    #realisations,
    .devis-section,
    .ContactezNous {
        padding-top: 120px;
    }
}
.temoinBlock h1,
.temoinBlock h2,
#realisations h1,
.devis-section h1,
.ContactezNous h1 {
    color: #0e0e0e;
    font-weight: bold;
    margin-bottom: 32px;
}
.devis-section h1 {
    margin-bottom: 0;
}
@media(max-width: 991px) {
    .temoinBlock h1,
    .temoinBlock h2,
    #realisations h1,
    .devis-section h1,
    .ContactezNous h1 {
        font-size: 26px;
        padding-top: 32px;
        text-align: center;
    }
}
.temoinBlock::before,
#realisations::before,
.devis-section::before,
.ContactezNous::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.ContactezNous h2 {
    font-size: 24px;
    font-weight: bold;
    color: #0e0e0e;
}
input.btn.btn-submit {
    padding: 13px 35px;
    font-size: 16px;
    margin: auto;
}
#realisations::before {
    background-position: top right;
}
@media(min-width: 768px) {
    #realisations .col-md-3 {
        max-width: calc(33% - 15px);
        flex: 0 0 calc(33% - 15px);
        padding: 0 15px;
    }
}
@media(min-width: 992px) {
    #realisations .row {
        gap: 0;
    }
}

@media(max-width: 991px) {
    #realisations .row {
        display: block;
    }
}
#realisations .swipebox.thumbnail {
    background-color: #000000;
    display: flex;
    height: 200px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 520ms ease;
    border-radius: 10px;
}
#realisations .swipebox.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 520ms ease;
}
#realisations .swipebox.thumbnail:hover img {
    transform: scale(1.1);
    opacity: .5;
}

.devis-section .row {
    justify-content: center;
    position: relative;
}
.temoinBlock .container,
#realisations .row,
.ContactezNous .row {
    position: relative;
}
.temoinBlock .item-tem:not(:last-child) {
    border-bottom: 1px solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
@media(min-width: 992px) {
    .temoinBlock .col-md-6 {
        max-width: calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
    }
}
#avis_form .form-control {
    display: block;
    width: 100%;
    background-color: #ffffff;
}
#avis_form input.btn {
    color: #000;
    border: 0;
    margin-top: 15px;
    background-color: #ff2337;
    padding: 10px 28px;
    font-size: 16px;
}
div#Map {
    height: 100%;
    min-width: 300px;
}

#realisations .swipebox.thumbnail {
    background-color: #000000;
    display: flex;
    height: 300px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 520ms ease;
    border-radius: 10px;
}
#realisations .swipebox.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 520ms ease;
}
#realisations .swipebox.thumbnail:hover img {
    transform: scale(1.1);
    opacity: .5;
}

#mail2,
#mail { display:none; }
.item-rappel {
    margin-top: 30px;
}
.item-rappel .h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ff2337;
}
.item-rappel .form-input {
    background-color: white;
}
.item-rappel .btn {
    display: block;
    background-color: #ff2337;
    width: 100%;
    padding: 10px;
    color: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
}
.copyright-area {
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 45px;
    border-top: 1px solid #dddddd;
    padding-top: 35px;
}
.copyright-area a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    font-size: initial;
}
/*
sroll top
*/
.scroll-top{
    cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transform: translateY(10px) scale(0.95);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}
.scroll-top i {
        transform: rotate(-90deg);
    display: block;
}

/* focus accessible */
.scroll-top:focus{
  outline: 3px solid rgba(255,255,255,0.2);
}

/* petite variante responsive */
@media (max-width:767px){
    .scroll-top{ 
        right: 12px; 
        bottom: 132px; 
        width:40px; 
        height:40px; 
        font-size:18px; 
    }
}
.text-center {
    text-align: center;
}
.mt-30 {
    margin-top: 30px;
}

/*
Avis
*/
#temoignages {
    padding: 60px 0;
    background-color: #efefef;
}
.heading-title {
    margin-bottom: 32px;
}
.heading-title .h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-black);
}
@media(min-width: 768px) {   
    .slide-temoignage .slick-track {
        margin-left: -10px;
        margin-right: -10px;
    }
    .slider-item-temoinages {
        margin-left: 10px;
        margin-right: 10px;
    }
}
.item-avis {
    background: #fff;
    position: relative;
    padding: 38px 35px;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 16px 20px 0px rgba(171, 171, 171, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.item-avis p {
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: auto;
}
.item-author-info {
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.testimonial-img {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    overflow: hidden;
    background-color: var(--color-light);
}

.testimonial-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.avis-title {
    line-height: 1.4;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
}
.avis-subtitle {
    font-size: 14px;
}
.top-avis {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.google-block {
    width: 20px;
    display: block;
}

@media(max-width: 991px) {
    .testimonial-content {
        padding-top:36px
    }
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    transition: background-color .3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 24px;
    justify-content: center;
    z-index: 10;
}
.Tablet .slick-arrow,
.Mobile .slick-arrow {
    display: none !important;
}
.slick-arrow::before {
    font-family: 'Calibri', sans-serif;
}
.slick-next {
    content: "\e901";
    right: 2rem;
}
.slick-prev {
    content: "\e900";
    left: 2rem;
}

@media(min-width: 1200px) {
    .slick-next {
        right: -4rem;
    }
    .slick-prev {
        left: -5rem;
    }
}

.slick-arrow:hover, {
    background-color: #fff;
    opacity: .8;
}
.slick-arrow:focus {
    background-color: #0e0e0e;
    color: #fff;
}
 .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;
}
 /*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

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

.blog_pageIntrouvable > div {
  height: 100%;
  color: #ffe12a;
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #ff2337;
    font-weight: 600;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #ffe12a;
}
.blog_pageIntrouvable a {
    color:  #ff2337;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
.Mobile .blog_pageIntrouvable {
    font-size: 14px;
  }
  .Mobile .blog_pageIntrouvable a {
      display: block;
  }
  .Mobile .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .Mobile .blog_pageIntrouvable h1 {
    font-size: 100px;
  }

.btn-fixed-mobile {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    width: 100%;
    right: 0;
}
.btn-fixed-mobile a {
    background-color: #0e0e0e;
    padding: 11px 20px;
    color: white;
    display: block;
    text-align: center;
}
.btn-fixed-mobile a span {
    color: #ff2337;
}
.btn-fixed-mobile a span i {
    margin-left: 10px;
}

.Mobile .GoogleBagde {
    box-shadow: none !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    left: 0 !important;
    transform: none !important;
    bottom: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}
.Mobile .GoogleBagde-icon-G {
    position: relative;
    top: 4px;
}
.Mobile .GoogleBagde-notes_value {
    display: none !important;
}
.Mobile .GoogleBagde-Rating__Container {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}

.text-ref {
    padding-top: 62px;
    font-size: 12px;
    text-align: center;
}
.text-ref a {
    color: inherit;
}
@media(min-width: 992px){
    .ContactezNous .col-lg-6 {
        max-width: calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
    }
}
.ContactezNous #FormDevis .form-control {
    background-color: #f1f1f1;
}
.ContactezNous .info-footer {
    margin-bottom: 15px;
}

.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 75px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 30px 0;
    text-shadow: 0 0 8px #000;
}
.Desktop.ville .title-slider {
    line-height: normal;
    font-size: 42px;
    color: #ffffff;
    font-weight: 500;
    /* margin: 0; */
    font-style: italic;
    text-transform: none;
}
.Mobile .title-slider {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
}
.Desktop .cta_block {
    width: 300px;
}
figure.fig-1.animate-scroll.visible {
    width: 100%;
}




.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;
  width: fit-content;
  margin: auto;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
    margin: 30px 0 15px;
}
.Mobile .section-mentions,
.Tablet .section-mentions {
  padding-top: 200px;
}



/*============================
CONTACT & DEVIS
============================*/

.contact-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}
.Mobile .contact-content {
    display: block;
    margin-top: 0;
    padding: 20px 0; 
}
.Mobile .adr-map {
    padding: 20px 0;
}
.Tablet .contact-content {
  padding: 20px 0; 
}
.coordonne_cont img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.ContactezNous b {
    font-size: 20px;
    margin-bottom: 30px;
    display: block;
}
.ContactezNous-h1 {
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Calibri;
    font-size: 32px;
}
.adr-map {
    padding: 0 0 0 40px;
}
.coordonne_cont a {
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.ContactezNous {
    text-align: center;
}
.devis .Devisgratuit-h3 {
    font-size: 32px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}
.Mobile.devis .Devisgratuit-h3 {
    font-size: 24px;
}
.devis .Devisgratuit {
    width: 80%; 
    margin: 50px auto 30px;
    text-align: center;
}
body.Desktop.devis .btn-submit {
    max-width: 48%;
    margin: auto;
}
body.Mobile.devis .Devisgratuit {
    display: block; 
    width: 100%;
    padding: 175px 0 0;
    margin-top: 0;
}
.Tablet.devis .Devisgratuit {
  margin-top: 225px;
}


body.Mobile.devis div#devisGratuit {
    display: none;
}

a.btn.btn-cont {
    background: rgba(255, 255, 255, .3);
    color: #000;
    border-radius: 0; 
    margin-top: 20px;
    text-transform: uppercase;
    border: solid 1px#fff;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
}
.boutton-slider {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.Mobile .boutton-slider { 
    justify-content: center; 
}
.contact .ContactezNous #FormDevis {
    display: block!important;
}
.contact-content div#Map {
    height: 450px;
    width: 100%;
    z-index: 0;
}
.Mobile .contact-content div#Map {
    height: 300px;
    width: 100%;
}
.ContactezNous svg, .ContactezNous img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}


 
.Tablet .corps > .row > div {
  max-width: 100%;
  flex: 0 0 100%;
}
.Tablet .competences > .row > div {
  max-width: 25%;
  flex: 0 0 25%;
}
.Tablet .mainright .Devisgratuit {
  display: none;
}
.Tablet .ImgLeft {
  display: none;
}
.Mobile .twoBox img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}
.Tablet.contact .adr-map {
  padding: 0 0 0 20px;
}


.ContactezNous input.form-control {
    margin: 5px 0 0;
}
.btn-cta.btn-slider {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.flag img {
    width: 150px;
    height: 79px;
    object-fit: contain;
}

.flag {
    display: flex;
}


.Tablet .contact-image img,
.Mobile .contact-image img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    margin: 0;
}
.Tablet .info-top,
.Mobile .info-top {
    background: #ffe12a;
}
.Desktop .info-top { 
    padding: 12px 0;
}
.Tablet .qualite-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-content: center;
  justify-content: center;
  margin: 40px 0 0;
}
.Tablet .qualite-item:not(:last-child){
    margin-bottom: 0;
}
.Tablet .texte-1.animate-scroll.visible {
  max-width: 100%;
}
.Tablet .combine-image {
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  padding: 0;
}
.Mobile .item-3 figure img ,
.Tablet .item-3 figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: auto;
  display: block;
}
.Tablet .list-footer ul{
    column-count: 2;
}
.Mobile .footer-block,
.Tablet .footer-block {
    margin-bottom: 50px;
}
.Tablet .copyright-area {
  display: flex;
  align-content: center;
  justify-content: space-around;
  width: 100%;
}

.Tablet .copyright-area ul { 
    margin: 0;
}

section.temoinBlock .item-avis {
    width: 100%;
    max-width: 360px;
}




/*
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 {
    background: #e3e8ed;
    padding: 50px; 
    position: relative;
    margin: 0 20px;
}
.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-item p {
    font-style: italic;
    font-size: 18px;
    margin: 0 0 30px;
}
.avis-nom 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;
}

textarea.form-control {
    font-family: inherit;
}
body.temoignages .item-avis p {
    min-height: auto;
}
body.temoignages .item-avis {
    width: 100%;
    max-width: 500px;
}