
/* ========== VARIABLES ROOT ========== */
:root {
  --font-second: sans-serif;
  --font-global: sans-serif;
  --font-alt: sans-serif;
  --full-wrapper-margin-x: 30px;
  --container-width: 1350px;
    
  scroll-behavior: auto

  /* Font size */
  --font-size: 16px;
  --font-size-xxl: 36px;
  --font-size-xl: 24px;
  --font-size-lg: 18px;
  --font-size-md: 14px;
  --font-size-xs: 12px;

  /* Couleurs */
  --color-bg: #f8f9fa;
  --color-light: #E1EDE6;
  --color-primary: #316600;
  --color-primary-hover: #5b9101;
  --color-secondary: #316600;
  --color-dark: #111111;
  --color-nav-bg: #222222;
  --color-nav-hover: #444444;

  /* Espacements */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Effets */
  --radius: 0.375rem;
  --transition: 0.3s ease;
}

/* ========== Loader plein écran ========== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* ou noir, ou une image */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Animation de spinner (cercle tournant) */
.loader-spinner {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -khtml-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    width: 70px;
    text-align: center
}

.loader-spinner>div {
    width: 18px;
    height: 18px;
    background-color: var(--color-primary);
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: loaderbouncedelay 1.4s infinite ease-in-out both;
    animation: loaderbouncedelay 1.4s infinite ease-in-out both
}

