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


.icon{
  position: relative;
  padding: 12px;
}
.icon:before {
  content: "";    
  background-repeat: no-repeat!important;
  background-size: contain!important;
  background-position: center!important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-phone:before {
  background: url(../images/img/icon-fixe-mob.webp);
}
.icon-mobile:before {
  background: url(../images/img/icon-portable-mob.webp);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.webp);
}
.icon-location:before {
  background: url(../images/img/icon-locali.webp);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.webp);
}
.icon-clock-o:before, .hor:before {
  background: url(../images/img/icon-hor.webp);
}

/* ========== VARIABLES ROOT ========== */
:root {
  --font-main: "Calibri",sans-serif;
  --font-second: "Calibri",sans-serif;

  /* 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-text: #212529;
  --color-text-light: #a3a3a3;
  --color-primary: #ff9933;
  --color-primary-hover: #0056b3;
  --color-white: #ffffff;
  --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;
}
/* ========== Swiper hero ========== */
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: var(--color-white);
}

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

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: var(--color-white);
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 0;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family:"Calibri", sans-serif;
  content: "\e904";
  font-size: 15px;
  color: var(--color-dark);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family:"Calibri", sans-serif;
  content: "";
  font-size: 15px;
  color: var(--color-dark);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:var(--color-white);
  transition:var(--transition)
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
/*     display: none; */
}
}
.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:30px;
    
  }
}
/*--------------------------------------------------------------
  #hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 750px;
  transition:all .4s ease;
  position: absolute;
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style{
    height: 500px;
  }
}

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

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

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

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

.slick-list
{
  position: relative;

  display: block;
  overflow: hidden;

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

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

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

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

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

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

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

  height: auto;

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

.slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%), scale(1.0);
  border: 0;
  overflow: hidden;
  background-color: var(--color-white);
  width: 55px;
  height: 55px;
  transition: var(--transition);
  border-radius: 100%;
  z-index: 10;
}
.slick-arrow:hover,
.slick-arrow:focus {
  box-shadow: var(--box-shadow-strong);
  transform: scale(1.25);
  outline: none;
}
.slick-arrow::before {
  font-family:monospace;
  display: block;
  font-size: 24px;
  line-height: 57px;
  text-align: center;
  color: #000;
}
.slick-prev {
  left: 5%;
}
.slick-next {
  right: 5%;
}
.slick-prev::before {
  content: "<";
}
.slick-next::before {
  content: ">";
}


/* ========== RESET & BASE MOBILE FIRST ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:"Calibri", sans-serif;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
  background-color: var(--color-white);
  color: #757575;
  -webkit-font-smoothing:antialiased;
}

h1, h2, h3 {
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #464338;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ========== BOUTONS ========== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(#ffcc99, #ff9933);
  color: #000;
  font-size: 1.2rem;
  border: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s 
  ease, transform 0.2s 
  ease;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  /*background-color: var(--color-dark);
  color: var(--color-white);*/
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-dark);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-nav .btn-outline {
  margin-left: 1rem;
}


