```css
/* =========================
   SWIPER PRINCIPAL (DESKTOP)
========================= */

@media (min-width: 768px) {

  .mySwiper {
    height: calc(100vh - 50px);
  }

  .mySwiper > .swiper-wrapper {
    display: flex;
    flex-direction: column;
  }

  .mySwiper > .swiper-wrapper > .swiper-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }



}

/* =========================
   HERO SWIPER (TOUJOURS ACTIF)
========================= */

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row;
}

.heroSwiper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  display: block;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
}

.hero-slide figure {
  height: 100%;
  margin: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  max-width: 600px;
}

/* =========================
   MOBILE (SCROLL NORMAL)
========================= */

@media (max-width: 767px) {

  html, body {
    height: auto;
  }

  .site-main {
    height: auto;
  }

    #section-1 article {
        padding: 0 !important;
    }

    
  .mySwiper {
    height: auto;
  }

  .mySwiper > .swiper-wrapper {
    display: block;
  }

  .mySwiper > .swiper-wrapper > .swiper-slide {
    height: auto;
    display: block;
    padding: 40px 0;
  }

  /* HERO MOBILE FIX */
  .hero-slide {
    min-height: 65vh;
  }

  .hero-slide img {
    min-height: 65vh;
  }

}

/* =========================
   LOGO FIX
========================= */

@media (max-width: 767px) {

  h1#logo {
    position: absolute;
    left: 70%;
    margin-top: 15px;
    text-align: center;
    font-size: 42px;
  }

}

/* =========================
   SÉCURITÉ (IMPORTANT)
========================= */

/* éviter tout conflit global */
.swiper-wrapper {
  /* NE PAS TOUCHER */
}

.swiper-slide {
  /* NE PAS TOUCHER GLOBAL */
}