.loader-spinner .loader-bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.loader-spinner .loader-bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}
@-webkit-keyframes pxl_bouncedelay {
    0%,80%,100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes loaderbouncedelay {
    0%,80%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


/*
Button
*/
.btn {
    position: relative;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-size: 14px;
    line-height: 1;
    z-index: 1;
    white-space: nowrap;
    border-radius: 50px;
    padding: 16px 26px;
    overflow: hidden;
    transition: 520ms;
    font-family: var(--font-second);
    color: #fff;
}
.btn.btn-round {
    border-radius: 50px;
    width: 50px;
    height: 50px;
}
.btn:hover {
  color: #fff;
}
.btn::before, 
.btn::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    transition: 520ms;
    border-radius: 50px;
}
.btn::before {
    background-color: var(--color-primary);
    z-index: -1;
}
.btn::after {
    background-color: var(--color-primary-hover);
    z-index: -1;
    transform-origin: 0px bottom;
    transform: translate3d(-50%, 0px, 0px) rotate(-50deg);
}
.btn:hover::after {
    transition: all .3s;
    transform: rotate(0);
}

.btn i {
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
    transition: all .3s ease-in-out 0s;
}
.btn:hover i {
    transform: translateX(5px);
    color: var(--color-primary);
}

/*
Img
*/
.figure-cover,
.figure-contain {
    overflow: hidden;
}
.figure-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
}
.figure-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.item2--container .figure-cover,
.Block7 .figure-cover,
.Block1 .figure-cover {
   width: 400px;
   height: 100%;
   border-radius: 20px;
   border: 5px solid var(--color-primary-hover);
}
@media(max-width: 991px) {
    .item2--container .figure-cover,
    .Block7 .figure-cover,
    .Block1 .figure-cover {
       width: 100%;
    }
}
@media(min-width: 992px) {
    .item2--container .figure-cover,
    .Block7 .figure-cover,
    .Block1 .figure-cover {
       min-height: 550px;
       border-radius: 200px 0 130px 0;
    }

}
.Block1 .figure-cover {
   border-color: var(--color-primary);
   margin-left: auto;
       height: 485px;
    min-height: 1px
}
.Block7 .figure-cover {
   border-color: var(--color-secondary);
   width: 500px;
   height: 520px;
   min-height: 1px;
}
.item2--container .col-md-6:has(.figure-cover),
.Block7 .col-md-6:has(.figure-cover) {
    position: relative;
}
.round-block {
   width: 200px;
   height: 200px;
   background: var(--color-secondary);
   border-radius: 100%;
   position: absolute;
   top: 75%;
   transform: translateY(-50%);
   right: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width: 767px) {
    .round-block {
         display: none;
    }
}
.Block7 .round-block {
   background: var(--color-primary);
   right: 1rem;
}
.round-block .devis-shape {
    width: 90%;
    height: 90%;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.round-block span {
    width: 90px;
}


.Block0 .figure-cover {
    height: 730px;
    border-radius: 46px 125px 0 76px;
    overflow: hidden;
}
.Block0 .figure-cover img {
    border-radius: 0
}
@media(min-width: 992px) {
    .pr-0 {
        padding-right: 0 !important;
    }
}
@media(max-width: 991px) {
    .pt-30 {
        padding-top: 0 !important;
    }
    .Block0 .figure-cover {
        height: 400px;
        border-radius: 7px;
    }
}
.Block9,
.Block10 {
    background-color: #F7FFF4;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.Block9::before,
.Block10::before {
    content: "";
    background-image: url(../images/img/leaf-bg.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/*
Badge
*/
.badge-hero {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    padding: 8px 15px;
    line-height: 1;
    background-color: var(--color-light);
    border-radius: 40px;
}

/*
Header
*/
.header-container {
    background-color: #fff;
    position: fixed;
    left: 0;
    z-index: 999;
    width: 100%;
    top: 0;
    transition: top 0.3s ease-in-out;
}
/*.header-container.sticky {
  top: 0;
}*/
nav.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}
.info-top {
    display: flex;
    justify-content: flex-end;
}
.info-top a {
    margin-left: 30px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}
.rappelIcon {
    display: none;
}
@media(min-width: 992px) {
    .rappelIcon {
        display: block;
        margin: 0 2rem 0 1rem;
    }
    .info-top a i {
        background-color: var(--color-primary-hover);
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.rappelIcon a {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: var(--color-light);
    border-radius: 50%;
    transition: background-color .4s ease-in-out;
}
.rappelIcon a:hover {
    background-color: var(--color-secondary);
}

.rappelIcon a:before {
    position: absolute;
    content: '';
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
}
.rappelIcon a:after {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.rappelIcon a:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

.nav-list {
    margin-top: 15px;
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-list li {
    position: relative;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .nav-list li.nav-item:has(.contact) {
        display: none;
    }
}
@media(min-width: 992px) and (max-width: 1199px) {
    .nav-list {
        gap: 15px;
    }
}
.nav-item:hover .nav-submenu {
    display: block;
}

.nav-item-footer a,
.nav-item > a {
    display: inline-block;
    position: relative;
    margin-top: 15px;
    transition: color .3s ease;
}
.nav-item > a {
    color: #444;
    margin-top: 0;
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}
.nav-link.devis {
    background-color: var(--color-secondary);
    padding: 5px 16px;
    color: #444 !important;
    border-radius: 99px;
    transition: background-color .3s ease, color .3s ease;
}
.nav-item:hover .nav-link.devis,
.nav-item.active .nav-link.devis {
    background-color: var(--color-primary-hover);
    color: var(--color-primary) !important;
}

.nav-item > a::before,
.nav-item > a::after,
.nav-item-footer a::before,
.nav-item-footer a::after {
    content: '';
    height: 1px;
    position: absolute;
    bottom: 2px;
    width: 0;
    background-color: var(--color-primary);
    transition: width .3s cubic-bezier(.37,.31,.2,.85);
}
.nav-item > a::before,
.nav-item > a::after {
    background-color: var(--color-secondary);
}

.nav-item-footer a::before,
.nav-item > a::before {
    left: 0;
}
.nav-item-footer a::after,
.nav-item > a::after {
    right: 0;
}
.nav-item > a:hover::before,
.nav-item > a:hover::after,
.nav-item.active > a::before,
.nav-item.active > a::after,
.nav-item-footer a:hover:before, 
.nav-item-footer a:hover:after,
.nav-item-footer.active > a::before,
.nav-item-footer.active > a::after {
    width: 50%;
}
.nav-submenu {
    display: none;
    position: absolute;
    width: 330px;
    list-style: none;
    padding-left: 0;
    top: 100%;
    padding-top: 21px;
}
body.menu-open {
    overflow: hidden;
}
/* Burger icon */
.burger-menu {
    order: 3;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    height: 3px;
    background-color: var(--color-primary);
    width: 100%;
    display: block;
    transition: 0.3s;
}
.nav-submenu-item {
    background-color: #fff;
    padding: 0 15px;
    font-size: 16px;
}
.nav-submenu-item:not(:last-child) a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed #c4c4c4;
}
.nav-submenu-item a:hover {
    color: var(--color-primary);
}

/* Menu mobile */
.nav-list {
    transition: transform 0.3s ease;
}

@media screen and (max-width: 991px) {
    nav.nav-header {
        background: #fff;
        padding: 0;
    }
    .burger-menu {
        display: flex;
        margin-right: 15px;
    }

    .nav-header {
        justify-content: space-between;
    }

    .nav-list {
        position: fixed;
        margin-top: 0;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 60px 20px;
        transform: translateX(100%);
        gap: 0;
        z-index: 1000;
    }

    .nav-list.open {
        transform: translateX(0%);
    }
    .nav-list li {
        padding-left: 0;
    }
    .nav-item > a {
        color: var(--color-dark);
    }

    .nav-submenu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
        padding: 0;
        display: none;
        box-shadow: none;
        width: 100%;
    }

    .nav-item.open > .nav-submenu {
        display: block;
    }
    .nav-submenu a {
        font-size: 14px;
    }

    .info-top {
        margin-top: auto;
    }
}
@media(max-width: 991px) {
    .info-top {
        margin-top: 15px;
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 15px;
    }
    .sticky-visible .info-top {
        margin-top: 0
    }
    .info-top a {
        background-color: var(--color-secondary);
        padding: 5px 15px;
        border-radius: 25px;
        font-size: 14px;
        color: #fff;
    }
    .info-top a {
        margin-left: 0;
    }
}


/*
Slider
*/
.slider-block {
  height: 600px;
  position: relative;
  overflow: hidden;
}
.carousel-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carrousel-text2 .Block {
    padding: 0;
}
.carrousel-text2 .slick-dots {
    position: absolute;
    bottom: 0;
}
.carrousel-text2 .slick-dots li {
    display: inline-block;
}
.carousel-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 70%), rgb(0 0 0 / 12%));
    z-index: 1;
}

.item-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* On crée un pseudo-élément pour appliquer l'effet */
.item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.1);
  transition: none;
}