/* ========== LAYOUT ========== */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.Mobile .container {
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--spacing-sm));
}
.Mobile .row {
  margin: 0;
}
.col {
  flex: 1 1 100%;
  padding: var(--spacing-sm);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#villesCategories,
#realisatonHome,
#itemSrv {
  display: block;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
}
#villesCategories::before,
#realisatonHome::before,
#itemSrv::before {
  background: hsla(0, 0%, 99%, .9);
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* ========== HEADER & MENU BURGER ========== */
.header {
  background-color: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .025), 0 1px 1px 0 rgba(0, 0, 0, .01), 0 0 50px 0 rgba(0, 0, 0, .07);
}
.Mobile .header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 90;
  top: 0;
}
.headerNav {
  background-color: var(--color-white);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  position: relative;
}
.Mobile .nav {
  padding: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo img {
  width: 150px;
}
.burger {
  width: 35px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  height: 4px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-list {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background: var(--color-nav-bg);
  flex-direction: column;
  padding-top: var(--spacing-lg);
  z-index: 1001;
  transition: left var(--transition);
  overflow-y: auto;
  scrollbar-width: thin;
}
.nav-list::-webkit-scrollbar {
  width: 6px;
}
.nav-list::-webkit-scrollbar-track {
  background: transparent;
}
.nav-list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.nav-list a, .nav-parent span {
  color: var(--color-white);
  padding: var(--spacing-md) 0;
  margin: 0 var(--spacing-md);
  text-decoration: none;
  display: block;
  transition: background var(--transition);
  border-bottom: 1px dashed #636261;
  position: relative;
  font-weight: 600;
  font-size: 13px;
}
.nav-list .nav-item:last-child a {
  border-bottom: none;
}
.nav-list a:hover ,
.nav-list li.active a {
  color: #000;
  font-weight: bold;
}
.Tablet .nav-list a:hover, .Tablet .nav-list li.active a, .Mobile .nav-list a:hover, .Mobile .nav-list li.active a {
  color: #000;
}
.Tablet .nav-item.active,
.Mobile .nav-item.active {
  background: linear-gradient(#ffcc99, #ff9933);
}
@media(min-width:992px) {  
  .nav-list li.active a::after {
    content: "";
    position: absolute;
    width: 35px;
    border-bottom: 3px solid var(--color-primary);
    bottom: -20px;
    left: 35%;
    transform: translateY(-50%);
  }
}
.nav-list.active {
  left: 0;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}



.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== CLOSE BUTTON ========== */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}

/* Cacher le burger quand le menu est actif */
.nav-list.active ~ .burger {
  display: none;
}
.sub-nav {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--color-white);
  padding: var(--spacing-md);
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========== ETRE RAPPELE & TEL TOP========== */
#mail,
#mail2 {
  display: none;
}

.tel-top_ {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.tel-top_ > a {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius);
}
.Mobile .tel-top_ > a {
    font-size: 16px;
    color: #000000;
    border-radius: var(--radius);
    font-weight: 600;
    padding: 12px;
    border-radius: 900px;
}
.tel-top_ i.icon-phone {
  top: 2px;
  position: relative;
}
.tel-top_ i {
  margin-right: 4px;
}
.call-img {
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 100%;
}
.call-img::after {
  content: "";
  background-image: url(../images/img/call.webp);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 60px;
  border: 3px solid #cfcfcf;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/*#rappel_immediat {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  width: 320px;
}

#rappel_immediat.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#rappel_immediat .input-form {
    padding: 7px 15px;
    border-radius: 25px;
    border: 1px solid transparent;
}
#rappel_immediat .btn-devis-gratuit {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 25px;
}*/


/* ========== MEDIA QUERIES ========== */
@media (max-width: 991px) {
  .tel-top_ {
    padding: 10px 0;
    background: #000;
  }
  /*#rappel_immediat .input-form {
    padding: 15px;
    border-radius: 25px;
    border: 1px solid transparent;
    background-color: #ececec;
    margin-bottom: .5rem;
    width: 100%;
    text-align: center;
  }
  #rappel_immediat .btn-devis-gratuit {
      position: static;
      transform: none;
      display: block;
      width: 100%;
      padding: 14px;
      font-size: 18px;
  }*/
}


