.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    align-items: flex-start;
  }

  .middle-sm {
    align-items: center;
  }

  .bottom-sm {
    align-items: flex-end;
  }

  .around-sm {
    justify-content: space-around;
  }

  .between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    justify-content: center;
    text-align: center;
  }

  .end-md {
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    align-items: flex-start;
  }

  .middle-md {
    align-items: center;
  }

  .bottom-md {
    align-items: flex-end;
  }

  .around-md {
    justify-content: space-around;
  }

  .between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 100%;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    align-items: flex-start;
  }

  .middle-lg {
    align-items: center;
  }

  .bottom-lg {
    align-items: flex-end;
  }

  .around-lg {
    justify-content: space-around;
  }

  .between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}

@font-face {
  font-family: Voyage;
  src: url(fonts/Voyage-Regular.html) format("woff2"),
    url(fonts/Voyage-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  color: #232323;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.hidden,
[hidden] {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  margin: 0;
  padding: 0;
  background: #DBDBDB;
  font-family: GT Pressura Mono;
  transition: 1s ease 1s;
}

body.non-event {
  pointer-events: none;
}

body:after {
  content: "";
  position: fixed;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  left: 0;
  background: #000e13;
  z-index: 99;
  transition: opacity 0.8s cubic-bezier(0.82, 0, 0.36, 1),
    height 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}

body.non-event {
    pointer-events: none;
}

body:after {
  content: "";
  position: fixed;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  left: 0;
  background: #000e13;
  z-index: 99;
  transition: opacity 0.8s cubic-bezier(0.82, 0, 0.36, 1),
              height 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}

.loaded:after {
  height: 0;
  opacity: 1;
  top: 0;
  bottom: auto;
  transition: opacity 0.8s cubic-bezier(0.82, 0, 0.36, 1),
              height 1.2s cubic-bezier(0.82, 0, 0.36, 1) 0.2s;
}

body.non-event:after {
  height: 100vh;
  bottom: 0;
  opacity: 1;
  top: auto;
  transition: opacity 0.8s cubic-bezier(0.82, 0, 0.36, 1),
              height 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}

.o-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

.voyage {
  font-family: Voyage !important;
  font-weight: 400 !important;
}

.h1,
h1 {
  font-family: Voyage;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.9;
  margin: 0 0 30px;
}

.col1-content .h1 {
  margin-bottom: 80px;
}

.h2,
h2 {
  font-family: Voyage;
  font-size: 46px;
  line-height: 0.9;
  margin: 0;
}

.h2,
.h3,
h2,
h3 {
  font-weight: 400;
}

.h3,
h3 {
  margin: 0 0 15px;
  font-size: 26px;
  font-family: GTSectraDisplay;
  line-height: 1.2;
}

.h4,
h4 {
  margin: 0;
  font-size: 14px;
  padding: 10px 0 20px;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  position: relative;
  font-family: initial;
  font-weight: 400;
}

a h4 {
  color: initial;
}

.h4:after,
h4:after {
  content: "";
  height: 1px;
  width: 60px;
  background: #000e13;
  opacity: 0.3;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

img {
  max-width: 100%;
}

.container {
  max-width: 1320px;
  margin: auto;
}

header {
  padding: 30px 0;
  position: relative;
  z-index: 3;
  top: -80px;
  transition: top 0.6s cubic-bezier(0.82, 0, 0.36, 1) 0s;
  color: #000e13;
}

.loaded header {
  top: 0;
  transition: top 1.6s cubic-bezier(0.82, 0, 0.36, 1) 1.2s;
}

.split-line,
.split-line-big,
.split-line-title {
  overflow: hidden;
  padding: 5px 0;
  margin: -7px 0;
}

h3 .split-line {
  padding: 10px 0 0;
  margin: -7px 0 0;
}

.split-line>div {
  transform: translateY(30px) scale(0.9);
  transition: 1s cubic-bezier(0.82, 0, 0.36, 1) 0s;
}

.split-line:nth-child(2)>div {
  transition-delay: 0.2s;
}

.split-line:nth-child(3)>div {
  transition-delay: 0.4s;
}

.split-line:nth-child(4)>div {
  transition-delay: 0.6s;
}

.split-line:nth-child(5)>div {
  transition-delay: 0.8s;
}

.split-line:nth-child(6)>div {
  transition-delay: 1s;
}

.split-line:nth-child(7)>div {
  transition-delay: 1.2s;
}

.split-line:nth-child(8)>div {
  transition-delay: 1.4s;
}

.split-line:nth-child(9)>div,
.split-line:nth-child(10)>div {
  transition-delay: 1.8s;
}

.loaded .animated .split-line>div {
  transform: translate(0) scale(1);
}

h2 .split-line>div {
  transform: translateY(40px) scale(0.9);
}

.loaded h2.animated .split-line>div {
  transform: translateY(-7px) scale(1);
}

h3 .split-line>div {
  transform: translateY(40px) scale(0.9);
}

.loaded h3.animated .split-line>div {
  transform: translateY(-8px) scale(1);
}

h4:after {
  width: 0;
  transition: 1s cubic-bezier(0.82, 0, 0.36, 1);
}

.is-inview h4:after,
.loaded h4.animated:after {
  width: 60px;
}

.split-line-big>div {
  transform: translateY(110px) scale(0.9);
  transition: 1.8s cubic-bezier(0.82, 0, 0.36, 1);
}

.loaded .animated .split-line-big>div {
  transform: translateY(-12px) scale(1);
}

.taille-5 .split-line-big>div {
  transition-delay: 0.2s;
}

.taille-3 .split-line-big>div {
  transition-delay: 0.4s;
}

.taille-2 .split-line-big>div {
  transition-delay: 0.6s;
}

.taille-1 .split-line-big>div {
  transition-delay: 0.8s;
}

.taille-0 .split-line-big>div {
  transition-delay: 1s;
}

.split-line-title>div {
  transform: translateY(60px) scale(0.9);
  transition: 1.2s cubic-bezier(0.82, 0, 0.36, 1);
}

.split-line-title:nth-child(2)>div {
  transition-delay: 0.2s;
}

.split-line-title:nth-child(3)>div {
  transition-delay: 0.4s;
}

.split-line-title:nth-child(4)>div {
  transition-delay: 0.6s;
}

.split-line-title:nth-child(5)>div {
  transition-delay: 0.8s;
}

.split-line-title:nth-child(6)>div {
  transition-delay: 1s;
}

.loaded .animated .split-line-title>div {
  transform: translateY(-12px) scale(1);
}

.logo {
  width: 120px;
  height: auto;
  position: absolute;
  left: calc(50% - 60px);
  top: 100px;
  z-index: 1;
}

.hero-banner {
  position: relative;
  padding: 0;
  height: calc(100vh - 80px);
  min-height: 740px;
  z-index: 0;
}

.hero-banner.empty {
  position: absolute;
}

.banner-img {
  position: absolute;
  z-index: 0;
  height: calc(100vh + 10px);
  top: -92px;
  z-index: -1;
  min-height: 740px;
  width: 100%;
  overflow: hidden;
}

.banner-caption,
.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner-caption {
  position: relative;
  text-align: center;
  max-width: 45%;
  padding: 40px 60px 0;
  min-height: calc(100vh - 240px);
  margin-left: 0;
  flex-direction: column;
  opacity: 1;
}

.banner-caption a,
.banner-caption h1,
.banner-caption h4,
.banner-caption p {
  color: #e8ded0;
}

.dark .banner-caption a,
.dark .banner-caption h1,
.dark .banner-caption h4,
.dark .banner-caption p {
  color: #000e13;
}

.banner-caption a:after {
  background: #e8ded0;
}

.dark .banner-caption a:after {
  background: #000e13;
}

.hero-banner h4:after {
  background: #e8ded0;
  opacity: 1;
}

.dark.hero-banner h4:after {
  background: #000e13;
  opacity: 1;
}

.banner-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: calc(100% + 82px);
  width: 100%;
  top: -82px;
  position: relative;
  transform: scale(1.2);
  transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}

.loaded .banner-img img {
  transform: scale(1);
  transition: 4s cubic-bezier(0.82, 0, 0.36, 1);
}

.banner-img svg {
  position: absolute;
  z-index: 1;
}

.btn-primaire {
  color: #000e13;
  padding: 15px 0;
  display: inline-block;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.75s,
    transform 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.25s,
    line-height 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.25s, letter-spacing 2s;
}

.btn-primaire,
.btn-secondaire {
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-secondaire {
  color: #e8ded0;
  background: #000e13;
  padding: 15px 20px;
  font-family: GT Pressura Mono;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  color: #e6dece;
  font-size: 16px;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  padding: 15px 0;
}

.langues {
  position: absolute;
  left: calc(50% - 40px);
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.langues a {
  font-size: 14px;
  color: initial;
  text-decoration: none;
  text-transform: uppercase;
  fill:#e6dece;
}

.langues .selected {
  opacity: 0.3;
}

.hero-banner svg {
  position: absolute;
  width: 100vw;
  height: calc(100vh - 49px);
  fill: #000e13;
  left: 0;
  min-height: 740px;
  transform: scale(1.01);
}

.banner-mask img {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.banner-mask {
  position: absolute;
  top: -92px;
  left: 0;
  width: 100vw;
  height: 100vh;
  border-top: 50px solid #000e13;
  transform: scale(2.2);
  transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1);
  min-height: 760px;
  pointer-events: none;
  z-index: 2;
}

.loaded .banner-mask {
  transform: scale(1);
  transition: 3s cubic-bezier(0.82, 0, 0.36, 1);
}

section {
  padding: 60px 0;
}

section.pad0 {
  padding: 0 0 60px;
}

span.taille-4 {
  font-size: 80px;
}

span.taille-3 {
  font-size: 90px;
}

span.taille-2 {
  font-size: 100px;
}

span.taille-1 {
  font-size: 110px;
}

.chevron-gauche {
  position: absolute !important;
  font-size: 130px;
  left: 0;
  line-height: 120px;
}

.chevron-droite {
  position: absolute !important;
  font-size: 180px;
  right: -45px;
  line-height: 170px;
}

.sizup {
  position: relative;
  padding: 60px 0 90px;
  left: -25px;
}

.sizup div {
  position: relative;
  padding: 0;
}

.boat-img,
.service-img {
  width: 100%;
  height: 580px;
  overflow: hidden;
  position: relative;
}

.profil-img {
  height: 260px;
}

.news-img,
.profil-img {
  width: 100%;
  overflow: hidden;
}

.news-img {
  height: 380px;
  position: relative;
}

.boat-img img,
.news-img img,
.profil-img img,
.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.boat-caption,
.service-caption {
  padding: 30px 0;
}

.sep-haut {
  height: 250px;
  margin: -120px auto 60px;
}

.sep-bas,
.sep-haut {
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.3;
}

.sep-bas {
  height: 520px;
  margin: 60px auto;
}

.news-caption {
  text-align: left;
}

section.news .container {
  padding-top: 100px;
}

section.news {
  padding-top: 0;
}

.news-caption h4:after {
  left: 0;
  transform: none;
}

.news-item {
  padding-bottom: 60px;
  position: relative;
  z-index: 999;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

hr {
  margin: 60px 0;
}

footer svg {
  fill: #DBDBDB;
}

footer {
  background: #000e13;
  color: #e6dece;
  z-index: 1;
}

.main,
footer {
  position: relative;
}

.main {
  z-index: 2;
}

footer .btn-primaire {
  color: #e6dece;
}

footer hr {
  border: 1px solid #e6dece;
  opacity: 0.3;
}

.addresses svg {
  width: 50%;
}

.sep-foot svg {
  width: 100%;
  margin: auto;
}

.sep-foot {
  text-align: center;
  position: relative;
  z-index: -1;
  top: -1px;
}

.end svg {
  width: 40px;
}

.end {
  padding-bottom: 60px;
  font-size: 12px;
}

.end .btn-primaire {
  font-size: 10px;
  margin: 0 10px 0 0;
}

.end .btn-primaire,
.socials .btn-primaire {
  border: #ffdead;
  padding: 0;
}

.socials {
  justify-content: space-between !important;
  padding: 0 1.5rem;
}

a.totop {
  position: absolute;
  left: calc(50% - 25px);
  text-align: center;
  top: 30px;
  color: #000e13;
  text-decoration: none;
  text-transform: uppercase;
}

.h4-title {
  margin-bottom: 120px;
}

.tableau-specs,
section.specs {
  padding-top: 0;
}

.tableau-specs h4 {
  margin-top: 60px;
  display: block;
  text-align: center;
}

.line-specs {
  text-align: left !important;
  position: relative;
}

.line-specs:after {
  content: "";
  height: 1px;
  width: calc(100% - 3rem);
  position: absolute;
  background: #001014;
  display: block;
  top: 22px;
  left: 1.5rem;
  z-index: -1;
  opacity: 0.3;
}

.line-specs p {
  display: inline-block;
  padding: 0 1.5rem;
  margin: 5px 0;
  background: #e7decf;
}

.line-specs.blank {
  padding: 15px 0 0;
}

ul {
  padding: 0;
  margin: 60px 0;
}

ul li {
  display: block;
  padding-left: 75px;
  margin-bottom: 10px;
  position: relative;
}

ul li:before {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #000e13;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 11px;
}

.col2-img {
  height: 480px;
}

.col1-img,
.col2-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.col1-img {
  height: auto;
}

.col2-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.col1-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.h3next h3:after {
  content: "";
  height: 45px;
  width: 1px;
  display: block;
  background: #000e13;
  opacity: 0.3;
  left: 45%;
  position: relative;
  top: 5px;
}

.h3next h3:last-child:after {
  display: none;
}

.col2-caption h2 {
  margin-bottom: 60px;
}

.slick-slider {
  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;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list,
.slick-slider {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus,
.slick-slide:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translateZ(0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  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;
  height: 600px;
  -o-object-fit: contain;
  object-fit: contain;
}

.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;
}

button.slick-arrow {
  position: absolute;
  bottom: 0;
  background: transparent;
  border: none;
  text-transform: uppercase;
  font-family: Voyage;
  font-size: 0;
  z-index: 1;
  cursor: pointer;
  top: 0;
  width: 20%;
}

button.slick-prev.slick-arrow {
  left: 0;
}

button.slick-next.slick-arrow {
  right: 0;
}

button.slick-next.slick-arrow:before {
  content: ">";
  font-size: 110px;
}

button.slick-prev.slick-arrow:before {
  content: "<";
  font-size: 110px;
}

.boat-slider p {
  text-align: center;
  width: 80%;
  margin: 0 auto -30px;
  padding: 30px 0;
}

.padded {
  padding: 120px 0;
}

.padded-xs {
  padding: 30px 0;
}

.padded-s {
  padding: 60px 0;
}

.col2-caption {
  padding: 0 15px;
  width: 100%;
}

.col2-caption.simple p~h2 {
  margin-top: 60px;
}

.square-box {
  padding: 0 60px !important;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.square-line {
  justify-content: center !important;
}

.square-box:last-child,
.square-box:nth-child(3) {
  border-bottom: none;
}

.square-box:first-child,
.square-box:nth-child(3) {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.square-box:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.news .service-caption .h2,
ul li.blank {
  margin-bottom: 30px;
}

.slick-track {
  transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1) !important;
}

section.hero-banner {
  background: #DBDBDB;
}

.loaded section.hero-banner {
  opacity: 1;
}

.courant>* {
  position: relative;
}

.courant>*,
.opacity-just>*,
.simple {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.82, 0, 0.36, 1);
}

.courant.is-inview>*,
.opacity-just.is-inview>*,
.simple.is-inview {
  opacity: 1;
}

.logo-loader {
  position: fixed;
  top: 45%;
  left: 45%;
  z-index: 999;
  width: 150px;
  height: auto;
  pointer-events: none;
  transform: scale(1);
  opacity: 0;
  transition: 0s cubic-bezier(0.82, 0, 0.36, 1) 1s;
}

.loaded .logo-loader {
  transform: scale(0.8);
  opacity: 0;
  transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1) 0s;
}

.non-event .logo-loader {
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.82, 0, 0.36, 1) 0s;
}

.boat-caption img {
  height: 45px;
}

.chevron-droite:after,
.chevron-gauche:after,
.last:after {
  display: none !important;
}

section.boats {
  padding-top: 240px;
}

.card-service {
  padding: 0 1.5rem;
}

.service-caption p {
  padding: 1.5rem;
}

.btn-primaire:after,
nav a:after {
  content: "";
  height: 1px;
  background: #000e13;
  position: absolute;
  bottom: 0;
  transition: 0.6s cubic-bezier(0.82, 0, 0.36, 1);
  left: 50%;
  transform: translate(-50%);
}

nav a:after {
  opacity: 0.3;
  width: 0;
}

.btn-primaire:hover:after {
  opacity: 0.3;
}

nav a:hover:after {
  width: 30px;
  opacity: 0.3;
}

nav a.active:after {
  width: 30px;
  opacity: 1;
}

.btn-primaire:hover {
  transition: opacity 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.75s,
    transform 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.25s,
    line-height 0.6s cubic-bezier(0.82, 0, 0.36, 1) 2.25s, letter-spacing 2.5s;
}

.black-bg {
  background: #000e13;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.black-bg,
.black-bg a {
  color: #e6dece;
}

.black-bg a:after,
.black-bg h4:after {
  background: #e6dece;
  opacity: 1;
}

.black-bg img {
  fill: #e6dece;
  height: 45px;
}

.boat-exergue {
  justify-content: center !important;
}

.boat-exergue .col-lg-5 {
  padding: 0;
}

footer .btn-primaire:after {
  background: #e6dece;
}

.banner-mask.line {
  overflow: hidden;
}

.banner-mask.line path,
.title-quote svg path {
  fill: none;
  stroke: #000e13;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  opacity: 0.5;
}

.title-quote h3 {
  position: absolute;
  right: 0;
  bottom: 40px;
}

.title-quote {
  position: relative;
}

.plan-boat {
  background-color: #e6dece;
}

.plan-boat img {
  mix-blend-mode: multiply;
}
.banner-caption.center {
  margin: auto;
  max-width: 60%;
}

.custom-size li {
  text-align: left;
  font-family: GT Pressura Mono;
}

.sizup.custom span {
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sizup.custom .col-lg-3:after {
  display: none;
}

.nopadbot {
  padding-bottom: 0;
}

.list-unstyled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}

.form-group {
  width: 100%;
}

.form-group.w50 {
  width: calc(50% - 15px);
}

.form-group label {
  display: block;
  text-align: left;
  text-transform: uppercase;
  margin: 5px 0;
}

input[type="email"],
input[type="tel"],
input[type="text"],
textarea {
  background: transparent;
}

input[type="email"],
input[type="tel"],
input[type="text"],
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #999;
  padding: 15px;
  margin: 0 0 15px;
}

select {
  background-color: transparent;
}

button.btn {
  border: none;
  margin: 5px auto;
}

aside.alert.alert-success {
  padding: 15px;
  text-align: center;
  display: block;
  width: 100%;
  border: 1px solid #006400;
  margin: 15px 0;
  text-transform: uppercase;
  font-size: 14px;
  color: #006400;
}

.banner-caption.dark h1,
.banner-caption.dark h4 {
  color: #000e13;
}

section.text-1col {
  padding-top: 0;
}

.line-specs {
  padding: 6px 0;
}

section.news.page-news {
  padding-top: 200px;
}

.partn-img {
  padding: 100px;
}

.card-galerie img {
  height: 180px;
  width: auto;
  padding: 15px;
}

.suite-empty {
  margin-top: -3rem;
  z-index: 2;
  position: relative;
}

#trigger-menu,
nav.mobile {
  display: none;
}

.btn-fixed {
  position: fixed;
  right: 0;
  top: 320px;
  transform: rotate(90deg);
  transform-origin: top right;
  padding: 10px 15px;
  font-size: 12px;
  z-index: 3;
}

.btn-fixed.second-fixed {
  top: 497px;
}

p small {
  font-size: 10px;
  line-height: 14px;
  opacity: 0.5;
  display: block;
  text-align: justify;
}

.card-galerie .big {
  transform: scale(0);
  position: absolute;
  top: -82px;
  left: 0;
  width: 100%;
  padding: 0;
  transition: 0.6s ease;
  pointer-events: none;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: 100vh;
  opacity: 0;
}

.bigopen~.big {
  padding: 100px;
  pointer-events: auto;
  transform: scale(1);
  opacity: 1;
}

.black-bg h4 {
  color: #e6dece;
}

figure.video iframe {
  height: 480px;
  width: 100%;
}

.flex {
  display: flex;
}

#horizontal-div {
  height: 100vh;
  width: 20px;
  background: red;
}

#sectionPin {
  overflow: hidden;
  left: 0;
}

#sectionPin,
.pin-wrap {
  height: 100vh;
  display: flex;
}

.pin-wrap {
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10vw;
}

.pin-wrap>* {
  height: 80vh;
  padding: 0 5vw;
  width: auto !important;
  max-width: 70vw;
}

.pin-wrap>*,
img.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

img.img-contain {
  padding: 100px;
}

.a-separator {
  margin: 60px 0;
}

.bigs {
  top: -87px;
}

.bigs,
.bigs-alt {
  position: fixed;
  left: 0;
  height: 0;
  width: 100vw;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.82, 0, 0.36, 1);
  pointer-events: none;
  z-index: 9998;
}

.bigs-alt {
  top: 0;
}

.bigs {
  background: #e6dece;
}

.bigs-alt img,
.bigs img {
  width: 100%;
  height: 100vh;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 100px;
}

.bigs-alt img {
  background: #fff;
}

.slick-slide img {
  height: 100vh;
  width: 80vw;
  padding: 0 100px;
  margin: auto;
}

.bigs-alt.open,
.bigs.open {
  height: 100vh;
  pointer-events: all;
}

.close-bigs {
  position: fixed;
  top: 30px;
  right: 60px;
  z-index: 99999;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.close-bigs.open {
  opacity: 1;
}

.m-horizontalScroll {
  position: relative;
}

.m-horizontalScroll .slide-image {
  display: flex;
  flex-shrink: 0;
  width: 50%;
  height: auto;
  padding: 30px;
  justify-content: center;
  flex-direction: column;
}

.m-horizontalScroll .slide-image img {
  width: 100%;
  height: auto;
}

.m-horizontalScroll__sticky {
  position: relative;
  top: 0;
  left: 0;
}

.m-horizontalScroll__content {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 30px;
}

.m-horizontalScroll .m-horizontalScroll__sticky,
main {
  will-change: transform;
}

a .item-hvr {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

a .item-hvr .nml {
  position: relative;
  top: 0;
}

a .item-hvr .hvr,
a .item-hvr .nml {
  transition: top 1s cubic-bezier(0.82, 0, 0.36, 1);
}

a .item-hvr .hvr {
  position: absolute;
  top: 20px;
  left: 0;
  color: #999;
}

a:hover .nml {
  top: -20px;
}

a:hover .hvr {
  top: 0;
}

.btn-primaire .item-hvr .nml {
  position: relative;
  top: 20px;
  transition: top 1s cubic-bezier(0.82, 0, 0.36, 1) 0.6s;
}

.btn-primaire:after {
  width: 0;
  transition: width 1s cubic-bezier(0.82, 0, 0.36, 1) 0.6s;
}

.btn-primaire.animated .item-hvr .nml {
  position: relative;
  top: 0;
  transition: top 1s cubic-bezier(0.82, 0, 0.36, 1) 0.6s;
}

.btn-primaire.animated .item-hvr .hvr,
.btn-primaire.animated:after {
  transition: 1s cubic-bezier(0.82, 0, 0.36, 1) 0.6s;
}

.btn-primaire.animated:after {
  width: 100%;
}

.btn-primaire:hover .item-hvr .nml {
  top: -20px;
  transition: top 1s cubic-bezier(0.82, 0, 0.36, 1);
}

.btn-primaire:hover .item-hvr .hvr {
  top: 0;
  transition: 1s cubic-bezier(0.82, 0, 0.36, 1);
}

.btn-primaire:hover:after {
  width: 60px;
  transition: 1s cubic-bezier(0.82, 0, 0.36, 1);
}

h3 img {
  opacity: 0;
  position: relative;
  transition: opacity 1s cubic-bezier(0.82, 0, 0.36, 1) 0.2s;
}

h3 {
  overflow: hidden;
}

.is-inview h3 img {
  opacity: 1;
}

.legal #main .container {
  padding-top: 100px;
}

.legal .text-1col h3,
.legal .text-1col p {
  text-align: left !important;
}

.legal .text-1col h3 {
  margin: 60px 0 30px;
  font-family: GT Pressura Mono;
  font-size: 18px;
}

.legal .text-1col {
  margin-top: -120px;
}

.error .btn-fixed,
.error footer,
.error header#header {
  display: none;
}

.error {
  height: 100vh;
}

.error section.content.is-inview {
  padding: 0;
}

.error .classic-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.error section.custom-size,
.error section.text-1col {
  width: 100%;
}

.error .a-link.btn-primaire {
  color: #fff;
}

.error .classic-content {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  color: #e8ded0;
}

.banner-caption.right {
  margin-left: auto;
  margin-right: 5%;
}

.banner-caption.left {
  margin-left: 5%;
  margin-right: auto;
}

.legal .text-1col h3, .legal .text-1col p {
  text-align: left !important;
}

@media screen and (min-width: 1280px) {
  .banner-caption.right {
    margin-left: auto;
    margin-right: -8%;
  }

  .banner-caption.left {
    margin-left: -8%;
    margin-right: auto;
  }
}

@media screen and (max-width: 1090px) {
  .banner-mask {
    top: -300px;
    overflow: hidden;
    height: 300px;
    min-height: 200px;
    transform: scale(2);
  }

  .hero-banner svg {
    width: calc(100vw + 200px);
    left: -100px;
    height: auto;
    min-height: auto;
  }

  .banner-caption {
    width: 100%;
    max-width: 100% !important;
    height: auto;
    min-height: unset;
    top: -450px;
  }

  .banner-img {
    position: relative;
    height: 420px;
    min-height: 0;
    top: -67px;
    width: 100%;
  }

  .banner-caption a,
  .banner-caption h1,
  .banner-caption h4,
  .banner-caption p {
    color: #000e13;
    will-change: transform;
  }

  .banner-caption a:after {
    background: #000e13;
  }

  h1 {
    font-size: 60px;
  }

  .hero-banner h4:after {
    background: #000e13;
    opacity: 0.3;
  }

  .container-fluid {
    padding: 0 1rem !important;
    position: relative;
  }

  .chevron-droite,
  .chevron-gauche {
    position: relative !important;
    transform: rotate(90deg);
    left: 25px;
  }

  section.boats {
    padding-top: 0;
  }

  .boat-img {
    height: 400px;
  }

  .sep-haut {
    margin-top: 0;
    height: 120px;
  }

  .sep-bas {
    background: transparent;
    height: 0;
  }

  section.boats .row {
    flex-direction: column;
  }

  .boats .row .col-xs-12:nth-child(2) {
    order: 0;
  }

  .boats .row .col-xs-12 {
    order: 1;
  }

  section {
    padding: 40px 0;
  }

  .boat-caption img {
    height: 40px;
  }

  .h4-title {
    margin-bottom: 30px;
  }

  .card-service {
    padding: 0;
  }

  footer .text-center,
  footer .text-left,
  footer .text-right {
    text-align: center !important;
    margin: 1.5rem 0;
  }

  footer .text-center {
    order: 2;
  }

  .end .btn-primaire {
    margin: 1rem 0.5rem;
  }

  .sep-foot {
    z-index: 1;
  }

  a.totop {
    z-index: 2;
    top: -25px;
  }

  footer {
    margin-top: 3rem;
  }

  .addresses {
    padding-top: 3rem;
  }

  .news-caption {
    text-align: center;
    padding-top: 1rem;
  }

  .news-caption h4 {
    margin: 0 0 1rem;
  }

  .news-caption h4:after {
    left: 50%;
    transform: translate(-50%);
  }

  section.news .container {
    border: none;
  }

  .banner-img img {
    height: 100%;
    top: 0;
  }

  .langues {
    left: auto;
    right: 1.5rem;
    width: auto;
  }

  .langues .selected {
    display: none;
  }

  .langues a {
    font-size: 1rem;
    padding-left: 15px;
  }

  header .logo {
    top: 15px;
  }

  .loaded .banner-mask {
    top: -50px;
  }

  .o-scroll {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .logo-loader~div {
    overflow: hidden;
  }

  .hero-banner {
    min-height: unset;
    height: auto;
  }

  .banner-caption:not(.nodegrade) h1,
  .banner-caption:not(.nodegrade) h4 {
        text-shadow: 
        2px 2px 2px rgba(0,0,0,0.6),  
        0 0 10px rgba(255,255,255,0.8);
  }

  .service-img {
    height: 300px;
  }

  .boat-caption,
  .service-caption {
    padding: 30px 0 100px;
  }

  .col2-caption h2 {
    font-size: 2.2rem;
  }

  .col2-caption p~h2 {
    margin-top: 60px;
  }

  .title-quote h3 {
    font-size: 2.4rem;
  }

  ul li {
    padding-left: 40px;
  }

  ul li:before {
    width: 30px;
  }

  .h1,
  h1 {
    font-size: 3.4rem;
  }

  section.text-2col .text-left {
    order: 1;
    padding-top: 3rem;
  }

  .profil-img.simple.is-inview {
    width: 260px;
    margin: 30px auto 0;
  }

  .partn-img {
    padding: 30px 100px;
  }

  .slick-slide img {
    height: 220px;
    width: 80vw;
  }

  .line-specs p {
    padding-left: 0;
    text-align: left !important;
    margin: 5px auto;
  }

  .line-specs .text-right {
    text-align: left;
  }

  nav a {
    display: none;
  }

  nav.mobile a {
    display: block;
  }

  .bigs {
    display: none;
  }

  .close-bigs {
    display: none;
  }

  #trigger-menu {
    display: block;
    font-size: 1rem;
    padding: 0;
    margin: 0 15px;
  }

  header {
    padding: 20px 0;
    background-color: #000e13;
  }

  nav.mobile {
    display: block;
    width: 100%;
    text-align: center;
    top: 60px;
    border-top: 1px solid transparent;
    padding-top: 0;
    overflow: hidden;
    height: 0;
    transition: 1s ease;
    position: relative;
  }

  nav.mobile a {
    font-size: 18px;
    margin: 0;
    padding: 0.5rem 0;
  }

  nav.mobile.open {
    padding: 15px 0 0;
    height: 400px;
    border-top: 1px solid #b9b9b9;
  }

  #trigger-menu .close,
  #trigger-menu.toclose .ouvrir {
    display: none;
  }

  #trigger-menu.toclose .close {
    display: block;
  }

  .banner-caption.left {
    margin-left: 0 !important;
  }

  .sizup {
    left: 0;
    align-items: center;
  }

  .chevron-gauche {
    order: -1 !important;
  }

  section.boats .news .row {
    flex-direction: column-reverse;
  }

  .m-horizontalScroll__scroll.js-horizontalScroll-scroll {
    height: auto !important;
  }

  .m-horizontalScroll__sticky {
    position: relative;
    top: 0;
    width: 100vw;
    overflow: auto;
    height: auto;
  }

  .m-horizontalScroll .slide-image img {
    height: auto !important;
    width: calc(100vw - 30px) !important;
  }

  .m-horizontalScroll .slide-image {
    padding: 0 15px 30px;
  }

  .m-horizontalScroll__content {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 30px;
  }

  .m-horizontalScroll .slide-image p {
    width: calc(100vw - 30px) !important;
  }
  
  .logo-loader{
    display: none;
  }
}

/* Desktop */
.mobile-hero {
    display: none;
}


@media (max-width: 1090px) {
    .desktop-hero {
        display: none;
    }
    .mobile-hero {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        margin-top: 150px;
        display: block;
    }

    .banner-img {
    position: relative;      /* bleibt im Flow */
    width: 100vw;
    height: auto;
    object-fit: contain;     
    object-position: bottom; /* Bild rutscht nach unten, bleibt vollständig sichtbar */
    margin-top: 0;           /* kein zusätzlicher Abstand */
    margin: 0;
    padding: 0;
    }

    .foto-galerie {
        margin-top: -200px;
    }
}