/* On récupère l'image de fond de l'élément parent */
.item-slide[style]::before {
  background-image: inherit;
}

/* Animation appliquée uniquement sur le slide actif */
.item-slide.slick-active::before {
  animation: zoomOut 4s ease forwards;
}

@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* Pour que ton contenu (si tu en ajoutes) reste au-dessus */
.item-slide > * {
  position: relative;
  z-index: 1;
}
.textes-slides {
    position: relative;
}
.item-texte-slide {
    max-width: 600px;
    padding-left: 5rem;
}
@media(max-width: 767px) {
    .item-texte-slide {
        padding-left: 0;
    }
}
.text-banner .item-texte-slide {
    max-width: 900px;
}
.item-texte-slide .h1 {
    font-size: 60px;
    color: #fff;
}



.item-slide {
    height: 600px;
    background-color: var(--color-light);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.item-slide.banner-slider {
    height: 600px;
}
.slider-block > .container {
  position: relative;
  z-index: 1;
  display: table;
  height: 100%;
}
.textes-slides {
  display: table-cell;
  vertical-align: middle;
  /*padding-top: 10rem;*/
}
@media(max-width: 1399px) {
    .textes-slides {
        padding-left: 10rem;
    }
}

@media(max-width: 767px) {
    .slider-block {
        height: 500px;
    }
    .devis-shape-wrap {
        display: none;
    }
    .item-texte-slide {
        text-align: center;
        margin: auto;
    }
    .textes-slides {
        padding: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 15%);
    }
    .item-texte-slide .h1 {
        font-size: 36px;
    }
}

.carrousel-text2 .slick-dots {
   position: absolute;
   top: 4rem;
   left: -11rem;
}
.carrousel-text2 ul.slick-dots li {
   display: block;
   margin: 10px 0;
}