@media (min-width: 992px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  .Top_rappel {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
  }
  .call-img::after {
    width: 40px;
    height: 40px;
    border: none;
  }
  .right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /*#rappel_immediat {
    background-color: transparent;
    position: absolute;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    width: 500px;
    width: 100%;
    transition: transform 0.4s ease, opacity 0.4s ease;
    left: 0;
    padding: 0;
  }
  #rappel_immediat.visible {
    transform: translate(-55%, -50%);
    opacity: 1;
    pointer-events: auto;
  }*/
  #closeMobile {
    display: none;
  }
  .burger {
    display: none;
  }
  .d-flex {
    display: flex;
    align-items: center;
  }
  .tel-top_ > a {
    background-color: transparent;
  }
  .tel-top_ i {
    color: var(--color-primary);
  }
  .nav {
    align-items: inherit;
    padding: 0;
    height: 100%;
  }
  .nav-list {
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding-top: 0;
  }
  #nav {
    flex-direction: row;
    display: flex !important;
    align-items: center;
    height: 100%;
  }
  .nav-parent:hover .sub-nav {
    display: grid !important;
  }
  .nav-parent span {
    color: var(--color-dark);
    border-bottom: none;
  }
  .nav-item.nav-parent {
    height: 100%;
    align-items: center;
    display: flex;
  }

  .nav-list a,
  .nav-list span {
    padding: 0 var(--spacing-md);
    color: var(--color-dark); 
    border-bottom: none;
  }
  .sub-nav a {
    margin: 0;
  }
  .sub-nav a:hover {
    color: var(--color-primary);
  }

  .overlay {
    display: none;
  }
}
@media (min-width: 992px) {
  .col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  height: 450px;
}
.page-hero.page-home {
  position: relative;
}
@media (min-width: 992px) {
  .page-hero {
    height: 700px;
  }
}

