@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.woff2') format('woff2'),
        url('../fonts/Montserrat-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-LightItalic.woff2') format('woff2'),
        url('../fonts/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========== ICOMOON ========== */
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.woff2') format('woff2'),
        url('../fonts/icomoon.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
  content: "\e900";
}
.icon-arrow-right:before {
  content: "\e901";
}
.icon-arrow-up-right:before {
  content: "\e902";
}
.icon-check:before {
  content: "\e903";
}
.icon-chevron-left:before {
  content: "\e904";
}
.icon-chevron-right:before {
  content: "\e905";
}
.icon-chevrons-up:before {
  content: "\e906";
}
.icon-home:before {
  content: "\e907";
}
.icon-mail:before {
  content: "\e908";
}
.icon-map-pin:before {
  content: "\e909";
}
.icon-phone:before {
  content: "\e90a";
}
.icon-phone-call:before {
  content: "\e90b";
}
.icon-smartphone:before {
  content: "\e90c";
}
.icon-truck:before {
  content: "\e90d";
}

/* ========== VARIABLES ROOT ========== */
:root {
  --color-primary: #f29044;
  --color-secondary: #353739;
  /*--color-secondary: #005b96;*/
  --color-white: #ffffff; 
  --color-dark: #000000;
}

/* ========== 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 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 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{
    margin-bottom: 0;
}
input,textarea{
    background: none;
    border: none;
    outline: none;
  }
  
  img{
       max-width: 100%;
       max-height: 100%;
  }

/*
button
*/
.btn {
    background-color: #f29044;
    border-radius: 999px;
    padding: 15px 40px;
    font-size: 20px;
    display: inline-block;
    align-items: center;
    transition: color .3s ease, background-color .3s ease;
    color: black;
}
.btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.btn:not(:last-child) {
    margin-bottom: 15px;
}
@media(min-width: 992px) {
    .btn:not(:last-child) {
        margin-right: 15px;
        margin-bottom: 0;
    }
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* 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: #f29044;
  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: var(--color-secondary);
    }
    #headerNav {
        position: relative;
        /*background-color: var(--color-white);*/
    }
}
@media(min-width: 1200px) { 
    #headerNav .container {
        width: 100%;
        max-width: 1400px;
        padding-top: 0;
        padding-bottom: 0;
    }
}
.header-top {
    position: relative;
    top: 10px;
}
.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 50px 0 0 50px;
}
.logo-header {
    margin-top: -48px;
}
@media(min-width: 992px) {
    .logo-header {
        margin-top: -5rem;
        background-color: var(--color-white);
        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: auto;
}

@media(max-width: 991px) {
    .logo-header {
        margin-top: 0;
    }
    .nav-top-block {
        position: absolute;
    }
}
@media(max-width: 767px) {
    .logo img {
        width: 145px;
    }
}
.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: var(--color-black);
    font-weight: bold;
}
@media(max-width: 767px) {
    .info-top {
        padding: 3px 10px;
        position: absolute;
        width: 100%;
        z-index: 20;
        justify-content: center;
        gap: 12px;
    }
    .info-top a {
        color: var(--color-white);
        font-size: 16px;
        background-color: var(--color-primary);
        padding: 5px 10px;
    }
}
.nav-list {
    display: table;
}
.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: var(--color-white);
        font-weight: bold;
    }
}
.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: var(--color-white);
    padding: 0 20px;
}
.nav-submenu-item a {
    padding: 10px 0;
    display: block;
    font-size: 16px;
    transition: color .3s ease;
    color: var(--color-dark);
}
.nav-submenu-item.active a,
.nav-submenu-item:hover a {
    color: var(--color-primary);
}
.nav-submenu-item:not(:last-child) a {
    border-bottom: 1px dashed #dddddd;
}
.nav-block .btn {
    padding: 15px 20px;
}
.nav-block .btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.nav-block .btn i {
    margin-left: 10px;
}
.nav-block .btn:hover i {
    color: var(--color-white);
}

/*
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: var(--color-primary);
    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: var(--color-secondary);
    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: var(--color-secondary);
    font-size: 16px;
    text-decoration: none;
    padding: 6px 0;
    display: block;
}
.mobile-nav-item.active > a,
.mobile-submenu-item.active > a {
    color: var(--color-primary);
}

/* ----- 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: var(--color-primary);
}
.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: var(--color-white);
}
.logo-header-footer {
    margin-top: -7.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 30;
    text-align: center;
}
.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: 70vh;
    }
}
.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: var(--color-secondary);
        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: var(--color-white);
    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: 767px) {
    .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;
}
.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: var(--color-white);
}
.subtitle {
    margin-bottom: 5px;
    display: inline-block;
    color: var(--color-primary);
    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: var(--color-white);
    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: 767px) {
    #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: var(--color-secondary);
    color: var(--color-white);
}
.img-parttern {
    top: -6rem;
    position: absolute;
    z-index: 20;
}
@media(max-width: 767px) {
    .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: rgb(242 144 68 / 90%);
    padding: 40px 0;
    color: var(--color-dark);
}
@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: var(--color-white);
}
.content-texte-2 .btn-devis:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
.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: 767px) {
    .container-texte-4 .img-parttern {
        bottom: -20px;
    }
}
.container-texte-3 {
    border-top: 5px solid var(--color-primary);
}

/*
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: var(--color-white);
    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: 767px) {
    .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: var(--color-white);
  font-size: 60px;
  background: var(--color-primary);
  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: var(--color-secondary);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}

.qualite-content p{
  color: var(--color-dark);
}

/*
Services
*/
.services-block {
    padding: 60px 0;
}
.heading-title {
    text-align: center;
    margin-bottom: 35px;
}
.heading-title .like-h2 {
    color: var(--color-secondary);
    font-size: 36px;
}
@media(max-width: 767px) {
    .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: var(--color-white);
  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: var(--color-secondary);
    color: var(--color-white);
}