.carrousel-text2 ul.slick-dots li button {
   padding: 0;
   display: block;
   width: 35px;
   height: 35px;
   background: var(--color-light);
   border: 0;
   border-radius: 99px;
   transition: background-color .3s ease, color .3s ease;
   cursor: pointer;
   font-family: var(--font-second);
}
.carrousel-text2 ul.slick-dots li.slick-active button,
.carrousel-text2 ul.slick-dots li:hover button {
   background: var(--color-primary-hover);
}


/*
Section Block
*/
.Block {
    padding: 60px 0;
}
@media(max-width: 991px) {
    .Block:not(.Block7) .row > div {
        max-width: 100%;
        flex: 100%;
    }
}
.Block0,
.Block2 {
    position: relative;
    padding-bottom: 0;
}
.Block0::before {
    content: "";
    background-color: #fbf3e6;
    position: absolute;
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
}
.Block0::after {
    content: "";
    background-color: #fbf3e6;
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
}
.Block0 .container {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
@media(max-width: 991px) {
    .Block0 .container {
        margin-bottom: 0;
        padding-bottom: 40px;
    }
    .Block0::before {
        height: 100%
    }
    .Block0::after {
        display: none;
    }
    .Block1 .row {
        flex-direction: column-reverse;
    }
}
@media(min-width: 992px) {
    .item-0 {
        padding-left: 46px;
        padding-bottom: 40px;
    }
}
.Block6 {
    background-color: var(--color-light);
}

.Block7 {
    padding-top: 0;
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(0deg, #F7FFF500 0%, #F7FFF5 41.5%);
}
@media(min-width: 992px) { 
    .Block7::before,
    .Block8::before {
        content: "";
        background-image: url(../images/img/bg-elagage-8.webp);
        background-position: center 18%;
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;

    }
}
.Block8 {
    background-color: transparent;
    background-image: linear-gradient(0deg, #F7FFF500 0%, #F7FFF5 41.5%);
    position: relative;
}
.Block8::before {
    transform: rotate(180deg);
    background-position: center 0;
}
@media(max-width: 991px) {
    .Block1 .btn-block .btn:not(:last-child),
    .Block7 .btn-block .btn:not(:last-child) {
        margin-bottom: 15px;
    }
    .Block2 {
        padding-top: 0;
    }
}
@media(min-width: 992px) {
    .Block1 .btn-block,
    .Block7 .btn-block {
        display: flex;
        gap: 20px;
    }
}
.btn-block--main {
    display: flex;
    align-items: center;
    gap: 11px
}

.btn-block--icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%
}

.btn-block--title {
    color: #015924;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.btn-block--description {
    color: #015924;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: -1px
}
#temoignages .badge-hero,
.prestations--title .badge-hero,
.Block7 .badge-hero,
.item-0 .badge-hero {
    background-color: var(--color-secondary);
    color: #fff;
}

.item2--container {
    background-color: #0B3D2C;
    position: relative;
    border-radius: 20px 20px 0 0;
    padding: 60px 40px;
    color: #fff;
}
@media(max-width: 767px) {
    .item2--container {
        padding: 10px;
    }
}
.item2--container::before,
.realisationBlock::before {
    content: "";
    position: absolute;
    background-image: url(../images/img/bg-home.webp);
    background-size: cover;
    background-color: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
}
.item2--container > .row {
    position: relative;
    justify-content: space-between;
}
.item2 {
    padding-right: 40px;
}
@media(max-width: 767px) {
    .item2 {
        padding-right: 0;
        margin-top: 20px;
    }
}

#mail,
#mail2 {
    display: none;
}

.rappel-immediat {
    background-color: #fff;
    padding: 20px;
    display: inline-block;
    margin-top: 25px;
    border-radius: 15px;
}
form#rappel_immediat {
    margin-top: 15px;
}
.form-input {
    font-family: var(--font-second);
    background-clip: padding-box;
    background-image: none;
    border: 1px solid var(--color-secondary);
    border-radius: 999px;
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: all .3s ease;
}
#FormDevis .form-input {
    font-size: 16px;
    border-width: 2px;
    width: 100%;
    margin: 7px 0;
    background: #015e25;
    border-color: #014c1e;
    height: 55px;
    transition: border-color .3s ease;
    color: #fff;
}
#FormDevis .form-input::placeholder {
    color: #fff;
}
.form-input:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: none;
}
#FormDevis .form-input:focus,
#FormDevis .form-input:hover {
    border-color: var(--color-secondary);
}
.rappel-immediat .btn,
#FormDevis .btn {
    padding: 11px 16px;
    color: #fff;
    margin-left: 5px;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-size: 12px;
    height: 39px;
    letter-spacing: 1px;
    cursor: pointer;
}
#FormDevis .btn {
    font-size: 16px;
    padding: 16px 25px;
    height: auto;
    background: #444;
}
.rappel-immediat .btn:hover,
#FormDevis .btn:hover {
    background-color: var(--color-primary-hover);
    border: 1px solid var(--color-primary-hover);
}
@media(min-width: 768px) {
    .form-inline {
        display: flex;
        gap: 14px;
    }
}
@media(min-width: 992px) {
    .formulaire-contact {
        padding-left: 6rem;
    }
}
.formulaire-contact .h2 {
    color: #fff;
}
textarea.form-input {
    min-height: 100px;
    border-radius: 20px;
    max-height: 115px;
    resize: vertical;
}
.justify-content-center {
    justify-content: center;
}