.page-hero .container {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.slder-block {
  display: table-cell;
  vertical-align: middle;
}
.Mobile .slder-block {
  padding-top: 9rem;
}
.slider-page {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.slider-page-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-out;
  height: 450px;
  position: absolute;
  width: 100%; 
  background-color: #33333357;
  background-blend-mode: multiply;
}
.Desktop .slider-page-item {
  height: 700px;
}
.slder-block-item {
  display: flex;
  gap: 80px;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.Mobile .slder-block-item {
  align-items: center;
}
.right-item {
  max-width: 40%;
  margin: 0 5rem 0 0;
}
.devisGratuit {
  background: var(--color-white);
  position: relative;
  z-index: 2;
}
.devisGratuit .btn {
  background: var(--color-dark);
  width: 100%;
  color: var(--color-white);
}

.devisGratuit form {
  padding: 0 40px 40px;
}

.devisGratuit .like-h3 {
  position: relative;
  padding: 22px 30px 70px;
  line-height: 34px;
  text-align: center;
  font-size: 30px;
  overflow: hidden;
  margin: 0;
  color: #000000;
  min-height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.devisGratuit .like-h3::before {
  height: 100%;
  content: "";
  border-radius: 0 0 50% 50%;
  bottom: 20px;
  right: auto;
  width: 100%;
  z-index:-1;
  position: absolute;
  background: linear-gradient(#ffcc99, #ff9933);
  /* left: calc(50% - 410px); */
  /* left: -webkit-calc(50% - 410px); */
  left: -moz-calc(50% - 410px);
}
.devisGratuit .input-form, #avis_form .input-form {
    display: block;
    width: 100%;
    min-width: 350px;
    border: 1px solid #ddd;
    margin: 7px 0;
    padding: 15px;
    font-family: inherit;
}
.Desktop form#Devis_form textarea.input-form {
    /* max-width: 350px; */
    height: 50px;
    max-height: 100px;
    font-family: inherit;
}
.Mobile .devisGratuit .input-form,
#avis_form .input-form {
  min-width: 1px;
}
.left-item {
  display: flex;
  height: 100%;
  align-items: center;
}
.Mobile .left-item {
  flex-direction: column;
  height: auto;
  text-align: center;
}
.intro-layer h1 {
  font-size: 50px;
  color: var(--color-white);
}
.Mobile .intro-layer h1 {
  font-size: 36px;
}
.left-item p.grey {
  font-size: 30px;
  line-height: 130%;
  color: white;
  font-weight: bold;
  border-left: 5px solid var(--color-primary);
  padding-left: 1rem;
}
.Mobile .left-item p.grey {
  font-size: 20px;
}
img {
  border-radius: 5px;
}
.text-gray {
  color: var(--color-gray-1);
}

/* ========== SECTION CONTENUS ========== */
.item1 {
  text-decoration: center;
}
.contenus {
  padding: 80px 0;
  background-color: var(--color-white);
}
.item1 {
  text-align: center;
  max-width: 70%;
  margin: auto;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 80px;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: scroll 20s linear infinite;
}
.logo-track img {
  width: 120px;
  height: 120px;
  /* width: auto; */
  filter: grayscale(1);
  opacity: .5;
  object-fit: contain;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.item-content {
  margin: 30px 0;
}
.item-content figure {
  aspect-ratio: 16 / 9;
  display: flex;
}
.item-text {
  padding: 20px 0;
}
.item-text h2 {
  line-height: 130%;
}
@media (min-width: 992px) {
  .col_1 {
    padding-right: 2rem;
  }
  .col_2 {
    margin-top: 6rem;
    padding-left: 2rem;
  }
}
.contenus_5 {
  background-color: var(--color-dark);
  padding: 80px 0;
}
.contenu_more {
  padding: 80px 0;
}
.block_infos {
  text-align: center;
  margin-bottom: 60px;
}
.Mobile .block_infos {
  padding: 0 15px;
}
.like_h2 {
  font-family:"Calibri", sans-serif;
  color: var(--color-white);
  font-size: 3rem;
  display: inline-block;
  text-align: center;
  margin-bottom: 50px;
}
.btn_cta a {
  margin: 0 10px;
}
.Mobile .btn_cta a {
  display: block;
  margin: 10px 0;
}
.btn_cta a.btn-outline{
  color: #000;
}
section.contenus.contenus_5 .btn_cta a.btn-outline {
  color: #fff;
}
.btn_cta a.btn-outline:hover {
  color: #000!important
}
.block_bznzfits .btn_cta a.btn-outline {
  color: var(--color-dark);
}
.btn_cta a.btn-outline:hover {
  color: var(--color-dark);
}
.item-9 {
  height: 100%;
  display: flex;
  align-items: center;
}
.block_10 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .contenus_9 figure {
    aspect-ratio: 1 / 1;
  }
  .contenus_9 .block_9 figure {
    margin-left: 5rem;
  }
  .contenus_9 .block_10 figure {
    margin-right: 5rem;
  }
}
@media(min-width: 992px) {
  .row-rev {
    flex-direction: row-reverse;
  }
}
.text-block {
  padding: 20px;
  color: var(--color-white);
  /*text-align: center;*/
  margin-top: 3rem;
  color: #b4b4b4;
}
.text-block h2 {
  color: var(--color-primary);
}
.contenus_5 .text-block h2 {
  color: #fff;
}

.carousel_slide {
  margin: 0 auto;
}

.carousel_slide .slick-slide {
  transition: transform 0.3s ease;
  opacity: 0.5;
  transform: scale(0.8);
}

.carousel_slide .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

.carousel_slide img {
  width: 100%;
  display: block;
}
.section-caption, .item-9 span {
  background: var(--color-primary);
  padding: 12px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
}
.contenu_more {
  background-image: url(../images/img/fond-devis.webp);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 10px 120px;
  text-align: center;
  background-blend-mode: multiply;
  background-color: #00000073;
}
.contact_block .like_h3 {
  font-family:"Calibri", sans-serif;
  font-size: 50px;
  margin-bottom: 0;
  color: #fff;
}
.contact_block p {
  font-size: var(--font-size-xl);
  color: #fff;
}
.contact_block .btn_cta a.btn { 
  color: #000000;
}
.contact_block .btn_cta a.btn.btnc {
  background-color: var(--color-white);
  border: 0;
  color: #000000;
}
.contenus_9 {
  border-top: 1px solid var(--color-gray-light-4);
}
.call-action-3-image-1 {
  margin-left: 5rem;
  height: 100%;
  position: relative;
}
.call-action-3-image-1.cover img {
  position: relative;
  z-index: 2;
}
.call-action-3-image-1::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 153px;
  bottom: -3%;
  right: 45%;
  background: linear-gradient(#ffcc99, #ff9933);
  z-index: 0;
  border-radius: 5px;
}
#item1 {
  background-color: var(--color-gray-light-3);
}
#block2 {
  justify-content: center;
}
.texte3 {
  border-top: 1px solid var(--color-dark);
  padding-top: 5rem;
  margin-top: 5rem;
}
.swiper-container {
  position:relative;
  width: 60vw;
  height: 300px;
}
.swiper-container > .swiper-slide__content {
  position:absolute;
  top:0;
}