.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: var(--color-white);
    color: var(--color-primary);
}
.serv-item-info .btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.serv-item-info a.like-h4 {
    font-size: 22px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-dark);
    display: inline-block;
}

.serv-item-info a.like-h4:hover {
  color: var(--color-secondary);
}
.serv-item.active .serv-item-info a.like-h4 {
    color: var(--color-white);
}

.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;
}
@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: var(--color-primary);
}
.item-4 h3 {
    margin-top: 15px;
}
.item-4 figure {
    margin-right: 40px;
}
.item-4 figure::after {
    width: 130px;
    position: absolute;
    content: "";
    height: 100%;
    background-color: var(--color-primary);
    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: auto;
    max-width: 100%;
}
.item-4 figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-5 {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 40px;
}
section h2::after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--color-primary);
    width: 45px;
    margin: 2rem 0;
}
section .item-2 h2::after {
    border-bottom-color: var(--color-white);
    margin: 2rem 0;
}
@media(max-width: 767px) {
    section .item-2 h2::after {
        margin-left: 0;
    }
}

/*
Section 1
*/
.container-texte1 {
    position: relative;
    padding: 80px 0;
}

@media(min-width: 992px) {
    .container-texte1::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 200px;
        background-color: var(--color-secondary);
        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: var(--color-primary);
    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: var(--color-secondary);
    padding: 15px 35px 15px 15px;
    display: flex;
    border-radius: 99px;
    min-width: 285px;
}
.tel-chantier div strong {
    font-weight: normal;
    display: block;
    color: var(--color-white);
}
.tel-chantier span {
    border-radius: 99px;
    flex: 0 0 50px;
    max-width: 50px;
    background-color: var(--color-white);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.tel-chantier a {
    color: var(--color-primary);
}
section .texte-1 h2::after {
    border-bottom-color: var(--color-white);
}
@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: 767px) {
    .footer-block .row {
        display: block;
    }
}

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

.footer-link-area .h3 {
    color: var(--color-secondary);
    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: var(--color-dark);
}
.footer-link-area ul li a:hover {
    padding-left: 2px;
}
.footer-link-area ul li a:active,
.footer-link-area ul li.active a,
.footer-link-area ul li a:focus {
    color: var(--color-primary);
}

.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: 767px) {
    .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: #f29044;
    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: var(--color-white);
  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: var(--color-white);
        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: var(--color-secondary);
  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: var(--color-white);
}
@media(max-width: 767px) {
    .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: var(--color-dark);
    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: 767px) {
    .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: 767px) {
    .temoinBlock,
    #realisations,
    .devis-section,
    .ContactezNous {
        padding-top: 120px;
    }
}
.temoinBlock h1,
.temoinBlock h2,
#realisations h1,
.devis-section h1,
.ContactezNous h1 {
    color: var(--color-secondary);
    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: var(--color-secondary);
}
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: 767px) {
    #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: #e7e7e7;
}
#avis_form input.btn {
    color: white;
    border: 0;
    margin-top: 15px;
    background-color: var(--color-primary);
    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: var(--color-primary);
}
.item-rappel .form-input {
    background-color: white;
}
.item-rappel .btn {
    display: block;
    background-color: var(--color-primary);
    width: 100%;
    padding: 10px;
    color: var(--color-white);
    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;
}

/*
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: 120px;
}
.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: 'icomoon';
}
.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: var(--color-white);
    opacity: .8;
}
.slick-arrow:focus {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.avis > i {
  background: url('../images/rating-sprit.webp') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.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
*/
.blog_pageIntrouvable {
      height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
}

.blog_pageIntrouvable .d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog_pageIntrouvable h1 {
  font-size: 8rem;
  margin: 0;
  font-weight: 700;
  color: var(--color-primary);
}

.blog_pageIntrouvable p {
    color: var(--color-dark);
  font-size: 2rem;
  margin: 10px 0 20px;
  font-weight: 600;
}

.blog_pageIntrouvable span {
    color: var(--color-dark);
  font-size: 1.1rem;
}

.blog_pageIntrouvable a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog_pageIntrouvable a:hover,
.blog_pageIntrouvable a:focus {
  text-decoration: underline;
  outline: none;
}

.btn-fixed-mobile {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    width: 100%;
    right: 0;
}
.btn-fixed-mobile a {
    background-color: var(--color-secondary);
    padding: 11px 20px;
    color: white;
    display: block;
    text-align: center;
}
.btn-fixed-mobile a span {
    color: var(--color-primary);
}
.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;
}