/*
Ralisations
*/
.realisationBlock {
    background-color: #0B3D2C;
    padding: 60px 0;
    position: relative;
}
.realisationBlock .h2 {
    color: var(--color-light);
}
.realisations-item {
    transition: all 520ms ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 12px;
}
@media(max-width: 1199px) {
    .realisations-item {
        height: 250px;
    }
}
@media (min-width: 1200px) {
    .realisations-item {
        height: 380px;
    }
}
.realisations-item::before {
    content: "";
    height: 100%;
    width: 100%;
    background: 0 0;
    mix-blend-mode: normal;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transition: height .5s;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}
.realisations-item:hover::before {
    visibility: visible;
    opacity: 1;
}
.realisations-item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all .5s;
    transform-origin: bottom left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
    transform-origin: bottom left;
}
.realisations-item:hover img {
    transform: scale(1.1);
}


/*
Prestations block
*/
.prestations--title {
    text-align: center;
}
.prestations--title .h2 {
    display: block;
}
.item6 h2,
.item8 h2 {
    color: var(--color-primary);
}
@media(min-width: 992px) {
    .item6,
    .item8 {
        display: flex;
        gap: 80px;
    }
    .item6 h2,
    .item8 h2 {
        flex: 1;
    }
    .item6 p,
    .item8 p {
        flex: 3;
    }

}
.prestations-carrousel .slick-track {
    margin-left: -10px;
    margin-right: -10px;
}
.prestations-carrousel-item {
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 100%;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prestations-carrousel-item::before,
.prestations-carrousel-item::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #0b3d2c 0%, rgba(131, 131, 131, 0) 84.55%);
    opacity: 1;
    z-index: 7;
    -webkit-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.prestations-carrousel-item::after {
    height: 0;
    background: linear-gradient(0deg, #2a7d2e 24.15%, rgba(70, 84, 77, 0) 100%);
    opacity: 0;
}
.prestations-carrousel-item:hover::before {
    opacity: 0;
}
.prestations-carrousel-item:hover::after {
    height: 100%;
    opacity: 1;
}
.prestations-carrousel-link {
    position: relative;
    height: 335px;
}
.prestations-carrousel-link {
    position: relative;
    display: block;
    height: 335px;
    width: 100%;
}
.prestations-carrousel-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.prestations-carrousel-item:hover .prestations-carrousel-link img {
    transform: scale(1.1);
}
.prestations-carrousel-link strong {
    color: #fff;
    font-size: 20px;
    font-family: var(--font-second);
    font-weight: 400;
    line-height: 1.3;
    margin-top: -6rem;
    transition: all .3s linear;
    display: block;
    position: relative;
    z-index: 30;
    padding: 20px 20px 0;
}
.prestations-carrousel-link span {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all .3s ease;
}
.prestations-carrousel-item:hover .prestations-carrousel-link span {
    opacity: 1;
    transform: translate(0);
}

.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;
}
.slick-arrow::before {
    font-family: 'icomoon';
}
.slick-prev {
    left: 10px;
}
.slick-next {
    right: 10px;
}

@media(min-width: 1200px) {
    .slick-next {
        right: -4rem;
    }
    .slick-prev {
        left: -5rem;
    }
}
.carousel-slider .slick-next {
    right: 5rem;
}
.carousel-slider .slick-prev {
    left: 5rem;
}
@media(max-width: 767px) {
    .logo img {
        width: 150px;
    }
    .carousel-slider .slick-arrow {
        top: 92%;
    }
    .carousel-slider .slick-prev {
        left: 8rem;
    }
    .carousel-slider .slick-next {
        right: 8rem;
    }
}
.slick-prev.slick-arrow:hover {
    background-color: var(--color-light);
}
.slick-prev.slick-arrow:focus {
    background-color: var(--color-primary);
    color: #fff;
}

/*
Engagement block
*/
@media(max-width: 991px) {
    .engagement-item:not(:last-child) {
        margin-bottom: 15px;
    }
}
@media(min-width: 992px) {
    .engagemnt {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -30px;
    }
    .engagement-item {
        max-width: 33.3333%;
        flex: 0 0 33.3333%;
        padding: 0 30px;
    }
}
.engagement-item--box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.engagement-item--box .bg-shape {
    background-color: var(--color-secondary);
    border-radius: 25px;
    min-width: 110px;
    width: 124px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.engagement-item--text {
    line-height: 150%;
}
.engagement-item--text strong {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
    font-weight: bold;
}
.engagement-item--text p {
    line-height: 130%;
}
.engagement-item--box img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    filter: invert(1);
}

.flex-block {
    margin-top: 60px;
    margin-bottom: 60px;
}
.flex-block .Block {
    box-shadow: 0px 0px 50px 0px rgba(150, 157.00000000000003, 176, 0.25);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: transform 0.1s linear;
    will-change: transform;
}
.flex-block h2 {
    color: var(--color-primary);
}
@media(max-width: 767px) {
    .flex-block .Block {
        padding: 20px;
    }
}
@media(min-width: 992px) {
    .flex-block {
        display: flex;
        gap: 50px;
        align-items: self-start;
    }
    .Block10 {
        margin-top: 5rem;
    }
}
.justify-content-end {
    justify-content: flex-end;
}

/*
Page contact
*/
.contactBlock {
    position: relative;
    padding: 60px 0;
    height: 600px;
}
.contactBlock::before {
    content: "";
    background-color: var(--color-primary);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contactBlock .container {
    position: relative;
    z-index: 2;
}
.image-parallax {
    position: relative;
}
@media(min-width: 768px) {  
    .contactBlock::before {
        width: 50%;
    }
    .image-parallax {
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
    }
}

.image-parallax img {
    position: absolute;
    top: 0;
    left: 50%; 
    height: 100%;
    min-width: 150%; 
    transform: translateX(-50%); 
    object-fit: cover;
    transition: transform 0.1s linear;
}

/*
Categories villes
*/
.categoriesVilles {
    background-image: url(../images/img/bg_categories-villes.webp);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px 0;
}
@media(min-width: 992px) {
    .flex-sticky {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .stickyBlock {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        height: 100vh;
        padding-top: 10rem;
    }
}
.stickyBlock .h2 {
    color: #fff;
    font-size: 5rem;
    margin-left: 7rem;
    display: block;
    text-shadow: 0 0 11px black;
}

.Services-item {
    padding: 40px;
    border-radius: 25px;
    max-width: 760px;
}
.Liens {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}
@media(max-width: 991px) {
    .stickyBlock .h2 {
        margin-left: 0;
        text-align: center;
    }
}
@media(max-width: 767px) {
    .stickyBlock .h2 {
        font-size: 2rem;
    }
    .Services-item {
        padding: 10px;
    }
    .Liens {
        grid-template-columns: repeat(2, 1fr);
    }
}
.Liens a {
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF66 0%, #D9D9D966 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    display: flex;
    padding: 7px;
    margin: 7px;
    border-radius: 5px;
    font-size: 14px;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    line-height: 130%;
    letter-spacing: .5px;
    transition: background-color .3s ease, color .3s ease;
}
.Liens a:hover {
    background-image: none;
    background-color: var(--color-light);
    color: var(--color-primary);
}

/*
Devis gratuit fixed
*/
.devis-shape-wrap {
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    z-index: 1000;
}
@media(max-width: 991px) {
    .devis-shape-wrap {
        right: 1rem;
        bottom: 1rem;
    }
}
.devis-round-box {
    position: relative;
    height: 160px;
    width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 100%
}

.devis-shape-box {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-color: var(--color-primary);
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.devis-shape-box > img {
    position: relative;
    transform: scale(1.0);
    transition: transform .3s ease, color .3s ease;
    z-index: 1;
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.devis-shape-box:hover > img {
    transform: scale(1.2);
    color: var(--color-primary-hover);
}

.devis-shape-box .devis-shape {
    height: 139px;
    width: 139px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%)translateX(-50%)
}

.devis-shape-box .devis-shape .shape,
.round-block .devis-shape .shape {
    animation: pxl_spin 15s linear infinite;
}

.devis-overlay {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: width 0.4s ease;
    z-index: 999;
}

.devis-panel {
    background: #fff;
    height: 100%;
    width: 400px;
    position: absolute;
    right: -400px;
    transition: right 0.4s ease;
    padding: 2rem;
}

.devis-overlay.open {
    width: 100%;
}

.devis-overlay.open .devis-panel {
    right: 0;
}

.devis-shape-wrap.pushed {
    right: calc(5rem + 400px);
    transition: right 0.4s ease;
}


.icon-close::before {
    content: "\2715"; /* Exemple : croix ✕ */
}



/*
Block CTA
*/
.info-cta {
  background-image: url(../images/img/info-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 45px 0;
  border-radius: var(--radius);
  gap: 9rem;
}
.info-cta > div:first-child {
    padding-left: 45px;
    text-align: center;
}

.info-cta span.h3 {
    display: block;
}
.btn-call > span {
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 15px;
}
.btn-call > span i {
    width: 37px;
    height: 37px;
    background-color: #fff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-call > span > span {
    font-family: var(--font-second);
    font-size: var(--font-size-xl);
    font-weight: 300;
    text-align: left;
}
@media(max-width: 767px) {
    .btn-call > span > span {
        font-size: 16px;
    }
}
.btn-call > span > span > span {
    position: relative;
    z-index: 2;
}

.btn-call > span > span > span > span {
    display: block;
    margin-bottom: 5px;
}
.devis-cta img {
    margin-top: -23px;
}
.devis-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    position: relative;
}
@media(max-width: 991px) {
    .devis-cta {
        display: none;
    }
}
.devis-cta::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/img/devis-gratuit-bg.svg);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: -1;
    animation: pxl_spin 20s linear infinite;
}
.devis-cta > a {
    padding: 45px 37px 0;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    font-size: 24px;
}

@-webkit-keyframes pxl_spin {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes pxl_spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

/*
Avis
*/
#temoignages {
    padding: 60px 0;
    background-color: #fbf3e6;
}
@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 {
    padding: 40px 40px 40px 40px;
    border-radius: 20px 20px 20px 20px;
    background-color: #fff;
    position: relative;
}
.item-avis p {
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}
.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;
}
.quote {
    right: 42px;
    bottom: 40px;
    position: absolute;
    overflow: hidden;
    width: 55px;
    opacity: .5;
}
.quote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.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
    }
}