.swiper-slide {
  height: 300px;
  display:flex;
  background: #eee;
  align-items: center;
  justify-content:center;
  transition:all 200ms linear;
  transform: scale(0.8);
  
  &.swiper-slide-active{
    transform: scale(1);
    background: #fc0
  }
}
.swiper-slide__content {
  height: 300px;
}

/* ========== CATEGORIES ========== */
@media(min-width: 992px) {
  .column-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh
  }
}

.Desktop #villesCategories .section-title-strong {
  font-size: 50px;
}

ul.Liens {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}
.Mobile ul.Liens {
  grid-template-columns: repeat(2, 1fr);
}
ul.Liens li {
  height: 100%;
}
ul.Liens a {
  background-color: white;
  padding: 10px 15px;
  font-size: 14px;
  color: black;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 130%;
  box-shadow: 0 0 17px #0000002b;
  border-radius: 15px;
}
ul.Liens a:hover {
  background-color: black;
  color: white;
  box-shadow: 0;
}

/*
Footer
*/
#footer {
  background-color: var(--color-dark);
}
#footer .logo img {
  width: 250px;
  height: 181px;
  background: #fff;
  object-fit: contain;
}
.footer-container {
  border-top: 9px solid var(--color-primary);
  background-color: #0d0d0d;
  padding: 80px 40px;
}
.lien-footer strong {
  color: #fff;
  font-size: var(--font-size-xl);
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .lien-footer ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
.lien-footer ul li a {
  display: flex;
  color: var(--color-text-light);
  letter-spacing: .5px;
  transition: var(--transition);
}
.lien-footer ul li a i {
  color: var(--color-primary);
  margin-top: 3px;
  margin-right: 3px;
}

.lien-footer ul li a:hover {
  padding-left: 7px;
  color: var(--color-white);
}
.contact-footer {
  margin-top: 2rem;
  color: var(--color-white);
}
.contact-footer  {
  margin-right: 5px;
}
.contact-footer a:has(.icon-mail) {
  color: white;
  text-decoration: underline;
}
p.adr {
  display: flex;
}
p.adr i {
  margin-top: 3px;
}
p.siret {
  margin-top: 9px;
}
.copyright {
  padding: 25px 0;
  text-align: center;
  color: var(--color-text-light);
  letter-spacing: 1px;
  font-size: 14px;
}
.copyright a {
  color: white;
  text-decoration: underline;
}

.Mobile .copyright a{
  display: block;
  margin: 15px 0 0;
}
.scaleOutIn {
  animation-name: scaleOutIn;
  animation-timing-function: var(--ease-out-short)
}

@keyframes fadeScaleOutIn {
  0% {
    opacity: 0;
    transform: translateY(10px) translateZ(.1px) scale(1.1)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}
.text-block_3::before {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--color-primary);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

/*
Benefit
*/
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(16em,1fr));
  gap: 30px;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.benefits .card {
  border-radius: 1.125em;
  background-color: var(--color-white);
  position: relative;
  padding: 20px;
  box-shadow: 0 2px 10px -2px rgba(0,0,0,.1);
}

.benefits .card .card-icon {
  display: inline-block;
  color: var(--color-primary)
}

.benefits .card .card-icon svg.icon,.benefits .card .card-icon svg[class*=icon-] {
  height: 5em;
  width: 5em
}

.benefits .card .card-title {
  margin-top: 0 var(--font-size-lg);
  margin-bottom: 0;
  font-size: 24px;
  line-height: 130%;
  color: var(--color-dark);
  font-weight: 700;
  display: block;
}

@supports (margin-block-start:1em) {
  .benefits .card .card-title {
    margin-top: initial;
    margin-block-start:var(--font-size-lg) var(--font-size-lg)}
  }

  @supports (margin-block-end: 1em) {
    .benefits .card .card-title {
      margin-bottom:initial;
      margin-block-end:0}
    }

    .benefits .card .card-content {
      display: block
    }

    .benefits .card .card-content p {
      margin-block:var(--font-size-lg)}

      @supports not (margin-block: 1em) {
        .benefits .card .card-content p {
          margin-top:var(--font-size-lg);
          margin-bottom: var(--font-size-lg)
        }
      }

      .benefits .card .card-content a {
        font-weight: 600
      }

      .layout-content-top .benefits .card:nth-child(even) .card-content ul li::marker {
        color: var(--color-text-light)
      }

      @media only screen and (min-width: 48em) and (max-width:64em) {
        .benefits {
          display:flex;
          flex-wrap: wrap
        }

        .benefits .card {
          flex: 1 1 40%
        }
      }

      @media only screen and (min-width: 64.0625em) and (max-width:76.9375em) {
        .benefits {
          display:flex;
          flex-wrap: wrap
        }

        .benefits .card {
          flex: 1 1 40%
        }
      }

      @media only screen and (min-width: 77em) and (max-width:104.9375em) {
        .benefits {
          font-size: var(--font-size-sm)
        }
      }

      .serv-slide {
        padding: 0 5px;
      }

      a.serv-4-intro {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: var(--transition);
        color: var(--color-dark);
        font-size: 15px;
        padding-right: 7rem;
        line-height: 130%;
        padding-top: 18px;
        width: 100%;
      }
      .serv-4-item:hover .serv-4-intro {
        font-weight: bold;
      }

      .service-4-carousel .slick-arrow {
        top: -26%;
        background-color: var(--color-dark);
      }
      .service-4-carousel .slick-arrow::before {
        color: #ffffff;
        font-family: monospace;
      }
      .service-4-carousel .slick-prev {
        left: inherit;
        right: 10%;
      } 
      .Mobile .service-4-carousel .slick-arrow {
        top: 100%;
      }
      .Mobile .service-4-carousel .slick-prev {
        right: 23%;
      }

/*
Form
*/
      .contactFooter .h2 {
        color: black;
      }
      .Desktop .contactFooter #FormDevis {
        padding-right: 2rem;
      }
      .contactFooter label {
        display: block;
        margin-bottom: 7px;
        color: black;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.3
      }

      .contactFooter .form-group {
        margin-bottom: 21px;
        padding: 0 7px;
      }
      .contactFooter .form-input {
        display: inline-block;
        vertical-align: middle;
        font-size: 13px;
        font-weight: 400;
        color: var(--color-dark-1);
        border: 1px solid rgba(0, 0, 0, .183);
        padding: 0 7px 2px;
        border-radius: 0;
        box-shadow: none;
        transition: all .2s ease-out;
        width: 100%;

        height: 52.5px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 16px;
      }
      .contactFooter textarea.form-input {
        height: 150px;
        max-height: 150px;
        padding-top: 12px;
        max-width: 100%;
        font-family: inherit;
      }
      #Map {
        height: 350px;
      }
      .titre-album {
        color: black;
        display: block;
        margin-bottom: 30px;
      }