.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;
}


/*
Footer
*/
#footer {
    padding-top: 60px;
}
@media(max-width: 767px) {
    #footer .row {
        display: block;
    }
    #footer span.h4 {
        border-top: 1px solid;
        display: block;
        margin-top: 20px;
        padding-top: 15px;
        margin-bottom: 0;
    }
}

.info-footer > p:not(:last-child) {
    margin-bottom: 15px;
}
.info-footer > p.adresse {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 24px;
}
.info-footer > p i {
    margin-right: 7px;
    font-size: 14px;
}
.nav-item-footer {
    list-style: none;
    line-height: 24px;
}

.copyright {
    background-color: var(--color-primary);
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;
    color: #fff;
    font-size: var(--font-size-sm);
}


.block-float {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    background-color: var(--color-primary-hover);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
}
.Mobile .block-float {
    display: none;
}
.block-float img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.block-float span {
   display: block;
}
@media(min-width: 992px) {
    .block-float {
        left: 2rem;
        top: 18rem;
    }
}
.block-float strong {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
}
.position-relative {
    position: relative;
}

/*
Devis page
*/
.temoinBlock,
#realisations,
.devis-section,
.ContactezNous,
.page-mention {
    position: relative;
    background-color: #F7FFF4;
    padding: 160px 0 60px;
}
.Tablet .temoinBlock,
.Tablet #realisations,
.Tablet .devis-section,
.Tablet .ContactezNous,
.Tablet .page-mention {
    padding-top: 200px;
}
.temoinBlock::before,
#realisations::before,
.devis-section::before,
.ContactezNous::before {
    content: "";
    background-image: url(../images/img/leaf-bg.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
#realisations::before {
    background-position: top right;
}
.temoinBlock {
    padding-top: 230px;
}
.temoinBlock .item-tem:not(:last-child) {
    border-bottom: 1px solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#avis_form .form-input {
    display: block;
    width: 100%;
}
#avis_form input.btn {
    border: 0;
    margin-top: 15px;
    background-color: var(--color-primary);
}