/*
Avis
*/
      #temoignages {
        padding: 60px 0;
        background-color: var(--color-primary);
      }
      #temoignages .section-title {
        text-align: center;
      }
      #temoignages .section-title .h2 {
        color: #000000;
        margin-bottom: 0rem;
        font-size: 40px;
      }
      #temoignages .section-title p {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 1rem;
      }
      .Mobile #temoignages .section-title .h2 {
        font-size: 1.2rem;
      }
      .Mobile #temoignages .section-title span {
        font-size: 17px;
      }
      .rev_tel {
        justify-content: center;
        color: black;
      }
      .rev_tel .btn {
        display: inline-block;
        padding: 15px 35px; 
        margin-left: 2rem;
      }
      .Mobile .slider_block_ {
        margin: 0 30px;
      }
      .avis-slider {
       background-color: var(--color-white); 
       border-radius: 3px;
       padding: 20px;
       margin: 15px;
       font-size: 12px;
       line-height: 150%;
       height: 300px;
       border: 7px solid var(--color-primary);
     }
     .avis-slider p {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-bottom: 0;
    }
    .googleAvis_ {
      text-align: center;
    }
    .noteAvis_ {
      margin-bottom: 1rem;
    }
    .noteAvis_ span {
      margin-right: 5px;
      font-weight: bold;
      color: black;
      font-size: 14px;
      display: inline-block;
      vertical-align: middle;
    }

    .infos_client {
      margin-bottom: 1rem;
      position: relative;
    }
/*.infos_client::after {
    content: "";
    background-image: url(../images/google_g.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
}*/
.infos_client .google {
  right: 0;
  top: 0;
  position: absolute;
  width: 18px;
  height: 18px;
}
.infos_client img {
  margin-right: 10px;

}
.PhotoUserAvis {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 100%;
}
.infos_client {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.infos_client span {
  font-weight: bold;
  color: black;
}
.infos_client span em {
  display: block;
  font-style: normal;
  font-weight: normal;
  color: #54595f;
}
.btn_avis {
  text-align: center;
}
/*.btn_avis .btn-avis {
    background-color: var(--color-white);
    color: var(--color-dark);
}*/
.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;
}

#MonAvis a {
 width: 12px; height: 24px;
 display: inline-block;
}

/*
rea grid
*/
ul.rea-grid.relative {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.Mobile ul.rea-grid.relative {
  grid-template-columns: repeat(2, 1fr);
}
ul.rea-grid li {
  list-style: none;
  overflow: hidden;
}
ul.rea-grid a.swipebox {
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
ul.rea-grid a.swipebox img {
  aspect-ratio: 650 / 773; 
  width: 100%; 
  max-width: 650px; 
  transition: all .3s ease;
}
#realisations a.swipebox:hover img
ul.rea-grid a.swipebox:hover img {
  transform: scale(1.1);
}
.logD {
 text-align: center;
}
.logD img {
  margin: 0 15px;
  width: 100px;
  height: 80px;
  object-fit: contain;
}
section.temoin,
.devis .sectionDevis {
  background-color: #e7e7e7;
  padding: 60px 0;
}
.devis .sectionDevis .devisGratuit {
  max-width: 760px;
  margin: auto;
}

#realisations a.swipebox {
  width: 100%;
  display: block;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}
#realisations a.swipebox img {
  transition: all .3s ease;
}

.Mobile .GoogleBagde {
  width:100%;
  margin:0px;
  transform:scale(1)!important;
  left:0px!important;
  border-radius:8px 8px 0px 0px;
  bottom:53px;
  height:50px;
}
.Mobile .GoogleBagde-icon-G {
  display: inline-block!important; 
}

.Mobile .GoogleBagde-Rating__Container {
  vertical-align: top;
  display: inline-block!important; 
  width:80%!important;
}
.Mobile .GoogleBagde-notes_value {
  vertical-align: top!important;
  margin-left:5%;
}
.Mobile .GoogleBagde-lire_avis_container {
  display: inline-block;
  vertical-align: top!important;
  margin-left:10px;
}