.devis-section .row {
    justify-content: center;
    position: relative;
}
.temoinBlock .row,
#realisations .row,
.ContactezNous .row {
    position: relative;
}
div#Map {
    height: 100%;
    min-width: 300px;
}

#realisations .swipebox.thumbnail {
    background-color: var(--color-primary);
    display: flex;
    height: 350px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 520ms ease;
    border-radius: 25px;
}
#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;
}
.box-hero {
    position: absolute;
    bottom: 15px;
    width: 100%;
    left: 0;
        display: flex;
    gap: 10px;
}
@media(max-width: 767px) {

    .box-hero {
        display: none;
    }
}
.item-hero_ {
    flex: 1;
    background-color: rgba(49, 102, 0, 0.8);
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
.item-hero_ img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}
/*
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-primary);
    padding: 11px 20px;
    color: #fff;
    display: block;
    text-align: center;
}
.btn-fixed-mobile a span {
    color: #fff;
}
.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;
}
a.btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
img.left {
    transform: rotate(45deg);
}
.btn_ {
    display: flex;
    gap: 15px;
}
i.icon-phone-call img,
.info-footer img,
.btn-block--icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.info-footer a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-top img {
    min-width: 22px;
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.Mobile .rappel-immediat .btn {
    width: 100%;
    margin-top: 5px;
}
.Mobile .rappel-immediat .form-input {
    width: 100%;
}
.Mobile .engagement-item--text strong {
    font-size: 24px;
}
i.icon-chevron-left,
i.icon-chevron-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
i.icon-chevron-left::before,
i.icon-chevron-right::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/img/prev.webp);
    background-size: cover;
}
i.icon-chevron-right::before {
    background-image: url(../images/img/next.webp);
}
.prestations-carrousel-link span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
}
.Mobile .Block7 .figure-cover {
    width: 100%;
    height: 350px;
}
.Mobile .info-cta > div:first-child {
    padding-left: 0;
}
.Mobile .copyright {
    padding-bottom: 80px;
}
.btn-fixed-mobile img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.Tablet .item-texte-slide,
.Tablet .textes-slides {
  padding-left: 0;
}
.Tablet .Tablet .Block7 .figure-cover {
    width: 100%;
}
.prestations-carrousel .slick-slide {
    margin: 0 10px;
}
.page-mention p {
    margin-bottom: 10px;
}
.Mobile .page-mention {
    padding-left: 20px;
}
.Mobile .h3,
.Mobile h3 {
    font-size: 22px;
}
div#Messages {
    background: var(--color-primary);
    position: absolute;
    width: 100%;
    z-index: 1111;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.shape.spin img {
    width: 139px;
    height: 139px;
    object-fit: contain;
}
a.logo img {
    width: 190px;
    height: 100px;
    object-fit: contain;
}
#footer .logo img {
    width: 285px;
    height: 140px;
}
.rappelIcon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.Desktop .nav-header a.logo {
    display: flex;
    min-width: 210px;
}