.menu_bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
.menu_bottom a {
    background: var(--color-primary);
    color: #000000;
    align-items: center;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    animation: pulse 1.5s infinite;
}
.menu_bottom i {
  margin-left : 7px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mentionL {
  padding: 60px 0;
}
li.nav-item.nav-parent span {
  font-weight: 600;
  font-size: 24px;
}
.Tablet #FormDevis .col-lg-6 {
  width: 100%;
}
.Tablet #contact .container > .row > div { 
  padding: 010px;
}
.rev_p {
  color: #000000;
}
.right-img {
  height: 100%;
  background: linear-gradient(#ffcc99, #ff9933);
}
.serv-slide.active a.serv-4-intro {
  color: #000000;
  font-weight: 600;
}
.Mobile section#item0 .relative img,
.Mobile .cover img { 
  width: 100%; 
  height: 250px;
  object-fit: cover;
}
.Tablet section#item0 .relative img,
.Tablet .cover img { 
  width: 100%; 
  height: 350px;
  object-fit: cover;
}
.Tablet .col-lg-6.mb-md-60 ,
.Mobile .col-lg-6.mb-md-60 {
  width: 100%;
}
.texte3 h2 ,
.texte3 p {
  text-align: left;
}
.Mobile #temoignages button.slick-arrow {
  display: none;
}
.Mobile form#FormDevis .col-lg-6 {
  width: 100%;
} 
.Tablet #item1 .col-sm-8,
.Tablet #item1 .col-sm-4 {
  width: 50%;
  padding: 0 20px;
}
.Tablet .slick-next {
  right: 5%;
}
.Tablet .service-4-carousel .slick-prev{
  right: inherit;
  left: 5%;
}
.Tablet .contenus.contenus_7 .col-md-6 {
  width: 100%;
}
.Tablet .footer-container .col {
  width: 50%;
  flex: 0 0 50%;
}
.serv-4-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.infos_client img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}


/*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

div#Messages {
  text-align: center;
  background-color: #000;    
  padding: 10px;
  width: 100%;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
}

div#Messages p {
  margin: 0;
  color: #fff;     
  font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
  font-size:14px;
}

/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.blog_pageIntrouvable {
    background: #000000;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
    left: 0;
}
.blog_pageIntrouvable .d-flex {
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex-pack: center!important;
  justify-content: center!important;
  -ms-flex-align: center!important;
  align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #fff;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #fff,
}
.blog_pageIntrouvable .h1 {
  font-size: 200px;
  color: #ff9933;
  font-weight: 600;
  margin: 0;
}
.blog_pageIntrouvable p {
  font-size: 36px;
  line-height: 100%;
  margin-top: -21px;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: #fff;
}
.blog_pageIntrouvable a {
  color:  #ff9933;
}
.blog_pageIntrouvable a:hover {
  text-decoration: underline;
}
#noDesktop { display: none; }
.Mobile .blog_pageIntrouvable {
  font-size: 14px;
}
.Mobile .blog_pageIntrouvable a {
  display: block;
}
.Mobile .blog_pageIntrouvable p {
  font-size: 17px;
  letter-spacing: 5px;
  margin-top: -10px;
}
.Mobile .blog_pageIntrouvable h1 {
  font-size: 100px;
}
.Desktop .footer-container {
  padding: 80px 0 0;
}
.alt-features-descr {
  color: #535353;
}

.left-item p.grey span {
  display: block;
}

._footer_rappel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  padding: 31px 78px;
  background-color: transparent;
  border: 1px solid #313537;
}

.Mobile ._footer_rappel,
.Tablet ._footer_rappel {
  padding: 40px 20px;
  flex-direction: column;
  gap: 30px;
}

.f_rappel_h1 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.Mobile .f_rappel_h1 {
  font-size: 21px;
  text-align: center;
}

form#rappel_immediat {
  position: relative;
}

input.input-form {
  height: 45px;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #000;
  width: 500px;
}
textarea.input-form {
    min-height: 100px;
    min-width: 100%!important;
    max-width: 100%!important;
}
.Mobile input.input-form {
  width: 100%;
}

form#rappel_immediat button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    cursor: pointer;
}

form#rappel_immediat button:hover {
  background: #ffcc99;
}

form#rappel_immediat button img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: all .4s;
}
/*
form#rappel_immediat button:hover img {
  filter: invert(1);
}*/
.Desktop .service-4-carousel {
  display: flex; 
}
form#rappel_immediat input.input-form {
    color: #fff;
}