/* Hamburger */
.hamburger {
  margin-top: 85px;
  margin-left: 10px;
  padding: 15px 0 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

/* .hamburger.is-active{transform:translateX(10px)} */
.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::after, .hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  width: 34px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::after, .hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  width: 36px;
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:focus {
  outline: 0;
}

/* * { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); }
* * * * * * * { background-color: rgba(255,0,0,.2); }
* * * * * * * * { background-color: rgba(0,255,0,.2); }
* * * * * * * * * { background-color: rgba(0,0,255,.2); } */
/* General and Bootstrap-like classes */
:root {
  /*
  By doing this bootstrap margins and paddings (expressed in rem) will be 2.5px 5px 10px 15px 30px.
  So it is coherent with columns horizontal margins.
  */
  font-size: 62.5%;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-0,
.my-col-0 {
  margin-top: 0vw;
}

.mb-col-0,
.my-col-0 {
  margin-bottom: 0vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-0,
.py-col-0 {
  padding-top: 0vw;
}

.pb-col-0,
.py-col-0 {
  padding-bottom: 0vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-1,
.my-col-1 {
  margin-top: 8.3333333333vw;
}

.mb-col-1,
.my-col-1 {
  margin-bottom: 8.3333333333vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-1,
.py-col-1 {
  padding-top: 8.3333333333vw;
}

.pb-col-1,
.py-col-1 {
  padding-bottom: 8.3333333333vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-2,
.my-col-2 {
  margin-top: 16.6666666667vw;
}

.mb-col-2,
.my-col-2 {
  margin-bottom: 16.6666666667vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-2,
.py-col-2 {
  padding-top: 16.6666666667vw;
}

.pb-col-2,
.py-col-2 {
  padding-bottom: 16.6666666667vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-3,
.my-col-3 {
  margin-top: 25vw;
}

.mb-col-3,
.my-col-3 {
  margin-bottom: 25vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-3,
.py-col-3 {
  padding-top: 25vw;
}

.pb-col-3,
.py-col-3 {
  padding-bottom: 25vw;
}

/* Top and bottom margin equal to half column */
.mt-half-col,
.my-half-col {
  margin-top: 4.166667vw;
}

.mb-half-col,
.my-half-col {
  margin-bottom: 4.166667vw;
}

/* Top and bottom padding equal to half column */
.pt-half-col,
.py-half-col {
  padding-top: 4.166667vw;
}

.pb-half-col,
.py-half-col {
  padding-bottom: 4.166667vw;
}

/* Left and right margin equal to half column */
.ml-half-col,
.mx-half-col {
  margin-left: 4.166667vw;
}

.mr-half-col,
.mx-half-col {
  margin-right: 4.166667vw;
}

/* Left and right padding equal to half column */
.pl-half-col,
.px-half-col {
  padding-left: 4.166667vw;
}

.pr-half-col,
.px-half-col {
  padding-right: 4.166667vw;
}

@media (min-width: 576px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-0,
.my-col-sm-0 {
    margin-top: 0vw;
  }

  .mb-col-sm-0,
.my-col-sm-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-0,
.py-col-sm-0 {
    padding-top: 0vw;
  }

  .pb-col-sm-0,
.py-col-sm-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-1,
.my-col-sm-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-sm-1,
.my-col-sm-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-1,
.py-col-sm-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-sm-1,
.py-col-sm-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-2,
.my-col-sm-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-sm-2,
.my-col-sm-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-2,
.py-col-sm-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-sm-2,
.py-col-sm-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-3,
.my-col-sm-3 {
    margin-top: 25vw;
  }

  .mb-col-sm-3,
.my-col-sm-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-3,
.py-col-sm-3 {
    padding-top: 25vw;
  }

  .pb-col-sm-3,
.py-col-sm-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-sm,
.my-half-col-sm {
    margin-top: 4.166667vw;
  }

  .mb-half-col-sm,
.my-half-col-sm {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-sm,
.py-half-col-sm {
    padding-top: 4.166667vw;
  }

  .pb-half-col-sm,
.py-half-col-sm {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-sm,
.mx-half-col-sm {
    margin-left: 4.166667vw;
  }

  .mr-half-col-sm,
.mx-half-col-sm {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-sm,
.px-half-col-sm {
    padding-left: 4.166667vw;
  }

  .pr-half-col-sm,
.px-half-col-sm {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 768px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-0,
.my-col-md-0 {
    margin-top: 0vw;
  }

  .mb-col-md-0,
.my-col-md-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-0,
.py-col-md-0 {
    padding-top: 0vw;
  }

  .pb-col-md-0,
.py-col-md-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-1,
.my-col-md-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-md-1,
.my-col-md-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-1,
.py-col-md-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-md-1,
.py-col-md-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-2,
.my-col-md-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-md-2,
.my-col-md-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-2,
.py-col-md-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-md-2,
.py-col-md-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-3,
.my-col-md-3 {
    margin-top: 25vw;
  }

  .mb-col-md-3,
.my-col-md-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-3,
.py-col-md-3 {
    padding-top: 25vw;
  }

  .pb-col-md-3,
.py-col-md-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-md,
.my-half-col-md {
    margin-top: 4.166667vw;
  }

  .mb-half-col-md,
.my-half-col-md {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-md,
.py-half-col-md {
    padding-top: 4.166667vw;
  }

  .pb-half-col-md,
.py-half-col-md {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-md,
.mx-half-col-md {
    margin-left: 4.166667vw;
  }

  .mr-half-col-md,
.mx-half-col-md {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-md,
.px-half-col-md {
    padding-left: 4.166667vw;
  }

  .pr-half-col-md,
.px-half-col-md {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 992px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-0,
.my-col-lg-0 {
    margin-top: 0vw;
  }

  .mb-col-lg-0,
.my-col-lg-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-0,
.py-col-lg-0 {
    padding-top: 0vw;
  }

  .pb-col-lg-0,
.py-col-lg-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-1,
.my-col-lg-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-lg-1,
.my-col-lg-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-1,
.py-col-lg-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-lg-1,
.py-col-lg-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-2,
.my-col-lg-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-lg-2,
.my-col-lg-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-2,
.py-col-lg-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-lg-2,
.py-col-lg-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-3,
.my-col-lg-3 {
    margin-top: 25vw;
  }

  .mb-col-lg-3,
.my-col-lg-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-3,
.py-col-lg-3 {
    padding-top: 25vw;
  }

  .pb-col-lg-3,
.py-col-lg-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-lg,
.my-half-col-lg {
    margin-top: 4.166667vw;
  }

  .mb-half-col-lg,
.my-half-col-lg {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-lg,
.py-half-col-lg {
    padding-top: 4.166667vw;
  }

  .pb-half-col-lg,
.py-half-col-lg {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-lg,
.mx-half-col-lg {
    margin-left: 4.166667vw;
  }

  .mr-half-col-lg,
.mx-half-col-lg {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-lg,
.px-half-col-lg {
    padding-left: 4.166667vw;
  }

  .pr-half-col-lg,
.px-half-col-lg {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1200px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-0,
.my-col-xl-0 {
    margin-top: 0vw;
  }

  .mb-col-xl-0,
.my-col-xl-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-0,
.py-col-xl-0 {
    padding-top: 0vw;
  }

  .pb-col-xl-0,
.py-col-xl-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-1,
.my-col-xl-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-xl-1,
.my-col-xl-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-1,
.py-col-xl-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-xl-1,
.py-col-xl-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-2,
.my-col-xl-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-xl-2,
.my-col-xl-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-2,
.py-col-xl-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-xl-2,
.py-col-xl-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-3,
.my-col-xl-3 {
    margin-top: 25vw;
  }

  .mb-col-xl-3,
.my-col-xl-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-3,
.py-col-xl-3 {
    padding-top: 25vw;
  }

  .pb-col-xl-3,
.py-col-xl-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-xl,
.my-half-col-xl {
    margin-top: 4.166667vw;
  }

  .mb-half-col-xl,
.my-half-col-xl {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-xl,
.py-half-col-xl {
    padding-top: 4.166667vw;
  }

  .pb-half-col-xl,
.py-half-col-xl {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-xl,
.mx-half-col-xl {
    margin-left: 4.166667vw;
  }

  .mr-half-col-xl,
.mx-half-col-xl {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-xl,
.px-half-col-xl {
    padding-left: 4.166667vw;
  }

  .pr-half-col-xl,
.px-half-col-xl {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1400px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-0,
.my-col-xxl-0 {
    margin-top: 0vw;
  }

  .mb-col-xxl-0,
.my-col-xxl-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-0,
.py-col-xxl-0 {
    padding-top: 0vw;
  }

  .pb-col-xxl-0,
.py-col-xxl-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-1,
.my-col-xxl-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-xxl-1,
.my-col-xxl-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-1,
.py-col-xxl-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-xxl-1,
.py-col-xxl-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-2,
.my-col-xxl-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-xxl-2,
.my-col-xxl-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-2,
.py-col-xxl-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-xxl-2,
.py-col-xxl-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-3,
.my-col-xxl-3 {
    margin-top: 25vw;
  }

  .mb-col-xxl-3,
.my-col-xxl-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-3,
.py-col-xxl-3 {
    padding-top: 25vw;
  }

  .pb-col-xxl-3,
.py-col-xxl-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-xxl,
.my-half-col-xxl {
    margin-top: 4.166667vw;
  }

  .mb-half-col-xxl,
.my-half-col-xxl {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-xxl,
.py-half-col-xxl {
    padding-top: 4.166667vw;
  }

  .pb-half-col-xxl,
.py-half-col-xxl {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-xxl,
.mx-half-col-xxl {
    margin-left: 4.166667vw;
  }

  .mr-half-col-xxl,
.mx-half-col-xxl {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-xxl,
.px-half-col-xxl {
    padding-left: 4.166667vw;
  }

  .pr-half-col-xxl,
.px-half-col-xxl {
    padding-right: 4.166667vw;
  }
}
.opacity-0 {
  opacity: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer, .boat-collection-menu-swiper-btn {
  cursor: pointer;
}

.text-decoration-none,
.text-decoration-none:hover {
  text-decoration: none;
}

.text-black,
a.text-black {
  color: #000;
}
.text-black:hover,
a.text-black:hover {
  color: #000;
}

.bg-light-grey {
  background-color: #ebebeb;
}

.bg-transparent {
  background-color: transparent;
}

.filter-invert {
  filter: invert(1);
}

/* Scale on hover, needs to be inside an element with position relative + overflow hidden */
.scale-on-hover {
  transition: transform 0.35s ease-in-out;
}
.scale-on-hover:hover {
  transform: scale(1.05);
}

.underlined-on-hover .underline-element {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.35s ease-in-out;
}
.underlined-on-hover .underline-element.underline-element-white {
  background-color: rgba(255, 255, 255, 0.2);
}
.underlined-on-hover:hover .underline-element {
  transform: scaleX(1);
}

/* Zoom image effect on scroll, needs to be inside an element with position relative + overflow hidden */
.zoom-out-intro-effect {
  display: block;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: transform 0.45s ease-in-out 0.2s;
}
.zoom-out-intro-effect.zoomed {
  transform: scale(1.05);
}

/* Fade in element */
.fade-in-intro-effect {
  display: block;
  transform: scale(1);
  opacity: 1;
  transform-origin: center bottom;
  transition: all 0.45s ease-in-out 0.2s;
}
.fade-in-intro-effect.faded {
  transform: scale(0.98) translateY(20px);
  opacity: 0.05;
}

/* Zoom image on hover */
.zoom-img-on-hover {
  overflow: hidden;
}
.zoom-img-on-hover .img-to-zoom,
.zoom-img-on-hover .img-to-zoom-sm {
  transform: scale(1);
  transition: transform 0.35s ease-in-out;
}
.zoom-img-on-hover .img-to-zoom.fix-browser-margin,
.zoom-img-on-hover .img-to-zoom-sm.fix-browser-margin {
  transform: scale(1.01);
}
.zoom-img-on-hover:hover .img-to-zoom {
  transform: scale(1.075);
}
.zoom-img-on-hover:hover .img-to-zoom-sm {
  transform: scale(1.035);
}

/* Custom CSS Loader */
#loading-css {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999999;
}

.lds-ring {
  display: inline-block;
  position: fixed;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Needs to be inside an element with position relative + overflow hidden */
.sticky-side-title {
  position: sticky;
  top: 30%;
  padding: 30px 0;
}
.sticky-side-title p {
  transform: rotate(180deg);
  transform-origin: center;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  line-height: calc(8.333333vw - 30px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Display elements inline with auto width */
.wrapper-container {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.wrapper-container .wrapper-box {
  /* Each box will take as much space as possible and every box in the same line will have the same width */
  display: table-cell;
  width: auto;
  text-align: center;
}

/* Center block vertically */
.outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  /* Whatever width you want */
}

/* Autofill */
.bg-black input:-webkit-autofill,
.bg-black input:-webkit-autofill:hover,
.bg-black input:-webkit-autofill:focus,
.bg-black input:-webkit-autofill:active {
  /* Background color */
  box-shadow: 0 0 0 30px #000 inset !important;
}

.bg-black input:-webkit-autofill {
  /* Text color */
  -webkit-text-fill-color: #fff !important;
}

.bg-white input:-webkit-autofill,
.bg-white input:-webkit-autofill:hover,
.bg-white input:-webkit-autofill:focus,
.bg-white input:-webkit-autofill:active {
  /* Background color */
  box-shadow: 0 0 0 30px #fff inset !important;
}

.bg-white input:-webkit-autofill {
  /* Text color */
  -webkit-text-fill-color: #000 !important;
}

/* General */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Raleway", sans-serif; */
  margin: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* 1.6rem -> 16px */
  font-size: 1.6rem;
  line-height: 1.15;
}

/* Youtube modal */
#container-yt-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 90, 154, 0.95);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

#container-yt-video.open {
  opacity: 1;
}

#video-cont {
  display: block;
  transform: translateY(-50%);
}

#close-yt-video {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.m-w-100 {
  max-width: 100%;
  min-width: 100%;
  height: auto;
}

/* Hamburger */
.hamburger {
  margin-top: 85px;
  margin-left: 10px;
  padding: 15px 0 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

/* .hamburger.is-active{transform:translateX(10px)} */
.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::after, .hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  width: 34px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::after, .hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  width: 36px;
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:focus {
  outline: 0;
}

/* * { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); }
* * * * * * * { background-color: rgba(255,0,0,.2); }
* * * * * * * * { background-color: rgba(0,255,0,.2); }
* * * * * * * * * { background-color: rgba(0,0,255,.2); } */
/* General and Bootstrap-like classes */
:root {
  /*
  By doing this bootstrap margins and paddings (expressed in rem) will be 2.5px 5px 10px 15px 30px.
  So it is coherent with columns horizontal margins.
  */
  font-size: 62.5%;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-0,
.my-col-0 {
  margin-top: 0vw;
}

.mb-col-0,
.my-col-0 {
  margin-bottom: 0vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-0,
.py-col-0 {
  padding-top: 0vw;
}

.pb-col-0,
.py-col-0 {
  padding-bottom: 0vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-1,
.my-col-1 {
  margin-top: 8.3333333333vw;
}

.mb-col-1,
.my-col-1 {
  margin-bottom: 8.3333333333vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-1,
.py-col-1 {
  padding-top: 8.3333333333vw;
}

.pb-col-1,
.py-col-1 {
  padding-bottom: 8.3333333333vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-2,
.my-col-2 {
  margin-top: 16.6666666667vw;
}

.mb-col-2,
.my-col-2 {
  margin-bottom: 16.6666666667vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-2,
.py-col-2 {
  padding-top: 16.6666666667vw;
}

.pb-col-2,
.py-col-2 {
  padding-bottom: 16.6666666667vw;
}

/* Top and bottom margin proportionate to bootstrap columns */
.mt-col-3,
.my-col-3 {
  margin-top: 25vw;
}

.mb-col-3,
.my-col-3 {
  margin-bottom: 25vw;
}

/* Top and bottom padding proportionate to bootstrap columns */
.pt-col-3,
.py-col-3 {
  padding-top: 25vw;
}

.pb-col-3,
.py-col-3 {
  padding-bottom: 25vw;
}

/* Top and bottom margin equal to half column */
.mt-half-col,
.my-half-col {
  margin-top: 4.166667vw;
}

.mb-half-col,
.my-half-col {
  margin-bottom: 4.166667vw;
}

/* Top and bottom padding equal to half column */
.pt-half-col,
.py-half-col {
  padding-top: 4.166667vw;
}

.pb-half-col,
.py-half-col {
  padding-bottom: 4.166667vw;
}

/* Left and right margin equal to half column */
.ml-half-col,
.mx-half-col {
  margin-left: 4.166667vw;
}

.mr-half-col,
.mx-half-col {
  margin-right: 4.166667vw;
}

/* Left and right padding equal to half column */
.pl-half-col,
.px-half-col {
  padding-left: 4.166667vw;
}

.pr-half-col,
.px-half-col {
  padding-right: 4.166667vw;
}

@media (min-width: 576px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-0,
.my-col-sm-0 {
    margin-top: 0vw;
  }

  .mb-col-sm-0,
.my-col-sm-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-0,
.py-col-sm-0 {
    padding-top: 0vw;
  }

  .pb-col-sm-0,
.py-col-sm-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-1,
.my-col-sm-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-sm-1,
.my-col-sm-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-1,
.py-col-sm-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-sm-1,
.py-col-sm-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-2,
.my-col-sm-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-sm-2,
.my-col-sm-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-2,
.py-col-sm-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-sm-2,
.py-col-sm-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-sm-3,
.my-col-sm-3 {
    margin-top: 25vw;
  }

  .mb-col-sm-3,
.my-col-sm-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-sm-3,
.py-col-sm-3 {
    padding-top: 25vw;
  }

  .pb-col-sm-3,
.py-col-sm-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-sm,
.my-half-col-sm {
    margin-top: 4.166667vw;
  }

  .mb-half-col-sm,
.my-half-col-sm {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-sm,
.py-half-col-sm {
    padding-top: 4.166667vw;
  }

  .pb-half-col-sm,
.py-half-col-sm {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-sm,
.mx-half-col-sm {
    margin-left: 4.166667vw;
  }

  .mr-half-col-sm,
.mx-half-col-sm {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-sm,
.px-half-col-sm {
    padding-left: 4.166667vw;
  }

  .pr-half-col-sm,
.px-half-col-sm {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 768px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-0,
.my-col-md-0 {
    margin-top: 0vw;
  }

  .mb-col-md-0,
.my-col-md-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-0,
.py-col-md-0 {
    padding-top: 0vw;
  }

  .pb-col-md-0,
.py-col-md-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-1,
.my-col-md-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-md-1,
.my-col-md-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-1,
.py-col-md-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-md-1,
.py-col-md-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-2,
.my-col-md-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-md-2,
.my-col-md-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-2,
.py-col-md-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-md-2,
.py-col-md-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-md-3,
.my-col-md-3 {
    margin-top: 25vw;
  }

  .mb-col-md-3,
.my-col-md-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-md-3,
.py-col-md-3 {
    padding-top: 25vw;
  }

  .pb-col-md-3,
.py-col-md-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-md,
.my-half-col-md {
    margin-top: 4.166667vw;
  }

  .mb-half-col-md,
.my-half-col-md {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-md,
.py-half-col-md {
    padding-top: 4.166667vw;
  }

  .pb-half-col-md,
.py-half-col-md {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-md,
.mx-half-col-md {
    margin-left: 4.166667vw;
  }

  .mr-half-col-md,
.mx-half-col-md {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-md,
.px-half-col-md {
    padding-left: 4.166667vw;
  }

  .pr-half-col-md,
.px-half-col-md {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 992px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-0,
.my-col-lg-0 {
    margin-top: 0vw;
  }

  .mb-col-lg-0,
.my-col-lg-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-0,
.py-col-lg-0 {
    padding-top: 0vw;
  }

  .pb-col-lg-0,
.py-col-lg-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-1,
.my-col-lg-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-lg-1,
.my-col-lg-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-1,
.py-col-lg-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-lg-1,
.py-col-lg-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-2,
.my-col-lg-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-lg-2,
.my-col-lg-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-2,
.py-col-lg-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-lg-2,
.py-col-lg-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-lg-3,
.my-col-lg-3 {
    margin-top: 25vw;
  }

  .mb-col-lg-3,
.my-col-lg-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-lg-3,
.py-col-lg-3 {
    padding-top: 25vw;
  }

  .pb-col-lg-3,
.py-col-lg-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-lg,
.my-half-col-lg {
    margin-top: 4.166667vw;
  }

  .mb-half-col-lg,
.my-half-col-lg {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-lg,
.py-half-col-lg {
    padding-top: 4.166667vw;
  }

  .pb-half-col-lg,
.py-half-col-lg {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-lg,
.mx-half-col-lg {
    margin-left: 4.166667vw;
  }

  .mr-half-col-lg,
.mx-half-col-lg {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-lg,
.px-half-col-lg {
    padding-left: 4.166667vw;
  }

  .pr-half-col-lg,
.px-half-col-lg {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1200px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-0,
.my-col-xl-0 {
    margin-top: 0vw;
  }

  .mb-col-xl-0,
.my-col-xl-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-0,
.py-col-xl-0 {
    padding-top: 0vw;
  }

  .pb-col-xl-0,
.py-col-xl-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-1,
.my-col-xl-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-xl-1,
.my-col-xl-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-1,
.py-col-xl-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-xl-1,
.py-col-xl-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-2,
.my-col-xl-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-xl-2,
.my-col-xl-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-2,
.py-col-xl-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-xl-2,
.py-col-xl-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xl-3,
.my-col-xl-3 {
    margin-top: 25vw;
  }

  .mb-col-xl-3,
.my-col-xl-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xl-3,
.py-col-xl-3 {
    padding-top: 25vw;
  }

  .pb-col-xl-3,
.py-col-xl-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-xl,
.my-half-col-xl {
    margin-top: 4.166667vw;
  }

  .mb-half-col-xl,
.my-half-col-xl {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-xl,
.py-half-col-xl {
    padding-top: 4.166667vw;
  }

  .pb-half-col-xl,
.py-half-col-xl {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-xl,
.mx-half-col-xl {
    margin-left: 4.166667vw;
  }

  .mr-half-col-xl,
.mx-half-col-xl {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-xl,
.px-half-col-xl {
    padding-left: 4.166667vw;
  }

  .pr-half-col-xl,
.px-half-col-xl {
    padding-right: 4.166667vw;
  }
}
@media (min-width: 1400px) {
  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-0,
.my-col-xxl-0 {
    margin-top: 0vw;
  }

  .mb-col-xxl-0,
.my-col-xxl-0 {
    margin-bottom: 0vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-0,
.py-col-xxl-0 {
    padding-top: 0vw;
  }

  .pb-col-xxl-0,
.py-col-xxl-0 {
    padding-bottom: 0vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-1,
.my-col-xxl-1 {
    margin-top: 8.3333333333vw;
  }

  .mb-col-xxl-1,
.my-col-xxl-1 {
    margin-bottom: 8.3333333333vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-1,
.py-col-xxl-1 {
    padding-top: 8.3333333333vw;
  }

  .pb-col-xxl-1,
.py-col-xxl-1 {
    padding-bottom: 8.3333333333vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-2,
.my-col-xxl-2 {
    margin-top: 16.6666666667vw;
  }

  .mb-col-xxl-2,
.my-col-xxl-2 {
    margin-bottom: 16.6666666667vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-2,
.py-col-xxl-2 {
    padding-top: 16.6666666667vw;
  }

  .pb-col-xxl-2,
.py-col-xxl-2 {
    padding-bottom: 16.6666666667vw;
  }

  /* Top and bottom margin proportionate to bootstrap columns */
  .mt-col-xxl-3,
.my-col-xxl-3 {
    margin-top: 25vw;
  }

  .mb-col-xxl-3,
.my-col-xxl-3 {
    margin-bottom: 25vw;
  }

  /* Top and bottom padding proportionate to bootstrap columns */
  .pt-col-xxl-3,
.py-col-xxl-3 {
    padding-top: 25vw;
  }

  .pb-col-xxl-3,
.py-col-xxl-3 {
    padding-bottom: 25vw;
  }

  /* Top and bottom margin equal to half column */
  .mt-half-col-xxl,
.my-half-col-xxl {
    margin-top: 4.166667vw;
  }

  .mb-half-col-xxl,
.my-half-col-xxl {
    margin-bottom: 4.166667vw;
  }

  /* Top and bottom padding equal to half column */
  .pt-half-col-xxl,
.py-half-col-xxl {
    padding-top: 4.166667vw;
  }

  .pb-half-col-xxl,
.py-half-col-xxl {
    padding-bottom: 4.166667vw;
  }

  /* Left and right margin equal to half column */
  .ml-half-col-xxl,
.mx-half-col-xxl {
    margin-left: 4.166667vw;
  }

  .mr-half-col-xxl,
.mx-half-col-xxl {
    margin-right: 4.166667vw;
  }

  /* Left and right padding equal to half column */
  .pl-half-col-xxl,
.px-half-col-xxl {
    padding-left: 4.166667vw;
  }

  .pr-half-col-xxl,
.px-half-col-xxl {
    padding-right: 4.166667vw;
  }
}
.opacity-0 {
  opacity: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.row-gap-10 {
  row-gap: 10px;
}

.row-gap-20 {
  row-gap: 20px;
}

.row-gap-30 {
  row-gap: 30px;
}

.row-gap-40 {
  row-gap: 40px;
}

.row-gap-50 {
  row-gap: 50px;
}

.h-fit-content {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.w-fit-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer, .boat-collection-menu-swiper-btn {
  cursor: pointer;
}

.text-decoration-none,
.text-decoration-none:hover {
  text-decoration: none;
}

.text-black,
a.text-black {
  color: #000;
}
.text-black:hover,
a.text-black:hover {
  color: #000;
}

.bg-light-grey {
  background-color: #ebebeb;
}

.bg-transparent {
  background-color: transparent;
}

.filter-invert {
  filter: invert(1);
}

/* Scale on hover, needs to be inside an element with position relative + overflow hidden */
.scale-on-hover {
  transition: transform 0.35s ease-in-out;
}
.scale-on-hover:hover {
  transform: scale(1.05);
}

.underlined-on-hover .underline-element {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.35s ease-in-out;
}
.underlined-on-hover .underline-element.underline-element-white {
  background-color: rgba(255, 255, 255, 0.2);
}
.underlined-on-hover:hover .underline-element {
  transform: scaleX(1);
}

/* Zoom image effect on scroll, needs to be inside an element with position relative + overflow hidden */
.zoom-out-intro-effect {
  display: block;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: transform 0.45s ease-in-out 0.2s;
}
.zoom-out-intro-effect.zoomed {
  transform: scale(1.05);
}

/* Fade in element */
.fade-in-intro-effect {
  display: block;
  transform: scale(1);
  opacity: 1;
  transform-origin: center bottom;
  transition: all 0.45s ease-in-out 0.2s;
}
.fade-in-intro-effect.faded {
  transform: scale(0.98) translateY(20px);
  opacity: 0.05;
}

/* Zoom image on hover */
.zoom-img-on-hover {
  overflow: hidden;
}
.zoom-img-on-hover .img-to-zoom,
.zoom-img-on-hover .img-to-zoom-sm {
  transform: scale(1);
  transition: transform 0.35s ease-in-out;
}
.zoom-img-on-hover .img-to-zoom.fix-browser-margin,
.zoom-img-on-hover .img-to-zoom-sm.fix-browser-margin {
  transform: scale(1.01);
}
.zoom-img-on-hover:hover .img-to-zoom {
  transform: scale(1.075);
}
.zoom-img-on-hover:hover .img-to-zoom-sm {
  transform: scale(1.035);
}

/* Custom CSS Loader */
#loading-css {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999999;
}

.lds-ring {
  display: inline-block;
  position: fixed;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Needs to be inside an element with position relative + overflow hidden */
.sticky-side-title {
  position: sticky;
  top: 30%;
  padding: 30px 0;
}
.sticky-side-title p {
  transform: rotate(180deg);
  transform-origin: center;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  line-height: calc(8.333333vw - 30px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Display elements inline with auto width */
.wrapper-container {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.wrapper-container .wrapper-box {
  /* Each box will take as much space as possible and every box in the same line will have the same width */
  display: table-cell;
  width: auto;
  text-align: center;
}

/* Center block vertically */
.outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  /* Whatever width you want */
}

/* Autofill */
.bg-black input:-webkit-autofill,
.bg-black input:-webkit-autofill:hover,
.bg-black input:-webkit-autofill:focus,
.bg-black input:-webkit-autofill:active {
  /* Background color */
  box-shadow: 0 0 0 30px #000 inset !important;
}

.bg-black input:-webkit-autofill {
  /* Text color */
  -webkit-text-fill-color: #fff !important;
}

.bg-white input:-webkit-autofill,
.bg-white input:-webkit-autofill:hover,
.bg-white input:-webkit-autofill:focus,
.bg-white input:-webkit-autofill:active {
  /* Background color */
  box-shadow: 0 0 0 30px #fff inset !important;
}

.bg-white input:-webkit-autofill {
  /* Text color */
  -webkit-text-fill-color: #000 !important;
}

/* General */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Raleway", sans-serif; */
  margin: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* 1.6rem -> 16px */
  font-size: 1.6rem;
  line-height: 1.15;
}

/* Youtube modal */
#container-yt-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 90, 154, 0.95);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

#container-yt-video.open {
  opacity: 1;
}

#video-cont {
  display: block;
  transform: translateY(-50%);
}

#close-yt-video {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.m-w-100 {
  max-width: 100%;
  min-width: 100%;
  height: auto;
}

.header-link {
  line-height: 67px;
  position: relative;
}
.header-link img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* transform: translateX(-50%) scaleY(0);
  transform-origin: center bottom;
  transition: transform .35s ease-in-out; */
  transition: all 0.35s ease-in-out;
  opacity: 0;
}
.header-link.header-link-active {
  /* img {
      transform: translateX(-50%) scaleY(1);
  } */
}
.header-link.header-link-active img {
  opacity: 1;
}

.hdr-section {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  height: 90px;
  z-index: 1050 !important;
  transition: 0.5s;
}
.hdr-section .hamburger-inner,
.hdr-section .hamburger-inner::after,
.hdr-section .hamburger-inner::before {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: 0.5s;
}
.hdr-section .hamburger-inner.active,
.hdr-section .hamburger-inner::after.active,
.hdr-section .hamburger-inner::before.active {
  background-color: #000;
}
.hdr-section .bwa-logo {
  height: 55px;
}
.hdr-section .bwa-logo-white {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section .bwa-logo-black {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section .searchBtn-white {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section .searchBtn-black {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section .nav-left-section,
.hdr-section .nav-center-section,
.hdr-section .nav-right-section {
  width: 100%;
}
.hdr-section .nav-right-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hdr-section .nav-left-section {
  display: flex;
  align-items: center;
}
.hdr-section .nav-left-section .help-btn-container a .help-btn {
  background: #ed312d;
  color: #fff;
  padding: 10px 60px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s;
  border-radius: 100px;
}
.hdr-section .nav-left-section .help-btn-container a .help-btn:hover {
  background-color: #b72826;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}
.hdr-section .nav-left-section .help-btn-container a:hover {
  text-decoration: none;
}
.hdr-section #lang {
  color: #000 !important;
  cursor: pointer;
  transition: 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hdr-section #lang:hover {
  color: #000 !important;
}
.hdr-section .vertical-divider {
  width: 1px;
  height: 25px;
  background-color: #000;
  opacity: 0.35;
  margin: 0 50px;
  transition: 0.5s;
}
.hdr-section.transparent {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}
.hdr-section.transparent .hamburger-inner,
.hdr-section.transparent .hamburger-inner::after,
.hdr-section.transparent .hamburger-inner::before {
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
.hdr-section.transparent .hamburger-inneractive,
.hdr-section.transparent .hamburger-inner::afteractive,
.hdr-section.transparent .hamburger-inner::beforeactive {
  background-color: #fff;
}
.hdr-section.transparent .bwa-logo-white {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section.transparent .bwa-logo-black {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section.transparent .searchBtn-white {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section.transparent .searchBtn-black {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section.transparent #lang {
  color: #fff !important;
  cursor: pointer;
  transition: 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hdr-section.transparent .vertical-divider {
  width: 1px;
  height: 25px;
  background-color: #fff;
  opacity: 0.35;
  margin: 0 50px;
  transition: 0.5s;
}
.hdr-section.scrolled,
.hdr-section .transparent.scrolled {
  height: 67px;
  background: #fff;
  transition: 0.5s;
  border-bottom: 1px solid #ebebeb;
}
.hdr-section.scrolled .bwa-logo,
.hdr-section .transparent.scrolled .bwa-logo {
  height: 40px;
}
.hdr-section.scrolled .hamburger-inner,
.hdr-section.scrolled .hamburger-inner::after,
.hdr-section.scrolled .hamburger-inner::before,
.hdr-section .transparent.scrolled .hamburger-inner,
.hdr-section .transparent.scrolled .hamburger-inner::after,
.hdr-section .transparent.scrolled .hamburger-inner::before {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: 0.5s;
}
.hdr-section.scrolled .hamburger-inner.active,
.hdr-section.scrolled .hamburger-inner::after.active,
.hdr-section.scrolled .hamburger-inner::before.active,
.hdr-section .transparent.scrolled .hamburger-inner.active,
.hdr-section .transparent.scrolled .hamburger-inner::after.active,
.hdr-section .transparent.scrolled .hamburger-inner::before.active {
  background-color: #000;
}
.hdr-section.scrolled .searchBtn-white,
.hdr-section .transparent.scrolled .searchBtn-white {
  opacity: 0;
}
.hdr-section.scrolled .searchBtn-black,
.hdr-section .transparent.scrolled .searchBtn-black {
  opacity: 1;
}
.hdr-section.scrolled .bwa-logo-white,
.hdr-section .transparent.scrolled .bwa-logo-white {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section.scrolled .bwa-logo-black,
.hdr-section .transparent.scrolled .bwa-logo-black {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section.scrolled #lang,
.hdr-section .transparent.scrolled #lang {
  color: #000 !important;
  transition: 0.5s;
}
.hdr-section.scrolled .vertical-divider,
.hdr-section .transparent.scrolled .vertical-divider {
  background-color: #000;
  transition: 0.5s;
}

#app {
  padding: 67px 0 0 0;
}

.header-link {
  font-size: 12px;
}

.extra-select-lang {
  display: flex;
}
.extra-select-lang .extra-select-lang-bg-transparent {
  background-color: transparent;
  width: 70%;
  top: 0;
}
.extra-select-lang .extra-select-lang-bg-black {
  height: 15px;
  background-color: #000;
  width: 30%;
  top: 0;
}

#selectLang {
  position: absolute;
  color: #fff;
  top: 28px;
  left: -111px;
  width: 163px !important;
  text-align: center;
}
#selectLang p {
  height: 37px;
  line-height: 37px;
  margin-bottom: 0;
  /* margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; */
}
#selectLang a {
  position: relative;
  display: block;
  height: 37px;
  color: #9b9b9b;
  transition: background-color 0.1s ease-in-out;
  background-color: #000;
}
#selectLang a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  pointer-events: none;
}
#selectLang a:last-child::after {
  display: none;
}
#selectLang a:hover {
  background-color: #363636;
  color: #fff;
}
#selectLang a.lang-clicked p {
  -webkit-animation: one-pulse 0.8s linear 0s 1 normal;
          animation: one-pulse 0.8s linear 0s 1 normal;
}

.hamburger--collapse .hamburger-inner::after {
  width: 25px;
  top: -14px;
}

.hamburger-inner::before {
  width: 25px;
  top: -7px;
}

.hamburger {
  transform: translateY(-3px);
  transition: transform 0.2s ease-in-out;
}
.hamburger.is-active {
  transform: translateY(0);
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: #ed312d;
  width: 25px;
  height: 2px;
}

@media only screen and (max-width: 1399px) {
  .hdr-section .nav-left-section .help-btn-container a .help-btn {
    padding: 9px 40px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-link {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1099px) {
  .hdr-section .nav-left-section .help-btn-container a .help-btn {
    padding: 9px 30px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .hdr-section .nav-left-section .help-btn-container a .help-btn {
    padding: 7px 25px;
    font-size: 13px;
  }
  .hdr-section .hdr-section.transparent .vertical-divider {
    margin: 0 15px;
  }
  .hdr-section .bwa-logo {
    height: 40px;
  }
  .hdr-section #lang {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header-search input {
    margin-left: 0;
  }

  .hdr-section .nav-left-section .help-btn-container a .help-btn {
    padding: 7px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .hdr-section .nav-left-section .help-btn-container a .help-btn {
    padding: 0;
    height: 28px;
    width: 28px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header-menu {
  position: fixed;
  background-color: #2b2b2b;
  height: 100vh;
  left: 0;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 90px;
  transition: all 0.3s ease-out;
  z-index: 1001;
}
.header-menu.height-auto {
  height: auto;
}
.header-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.header-menu a sup {
  top: 0.5em;
}
.header-menu a.capitalized {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.header-menu a.capitalized h2 {
  text-transform: capitalize;
}
.header-menu p {
  margin: 6px 0 6px 0 !important;
}
.header-menu h3 {
  color: #fff;
  font-weight: 700;
  font-size: 27px;
}
.header-menu .cta-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.header-menu .cta {
  margin-top: 0px;
}

.div-line {
  background-color: #979797;
  height: 1px;
  opacity: 0.35;
}

.header-search {
  position: fixed;
  background-color: #fff;
  transition: transform 0.35s ease-in-out;
  z-index: 1030;
  transform: translateY(67px);
  transition: 0.5s;
}
.header-search.scrolled {
  transition: 0.5s;
}
.header-search.scrolled input {
  background-color: transparent;
}
.header-search form {
  width: 100%;
}
.header-search input {
  width: 100%;
  background-color: transparent;
  color: #000;
  border: none;
  font-size: 80px;
  outline: none !important;
  text-transform: uppercase;
}
.header-search ::-moz-placeholder {
  font-size: 80px;
  color: #000;
  text-transform: uppercase;
}
.header-search :-ms-input-placeholder {
  font-size: 80px;
  color: #000;
  text-transform: uppercase;
}
.header-search ::placeholder {
  font-size: 80px;
  color: #000;
  text-transform: uppercase;
}

@media only screen and (max-width: 1599px) {
  .header-menu .cta-text {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .header-menu {
    overflow-y: scroll;
  }
  .header-menu h3 {
    font-size: 24px;
  }
  .header-menu p {
    font-size: 16px;
  }

  .header-menu-section {
    padding-bottom: 20px;
  }
  .header-menu-section .header-search {
    position: relative;
    background-color: #000;
    top: 40px;
    transition: transform 0.35s ease-in-out;
    z-index: 1030;
    padding: 0;
  }

  .mobile-divider-1,
.mobile-divider-2 {
    border-top: 1px solid #979797;
    opacity: 0.35;
  }

  .mobile-divider-1 {
    margin-bottom: 50px;
  }

  .mobile-divider-2 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu {
    padding-bottom: 150px;
  }

  .cta-text {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .header-menu {
    padding-top: 67px;
  }
  .header-menu h3 {
    font-size: 28px;
  }
  .header-menu input {
    width: 100%;
    background-color: transparent;
    color: #000;
    border: none;
    font-size: 50px;
    outline: none !important;
    text-transform: uppercase;
  }
  .header-menu ::-moz-placeholder {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
  }
  .header-menu :-ms-input-placeholder {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
  }
  .header-menu ::placeholder {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
  }

  .header-search.header-search-mobile {
    position: relative;
    transform: translateY(0);
    height: auto;
    background: #fff;
  }
  .header-search.header-search-mobile input {
    background: #fff;
    font-size: 50px;
    outline: none !important;
    padding: 15px 0;
  }

  .mobile-divider-1 {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .mobile-divider-2 {
    margin-top: 10px;
    margin-bottom: 30px;
  }
}
.newsletter {
  background-color: #ebebeb;
  color: #000;
  padding: 40px 55px;
  margin: 120px 0;
}
.newsletter h2 {
  font-size: 46px;
  font-weight: 900;
}
.newsletter h2 span {
  background-color: #ED312D;
  color: #ebebeb;
}
.newsletter .newsletter-form-container {
  position: relative;
  margin-top: 40px;
}
.newsletter .newsletter-form-container .newsletter-input {
  background-color: #ebebeb;
  border-bottom: 1px solid #000;
  color: #000;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  width: 100%;
  height: 40px;
}
.newsletter .newsletter-form-container .newsletter-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input:not(:-moz-placeholder-shown) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-input:not(:-ms-input-placeholder) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-input:focus, .newsletter .newsletter-form-container .newsletter-input:not(:placeholder-shown) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-submit {
  position: absolute;
  background: #ED312D;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  right: 0;
  top: 35%;
  transform: translate(0, -50%);
  padding: 12px 45px;
  border-radius: 100px;
  transition: 0.5s;
}
.newsletter .newsletter-form-container .newsletter-submit:hover {
  background-color: #b72826;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}
.newsletter .newsletter-form-container .newsletter-submit .newsletter-submit.newsletter-submit-done {
  opacity: 0;
  transform: translate(-125%, -50%);
  transition: all 0.25s ease-out;
}
.newsletter .newsletter-form-container .newsletter-submit .newsletter-submit.newsletter-submit-done-error {
  opacity: 0;
  transform: translate(-125%, -50%);
  transition: all 0.25s ease-out;
}
.newsletter .contact-checkbox-container {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.newsletter .contact-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.newsletter .contact-checkbox-container input:checked ~ .contact-checkmark {
  background-color: none;
}
.newsletter .contact-checkbox-container input:checked ~ .contact-checkmark:after {
  display: block;
}
.newsletter .contact-checkbox-container p {
  margin-left: 30px;
  font-style: italic;
  font-size: 16px;
}
.newsletter .contact-checkmark {
  position: absolute;
  display: flex;
  justify-content: center;
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 1px solid #000;
}
.newsletter .contact-checkmark:after {
  content: "";
  display: none;
}
.newsletter .contact-checkbox-container .contact-checkmark:after {
  width: 6px;
  height: 11px;
  margin-top: 2px;
  border: solid #ED312D;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.newsletter input:-webkit-autofill,
.newsletter input:-webkit-autofill:hover,
.newsletter input:-webkit-autofill:focus,
.newsletter textarea:-webkit-autofill,
.newsletter textarea:-webkit-autofill:hover,
.newsletter textarea:-webkit-autofill:focus,
.newsletter select:-webkit-autofill,
.newsletter select:-webkit-autofill:hover,
.newsletter select:-webkit-autofill:focus {
  border-bottom: 1px solid #ED312D;
  -webkit-text-fill-color: #000;
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #000 !important;
}
.newsletter .newsletter-description {
  margin-top: 120px;
}

@media only screen and (max-width: 991px) {
  .newsletter {
    margin: 8.33333333vw 0;
  }
  .newsletter h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .newsletter p {
    font-size: 24px;
    margin-bottom: 100px;
  }
  .newsletter .contact-checkbox-container p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  form {
    margin-top: 80px !important;
  }

  .newsletter {
    margin: 4.33333333vw 0;
    padding: 40px 25px;
  }
  .newsletter h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .newsletter p {
    font-size: 15px;
    margin-bottom: 100px;
  }
  .newsletter .contact-checkbox-container p {
    font-size: 12px;
  }
  .newsletter .newsletter-form-container .newsletter-input {
    font-size: 18px;
  }
  .newsletter .newsletter-form-container .newsletter-submit {
    padding: 7px 35px;
  }
}
footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 0 0 90px 0;
}
footer .footer-cell {
  font-size: 15px;
}
footer .footer-cell p {
  line-height: 28px;
  margin-bottom: 0;
}
footer .footer-logo {
  margin-top: 90px;
  margin-bottom: 65px;
}
footer .footer-socials-div {
  max-width: 140px;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  footer {
    padding: 0 0 60px 0;
  }
  footer .footer-logo {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 35px;
  }
  footer .footer-cell {
    text-align: center;
    margin: 40px auto 40px auto;
  }
  footer .footer-socials-div {
    max-width: 30%;
    margin: 10px auto 0 auto;
  }
}
@media only screen and (max-width: 575px) {
  footer .footer-socials-div {
    max-width: 45%;
    margin: 10px auto 0 auto;
  }
}
#promoModalSport .modal-dialog {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: unset;
}
#promoModalSport .modal-dialog .modal-content {
  width: 33vw;
}
#promoModalSport .modal-dialog .modal-content .modal-body {
  background: #ECEADE;
  padding: 90px;
  position: relative;
}
#promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 35px;
  right: 50px;
}
#promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose img {
  width: 30px;
  aspect-ratio: 1;
}
#promoModalSport .modal-dialog .modal-content .modal-body h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 38px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text {
  padding: 14px 20px;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text span {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  #promoModalSport .modal-dialog .modal-content {
    width: calc(9 * 8.3333vw);
  }
  #promoModalSport .modal-dialog .modal-content .modal-body {
    padding: 60px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose {
    top: 20px;
    right: 35px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose img {
    width: 30px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 50px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text {
    padding: 14px 20px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text span {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  #promoModalSport .modal-dialog .modal-content .modal-body h2 {
    font-size: 20px;
    line-height: 20px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
    transform: unset;
  }
}
.main-slide {
  min-height: 100vh;
}
.main-slide::after {
  min-height: 100vh;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main-slide picture {
  height: 100%;
}
.main-slide picture img {
  height: 100vh;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-slide .text-container {
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
.main-slide .text-container .pretitle,
.main-slide .text-container .title,
.main-slide .text-container .description {
  color: #fff;
}
.main-slide .go-down-button {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  border: 1px solid #fff;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: MoveUpDown 1s linear infinite;
          animation: MoveUpDown 1s linear infinite;
  cursor: pointer;
  z-index: 99;
}

@-webkit-keyframes MoveUpDown {
  0%, 100% {
    bottom: 5%;
  }
  50% {
    bottom: 4%;
  }
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 5%;
  }
  50% {
    bottom: 4%;
  }
}
.main-slide.bwa.homepage-slide {
  background: #2b2b2b;
  flex-direction: column;
  justify-content: space-around;
}
.main-slide.bwa.homepage-slide::after {
  background: unset;
}
.main-slide.bwa.homepage-slide .text-container {
  bottom: 5%;
  left: 24%;
  width: 52%;
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.main-slide.bwa.homepage-slide .text-container .pretitle {
  font-size: 41px;
  font-weight: 400;
}
.main-slide.bwa.homepage-slide .text-container .title {
  font-weight: 700;
  font-size: 44px;
}
.main-slide.bwa.homepage-slide .text-container .cta-container.box {
  margin-top: 10px;
}
.main-slide.bwa.homepage-slide .text-container .cta-container.box .cta-text {
  margin: 0;
  align-items: center;
}
.main-slide.bwa.homepage-slide .content-col {
  height: 60%;
}
.main-slide.bwa.homepage-slide .swiper-slide img {
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-slide.bwa::after {
  background: linear-gradient(180deg, #2b2b2b 0%, transparent 15%);
}
.main-slide.bwa.top-text .text-container {
  top: 8.333333333%;
  left: 8.333333333%;
  width: 25%;
  height: auto;
}
.main-slide.bwa.top-text .text-container .pretitle {
  font-weight: 400;
  font-size: 40px;
}
.main-slide.bwa.top-text .text-container .title {
  font-weight: 700;
  font-size: 100px;
}
.main-slide.bwa.top-text .text-container .description {
  font-weight: 400;
  font-size: 30px;
}
.main-slide.bwa.top-text .text-container .cta-container {
  position: absolute;
  left: 0;
  bottom: -5%;
}
.main-slide.bwa .text-container {
  top: unset;
  bottom: 8.333333333%;
  left: 8.333333333%;
  width: 33.333333332%;
  height: auto;
}
.main-slide.bwa .text-container .pretitle {
  font-weight: 700;
  font-size: 25px;
}
.main-slide.bwa .text-container .title {
  font-style: normal;
  font-weight: 700;
  font-size: 77px;
}
.main-slide.bwa .text-container .description {
  font-weight: 400;
  font-size: 30px;
}
.main-slide.bwa .text-container .cta-container.box {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
}

.main-slide.flyer {
  min-height: 100vh;
}
.main-slide.flyer::after {
  background: linear-gradient(0deg, #023245cf 12%, #02324554 100%);
  min-height: 100vh;
}
.main-slide.flyer.hp .text-container {
  top: 8.333333333%;
  left: calc(8.333333333%);
  width: calc(100% - 8.333333333%);
  height: calc(100% - 8.333333333%);
}
.main-slide.flyer.hp .text-container .title {
  position: absolute;
  top: 0;
  width: 23vw;
  font-weight: 700;
  font-size: 60px;
}
.main-slide.flyer.hp .text-container .description {
  position: absolute;
  right: 5%;
  top: 60%;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  width: 23vw;
}
.main-slide.flyer.hp .text-container .cta-container.box {
  position: absolute;
  left: 70%;
  top: 83%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
}
.main-slide.flyer .text-container {
  top: 8.333333333%;
  left: 8.333333333%;
  width: 25%;
  height: calc(100% - 16.666666666%);
}
.main-slide.flyer .text-container .pretitle {
  font-weight: 400;
  font-size: 40px;
}
.main-slide.flyer .text-container .title {
  font-weight: 700;
  font-size: 100px;
}
.main-slide.flyer .text-container .description {
  font-weight: 400;
  font-size: 30px;
}

.main-slide.premium {
  min-height: 100vh;
}
.main-slide.premium::after {
  background: linear-gradient(0deg, #083435cf 12%, #08343554 100%);
  min-height: 100vh;
}
.main-slide.premium.hp .text-container {
  top: 8.333333333%;
  left: calc(8.333333333%);
  width: calc(100% - 8.333333333%);
  height: calc(100% - 8.333333333%);
}
.main-slide.premium.hp .text-container .title {
  position: absolute;
  top: 0;
  width: 23vw;
  font-weight: 700;
  font-size: 60px;
}
.main-slide.premium.hp .text-container .description {
  position: absolute;
  right: 5%;
  top: 60%;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  width: 23vw;
}
.main-slide.premium.hp .text-container .cta-container.box {
  position: absolute;
  left: 70%;
  top: 83%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
}
.main-slide.premium .text-container {
  top: 8.333333333%;
  left: 8.333333333%;
  width: 25%;
  height: calc(100% - 16.666666666%);
}
.main-slide.premium .text-container .pretitle {
  font-weight: 400;
  font-size: 40px;
}
.main-slide.premium .text-container .title {
  font-weight: 700;
  font-size: 100px;
}
.main-slide.premium .text-container .description {
  font-weight: 400;
  font-size: 30px;
}

.main-slide.granturismo {
  color: #002022;
}
.main-slide.granturismo.top-text .text-container {
  top: 8.333333333%;
  left: 8.333333333%;
  width: 25%;
  height: auto;
}
.main-slide.granturismo.top-text .text-container .pretitle {
  font-weight: 400;
  font-size: 40px;
  color: #002022;
}
.main-slide.granturismo.top-text .text-container .title {
  font-weight: 700;
  font-size: 100px;
  color: #002022;
}
.main-slide.granturismo.top-text .text-container .description {
  font-weight: 400;
  font-size: 30px;
  color: #002022;
}
.main-slide.granturismo.top-text .text-container .cta-container {
  position: absolute;
  left: 0;
  bottom: -5%;
}
.main-slide.granturismo.pretitle-white .text-container .pretitle {
  color: #fff !important;
}
.main-slide.granturismo.pretitle-black .text-container .pretitle {
  color: #002022 !important;
}
.main-slide.granturismo .text-container {
  top: unset;
  bottom: 0%;
  left: 8.333333333%;
  width: 33.333333332%;
  height: auto;
}
.main-slide.granturismo .text-container .cta-container.box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-slide.granturismo .text-container .pretitle {
  font-weight: 700;
  font-size: 25px;
  color: #002022;
}
.main-slide.granturismo .text-container .title {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  color: #002022;
}
.main-slide.granturismo .text-container .description {
  font-weight: 400;
  font-size: 30px;
  color: #002022;
}
.main-slide.granturismo .text-container .cta-container {
  margin-top: 25px;
}

.main-slide.marshall::after {
  background: linear-gradient(60deg, rgba(1, 37, 90, 0.6) 10.49%, rgba(0, 64, 119, 0.2) 60.61%);
}
.main-slide.marshall.top-text .text-container {
  top: 25%;
  left: 8.333333333%;
  width: 33.333333332%;
  height: auto;
}
.main-slide.marshall.top-text .text-container .pretitle {
  font-weight: 400;
  font-size: 40px;
}
.main-slide.marshall.top-text .text-container .title {
  font-weight: 800;
  font-size: 60px;
}
.main-slide.marshall.top-text .text-container .description {
  font-weight: 400;
  font-size: 17px;
}
.main-slide.marshall .text-container {
  top: 45%;
  transform: translateY(-50%);
  left: 8.333333333%;
  width: 23.333333332%;
  height: auto;
  border-left: 1px solid;
  -o-border-image: linear-gradient(90deg, #ed312d 50%, #fff 50%);
     border-image: linear-gradient(90deg, #ed312d 50%, #fff 50%);
}
.main-slide.marshall .text-container .pretitle {
  font-weight: 800;
  font-size: 24px;
  opacity: 0.49;
}
.main-slide.marshall .text-container .title {
  font-weight: 800;
  font-size: 61px;
  width: 100%;
  margin-bottom: 15px;
}
.main-slide.marshall .text-container .description {
  font-weight: 400;
  font-size: 24px;
}

@media only screen and (max-width: 991px) {
  .main-slide.bwa .go-down-button {
    position: relative;
    bottom: 0%;
    margin-top: 80px;
    margin-bottom: 40px;
    left: 50%;
  }
  .main-slide.bwa.homepage-slide {
    background: #2b2b2b;
    flex-direction: column;
    justify-content: space-around;
    min-height: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 100px;
  }
  .main-slide.bwa.homepage-slide .text-container {
    bottom: 4%;
    left: 14%;
    width: 72%;
  }
  .main-slide.bwa.homepage-slide .text-container .pretitle {
    font-size: 27px;
  }
  .main-slide.bwa.homepage-slide .text-container .title {
    font-size: 29px;
  }
  .main-slide.bwa.homepage-slide .content-col {
    height: 60%;
  }
  .main-slide.bwa.homepage-slide .swiper-slide img {
    border-radius: 40px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .main-slide.flyer.hp .text-container .title {
    top: 8.3333%;
    width: 60%;
    font-size: 60px;
  }
  .main-slide.flyer.hp .text-container .description {
    font-size: 25px;
    line-height: 32px;
    width: 60%;
  }
  .main-slide.flyer.hp .text-container .cta-container {
    width: auto;
  }
  .main-slide.flyer.hp .text-container .cta-container.box {
    right: 5%;
    left: unset;
  }
  .main-slide.flyer .text-container .pretitle {
    font-size: 25px;
  }
  .main-slide.flyer .text-container .title {
    font-size: 50px;
  }
  .main-slide.flyer .text-container .description {
    font-size: 15px;
  }

  .main-slide.granturismo .text-container {
    width: 60%;
  }
  .main-slide.granturismo .text-container .pretitle {
    font-size: 20px;
  }
  .main-slide.granturismo .text-container .title {
    font-size: 48px;
  }
  .main-slide.granturismo .text-container .description {
    font-size: 21px;
  }
}
@media only screen and (max-width: 575px) {
  .main-slide.bwa.homepage-slide .go-down-button {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .main-slide.bwa.homepage-slide .text-container {
    top: 70%;
    bottom: unset;
  }
  .main-slide.bwa.homepage-slide .content-col {
    height: 100%;
    padding-bottom: 20dvh;
  }
  .main-slide.bwa.homepage-slide .swiper-slide img {
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .main-slide.flyer.hp .text-container .title,
.main-slide.premium.hp .text-container .title {
    top: 8.3333%;
    width: calc(100% - 16.6666%);
    font-size: 50px;
  }
  .main-slide.flyer.hp .text-container .description,
.main-slide.premium.hp .text-container .description {
    font-size: 18px;
    line-height: 1.25;
    width: calc(100% - 16.6666%);
    top: 70%;
  }
  .main-slide.flyer.hp .text-container .cta-container,
.main-slide.premium.hp .text-container .cta-container {
    width: auto;
  }
  .main-slide.flyer .text-container,
.main-slide.premium .text-container {
    top: 8.333333333%;
    left: 8.333333333%;
    width: 60%;
    height: calc(100% - 16.666666666%);
  }
  .main-slide.flyer .text-container .pretitle,
.main-slide.premium .text-container .pretitle {
    font-size: 20px;
  }
  .main-slide.flyer .text-container .title,
.main-slide.premium .text-container .title {
    font-size: 30px;
  }
  .main-slide.flyer .text-container .description,
.main-slide.premium .text-container .description {
    font-size: 15px;
    line-height: 1.35;
  }

  .main-slide.granturismo .text-container .pretitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .main-slide.granturismo .text-container .title {
    font-size: 30px;
  }
  .main-slide.granturismo .text-container .description {
    font-size: 15px;
    line-height: 1.35;
  }

  .main-slide.marshall.top-text .text-container .description {
    bottom: -33%;
    left: 0;
  }
  .main-slide.marshall .text-container {
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%;
    transform: translateY(0);
  }
  .main-slide.marshall .text-container > .col-12 {
    height: 100%;
  }
  .main-slide.marshall .text-container .pretitle {
    font-size: 10px;
  }
  .main-slide.marshall .text-container .title {
    font-size: 40px;
    width: 70%;
  }
  .main-slide.marshall .text-container .description {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    font-size: 15px;
    line-height: 1.45;
  }
}
.cta-container a {
  text-decoration: none;
}
.cta-container a:hover {
  text-decoration: none;
}
.cta-container .cta-text {
  background: #ed312d;
  color: #fff;
  padding: 15px 60px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.5s;
  border-radius: 100px;
  display: flex;
  text-align: center;
}
.cta-container .cta-text:hover {
  background-color: #ed312d;
  color: #fff;
  transition: 0.5s;
}
.cta-container.bwa.black .cta-text {
  background-color: #000;
}
.cta-container.bwa.black .cta-text:hover {
  background-color: #000;
}
.cta-container.bwa.black.arrow::after {
  border-color: #000;
}
.cta-container.bwa.black.arrow.borderless .cta-text {
  color: #fff;
}
.cta-container.bwa.red .cta-text {
  background-color: #ed312d;
}
.cta-container.bwa.red .cta-text:hover {
  background-color: #d42623;
}
.cta-container.bwa.red.arrow::after {
  border-color: #ed312d;
}
.cta-container.bwa.red.arrow.borderless .cta-text {
  color: #ed312d;
}
.cta-container.bwa.beige .cta-text {
  background-color: #a4907c;
}
.cta-container.bwa.beige .cta-text:hover {
  background-color: #9a8672;
}
.cta-container.bwa.beige.arrow::after {
  border-color: #a4907c;
}
.cta-container.bwa.beige.arrow.borderless .cta-text {
  color: #a4907c;
}
.cta-container.bwa.bronze .cta-text {
  background-color: #cd7f32;
}
.cta-container.bwa.bronze .cta-text:hover {
  background-color: #ac6b2a;
}
.cta-container.bwa.bronze.arrow::after {
  border-color: #cd7f32;
}
.cta-container.bwa.bronze.arrow.borderless .cta-text {
  color: #cd7f32;
}
.cta-container.bwa.yellow .cta-text {
  color: #fff;
  background-color: #1E1E1E;
}
.cta-container.bwa.yellow .cta-text:hover {
  background-color: #1E1E1E;
}
.cta-container.bwa.yellow.arrow::after {
  border-color: #1E1E1E;
}
.cta-container.bwa.yellow.arrow.borderless .cta-text {
  color: #1E1E1E;
}
.cta-container.bwa.sport .cta-text {
  color: #fff;
  background-color: #1E1E1E;
}
.cta-container.bwa.sport .cta-text:hover {
  background-color: #1E1E1E;
}
.cta-container.bwa.sport.arrow::after {
  border-color: #1E1E1E;
}
.cta-container.bwa.sport.arrow.borderless .cta-text {
  color: #1E1E1E;
}
.cta-container.bwa.white .cta-text {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.cta-container.bwa.white .cta-text:hover {
  background-color: #000;
  color: #fff;
}
.cta-container.bwa.arrow.borderless .cta-text {
  align-items: center;
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.bwa.arrow .cta-text::after {
  transition: 0.5s;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  margin-left: 10px;
  height: 10px;
  width: 10px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.bwa.arrow .cta-text:hover::after {
  border-color: #fff;
}
.cta-container.flyer.transparent .cta-text {
  background-color: transparent;
  color: #a4907c;
  border: 1px solid #a4907c;
  position: relative;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  padding: 15px 30px;
}
.cta-container.flyer.transparent .cta-text span {
  width: 100%;
}
.cta-container.flyer.transparent .cta-text:hover {
  background-color: #9a8672;
  color: #fff;
}
.cta-container.flyer.transparent.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.flyer.transparent.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #a4907c;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.flyer.transparent.arrow .cta-text:hover::after {
  border-color: #fff;
}
.cta-container.flyer.beige .cta-text {
  background-color: #a4907c;
  color: #fff;
  border: 1px solid #a4907c;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 20px;
  padding: 15px 30px;
}
.cta-container.flyer.beige .cta-text:hover {
  background-color: #fff;
  color: #9a8672;
}
.cta-container.flyer.beige.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.flyer.beige.arrow .cta-text {
  justify-content: space-between;
}
.cta-container.flyer.beige.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #fff;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.flyer.beige.arrow .cta-text:hover {
  background-color: #fff;
  color: #9a8672;
}
.cta-container.flyer.beige.arrow .cta-text:hover::after {
  border-color: #9a8672;
}
.cta-container.flyer.black .cta-text {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 20px;
  padding: 15px 30px;
}
.cta-container.flyer.black .cta-text:hover {
  background-color: #000;
  color: #fff;
}
.cta-container.flyer.black.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.flyer.black.arrow .cta-text {
  justify-content: space-between;
}
.cta-container.flyer.black.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #fff;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.flyer.black.arrow .cta-text:hover {
  background-color: #000;
  color: #fff;
}
.cta-container.flyer.black.arrow .cta-text:hover::after {
  border-color: #000;
}
.cta-container.premium.transparent .cta-text {
  background-color: transparent;
  color: #cd7f32;
  border: 1px solid #cd7f32;
  position: relative;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  padding: 15px 30px;
}
.cta-container.premium.transparent .cta-text span {
  width: 100%;
}
.cta-container.premium.transparent .cta-text:hover {
  background-color: #ac6b2a;
  color: #fff;
}
.cta-container.premium.transparent.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.premium.transparent.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #cd7f32;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.premium.transparent.arrow .cta-text:hover::after {
  border-color: #fff;
}
.cta-container.premium.bronze .cta-text {
  background-color: #cd7f32;
  color: #fff;
  border: 1px solid #cd7f32;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 20px;
  padding: 15px 30px;
}
.cta-container.premium.bronze .cta-text:hover {
  background-color: #fff;
  color: #ac6b2a;
}
.cta-container.premium.bronze.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.premium.bronze.arrow .cta-text {
  justify-content: space-between;
}
.cta-container.premium.bronze.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #fff;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.premium.bronze.arrow .cta-text:hover {
  background-color: #fff;
  color: #ac6b2a;
}
.cta-container.premium.bronze.arrow .cta-text:hover::after {
  border-color: #ac6b2a;
}
.cta-container.premium.black .cta-text {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 20px;
  padding: 15px 30px;
}
.cta-container.premium.black .cta-text:hover {
  background-color: #000;
  color: #fff;
}
.cta-container.premium.black.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.premium.black.arrow .cta-text {
  justify-content: space-between;
}
.cta-container.premium.black.arrow .cta-text::after {
  transition: 0.5s;
  border-color: #fff;
  border-style: solid;
  border-width: 0 0 3px 3px;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.cta-container.premium.black.arrow .cta-text:hover {
  background-color: #000;
  color: #fff;
}
.cta-container.premium.black.arrow .cta-text:hover::after {
  border-color: #000;
}
.cta-container.granturismo.yellow .cta-text {
  background-color: #1E1E1E;
  color: #fff;
  border: 2px solid #1E1E1E;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.yellow .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.yellow .cta-text:hover {
  background-color: #1E1E1E;
}
.cta-container.granturismo.yellow.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.yellow.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-white.svg");
  height: 30px;
  width: 22px;
}
.cta-container.granturismo.black .cta-text {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 15px 30px;
}
.cta-container.granturismo.black .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.black .cta-text:hover {
  border: 2px solid #000000;
  background-color: #000000;
}
.cta-container.granturismo.black.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.black.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-white.svg");
  height: 30px;
  width: 35px;
  transition: 0.5s;
}
.cta-container.granturismo.grey .cta-text {
  background-color: #e9e7e7;
  color: #000;
  border-radius: 0;
  border: 2px solid #e9e7e7;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.grey .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.grey .cta-text:hover {
  background-color: #cbc8c8;
}
.cta-container.granturismo.grey.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.grey.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-black.svg");
  height: 30px;
  width: 22px;
}
.cta-container.granturismo.sport .cta-text {
  background-color: #1E1E1E;
  color: #fff;
  border: 2px solid #1E1E1E;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.sport .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.sport .cta-text:hover {
  background-color: #1E1E1E;
}
.cta-container.granturismo.sport.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.sport.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-white.svg");
  height: 30px;
  width: 22px;
}
.cta-container.granturismo.transparent-yellow .cta-text {
  background-color: transparent;
  color: #1E1E1E;
  border: 2px solid #1E1E1E;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.transparent-yellow .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.transparent-yellow .cta-text:hover {
  background-color: #1E1E1E;
  color: #000000;
}
.cta-container.granturismo.transparent-yellow.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.transparent-yellow.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right.svg");
  height: 20px;
  width: 22px;
}
.cta-container.granturismo.transparent-yellow.arrow .cta-text:hover::after {
  content: url("/assets/img/svg/arrow-line-right.svg");
}
.cta-container.granturismo.transparent-black .cta-text {
  background-color: transparent;
  color: #1E1E1E;
  border: 2px solid #1E1E1E;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.transparent-black .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.transparent-black .cta-text:hover {
  background-color: #1E1E1E;
  color: #fff;
}
.cta-container.granturismo.transparent-black.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.transparent-black.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-black.svg");
  height: 30px;
  width: 35px;
  transition: 0.5s;
}
.cta-container.granturismo.transparent-black.arrow .cta-text:hover::after {
  content: url("/assets/img/svg/arrow-line-right-white.svg");
  transition: 0.5s;
}
.cta-container.granturismo.transparent-grey .cta-text {
  background-color: transparent;
  color: #e9e7e7;
  border: 2px solid #e9e7e7;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
  padding: 25px 30px;
}
.cta-container.granturismo.transparent-grey .cta-text span {
  width: 50%;
  text-align: left;
}
.cta-container.granturismo.transparent-grey .cta-text:hover {
  background-color: #e9e7e7;
  color: #000000;
}
.cta-container.granturismo.transparent-grey.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.granturismo.transparent-grey.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-grey.svg");
  height: 30px;
  width: 22px;
}
.cta-container.granturismo.transparent-grey.arrow .cta-text:hover::after {
  content: url("/assets/img/svg/arrow-line-right.svg");
}
.cta-container.marshall.red .cta-text {
  background-color: #ed312d;
}
.cta-container.marshall.red .cta-text:hover {
  background-color: #d42623;
}
.cta-container.marshall.red.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.marshall.red.arrow .cta-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 15px;
  padding: 15px 35px;
}
.cta-container.marshall.red.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-right-long-white.svg");
  height: 20px;
  width: 40px;
}
.cta-container.marshall.red.squared .cta-text {
  border-radius: 0;
}
.cta-container.marshall.red.squared.arrow.borderless .cta-text {
  border: 0 !important;
  background-color: transparent !important;
  padding: 15px 10px;
}
.cta-container.marshall.red.squared.arrow .cta-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  gap: 0 50px;
  padding: 15px 35px;
}
.cta-container.marshall.red.squared.arrow .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-white.svg");
  height: 20px;
  width: 22px;
}

@media only screen and (max-width: 1399px) {
  .cta-container .cta-text {
    padding: 9px 40px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1099px) {
  .cta-container .cta-text {
    padding: 9px 30px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-container .cta-text {
    padding: 7px 25px;
    font-size: 13px;
  }

  .quote-row.granturismo .cta-container.granturismo .cta-text {
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-container .cta-text {
    padding: 7px 20px;
  }

  .quote-row.granturismo .cta-container.granturismo .cta-text {
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .cta-container .cta-text {
    padding: 7px 10px;
    min-height: 28px;
    width: 100%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-container.granturismo.yellow .cta-text span {
    width: auto;
  }
  .cta-container.flyer.transparent .cta-text, .cta-container.premium.transparent .cta-text {
    font-size: 15px;
    padding: 10px 20px;
  }
  .cta-container.flyer.bronze .cta-text, .cta-container.flyer.black .cta-text, .cta-container.premium.bronze .cta-text, .cta-container.premium.black .cta-text {
    padding: 10px 20px;
  }
}
.quote-row {
  background-color: white;
}
.quote-row .image-section img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.quote-row.flyer {
  background-color: #023245;
}
.quote-row.flyer .image-section {
  border-radius: 0px 0px 0px 100px;
}
.quote-row.flyer .image-section img {
  border-radius: 0px 0px 0px 100px;
}
.quote-row.flyer .text-section {
  background-color: #fff;
  border-radius: 0 0 100px 0;
}
.quote-row.flyer .text-section .title {
  font-weight: 700;
  font-size: 40px;
  color: #023245;
}
.quote-row.flyer .text-section .description {
  font-weight: 400;
  font-size: 20px;
  color: #023245;
}
.quote-row.premium {
  background-color: #083435;
}
.quote-row.premium .image-section {
  border-radius: 0px 0px 0px 100px;
}
.quote-row.premium .image-section img {
  border-radius: 0px 0px 0px 100px;
}
.quote-row.premium .text-section {
  background-color: #fff;
  border-radius: 0 0 100px 0;
}
.quote-row.premium .text-section .title {
  font-weight: 700;
  font-size: 40px;
  color: #083435;
}
.quote-row.premium .text-section .description {
  font-weight: 400;
  font-size: 20px;
  color: #083435;
}
.quote-row.marshall .image-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 12.5vw;
  height: 100%;
  background: linear-gradient(102deg, transparent 50%, #fff 50%);
}
.quote-row.marshall .text-section {
  background-color: #fff;
}
.quote-row.marshall .text-section .title {
  font-weight: 700;
  font-size: 40px;
  color: #01265b;
}
.quote-row.marshall .text-section .description {
  font-weight: 400;
  font-size: 20px;
  color: #01265b;
}
.quote-row.granturismo .text-section {
  background-color: #fff;
}
.quote-row.granturismo .text-section > .row {
  align-items: flex-end !important;
}
.quote-row.granturismo .text-section .title {
  font-weight: 700;
  font-size: 40px;
  color: #002022;
}
.quote-row.granturismo .text-section .description {
  font-weight: 400;
  font-size: 20px;
  color: #002022;
}
.quote-row.granturismo .text-section .cta-container {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .quote-row.flyer, .quote-row.premium {
    min-height: 400px;
  }
  .quote-row.flyer .text-section .title, .quote-row.premium .text-section .title {
    font-size: 20px;
  }
  .quote-row.flyer .text-section .description, .quote-row.premium .text-section .description {
    font-size: 15px;
  }
  .quote-row.marshall .image-section::after {
    background: linear-gradient(99deg, transparent 50%, #fff 50%);
  }
  .quote-row.marshall .text-section .title {
    font-size: 32px;
  }
  .quote-row.marshall .text-section .description {
    font-size: 15px;
  }
  .quote-row.granturismo .text-section .title {
    font-size: 20px;
  }
  .quote-row.granturismo .text-section .description {
    font-size: 12px;
    line-height: 18px;
  }
  .quote-row.granturismo .text-section .cta-container {
    position: absolute;
  }
}
@media only screen and (max-width: 575px) {
  .quote-row.flyer, .quote-row.premium {
    height: 50vh;
  }
  .quote-row.flyer .image-section, .quote-row.premium .image-section {
    border-radius: 0px 0px 0px 50px;
  }
  .quote-row.flyer .image-section img, .quote-row.premium .image-section img {
    border-radius: 0px 0px 0px 50px;
  }
  .quote-row.flyer .text-section, .quote-row.premium .text-section {
    border-radius: 0 0 50px 0;
  }
  .quote-row.flyer .text-section .title, .quote-row.premium .text-section .title {
    font-size: 15px;
  }
  .quote-row.flyer .text-section .description, .quote-row.premium .text-section .description {
    font-size: 12px;
  }
  .quote-row.flyer .text-section .cta-text, .quote-row.premium .text-section .cta-text {
    font-size: 12px;
  }
  .quote-row.marshall .image-section::after {
    width: 100%;
    background: linear-gradient(105deg, transparent 5%, #fff 5%, #fff 10%, transparent 10%, transparent 85%, #fff 85%, #fff 90%, transparent 90%, transparent 95%, #fff 95%, #fff 100%);
  }
  .quote-row.marshall .text-section .title {
    font-size: 30px;
    margin-bottom: 5%;
  }
  .quote-row.marshall .text-section .description {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 5%;
  }
  .quote-row.granturismo .text-section .title {
    font-size: 30px;
  }
  .quote-row.granturismo .text-section .cta-container {
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
  }
}
.boat-block-container {
  padding: 20px;
  height: 100%;
}
.boat-block-container .title {
  width: 100%;
  border-bottom: 1px solid #0000003b;
  margin-bottom: 25px;
  text-align: start;
}
.boat-block-container .image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.boat-block-container .description {
  width: 100%;
  margin-bottom: 20px;
}
.boat-block-container .cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boat-block-container .cta .cta-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.boat-block-container.flyer .title {
  font-weight: 400;
  font-size: 35px;
  color: #023245;
}
.boat-block-container.flyer .description {
  font-weight: 400;
  font-size: 20px;
  color: #023245;
  min-height: 65px;
}
.boat-block-container.flyer.no-title .description {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  min-height: unset;
}

.boat-block-container.premium .title {
  font-weight: 400;
  font-size: 35px;
  color: #083435;
}
.boat-block-container.premium .description {
  font-weight: 400;
  font-size: 20px;
  color: #083435;
  min-height: 65px;
}
.boat-block-container.premium.no-title .description {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  min-height: unset;
}

.boat-block-container.granturismo .title {
  font-weight: 700;
  font-size: 35px;
  color: #002022;
}
.boat-block-container.granturismo .description {
  font-weight: 400;
  font-size: 20px;
  color: #002022;
  min-height: 100px;
  text-align: left;
}
.boat-block-container.granturismo .cta .cta-container {
  width: 100%;
}

.boat-block-container.marshall .title {
  font-weight: 700;
  font-size: 35px;
  color: #002022;
}
.boat-block-container.marshall .image img {
  margin-bottom: 20px;
}
.boat-block-container.marshall .description {
  font-weight: 400;
  font-size: 20px;
  color: #002022;
  text-align: left;
}
.boat-block-container.marshall .cta .cta-container {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .boat-block-container.flyer .title {
    font-size: 25px;
  }
  .boat-block-container.flyer .description {
    font-size: 15px;
    min-height: 35px;
  }
  .boat-block-container.flyer.no-title .description {
    font-size: 20px;
  }

  .boat-block-container.premium .title {
    font-size: 25px;
  }
  .boat-block-container.premium .description {
    font-size: 15px;
    min-height: 35px;
  }
  .boat-block-container.premium.no-title .description {
    font-size: 20px;
  }

  .boat-block-container.granturismo .title {
    font-size: 25px;
  }
  .boat-block-container.granturismo .description {
    font-size: 15px;
    min-height: 35px;
  }

  .boat-block-container.marshall .title {
    font-size: 25px;
  }
  .boat-block-container.marshall .description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .boat-block-container {
    padding: 15px;
  }

  .boat-block-container.flyer .title {
    font-size: 30px;
  }
  .boat-block-container.flyer .description {
    font-size: 12px;
    min-height: 30px;
  }
  .boat-block-container.flyer .cta .cta-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .boat-block-container.flyer.no-title .description {
    font-size: 25px;
  }

  .boat-block-container.premium .title {
    font-size: 30px;
  }
  .boat-block-container.premium .description {
    font-size: 12px;
    min-height: 30px;
  }
  .boat-block-container.premium .cta .cta-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .boat-block-container.premium.no-title .description {
    font-size: 25px;
  }

  .boat-block-container.granturismo .title {
    font-size: 30px;
  }
  .boat-block-container.granturismo .description {
    font-size: 12px;
    min-height: 30px;
  }
  .boat-block-container.granturismo .cta .cta-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .boat-block-container.marshall .title {
    font-size: 30px;
  }
  .boat-block-container.marshall .description {
    font-size: 15px;
    line-height: 1.4;
  }
  .boat-block-container.marshall .cta .cta-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.groupShortMenu {
  height: calc(100vh - 90px);
  overflow: hidden;
  position: relative;
  top: 0;
  padding-bottom: 25%;
}
.groupShortMenu .header-band {
  background-color: #fff;
  z-index: 2;
  height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.groupShortMenu .header-band .columns {
  display: flex;
  align-items: flex-start;
  padding: 0 2%;
}
.groupShortMenu picture {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #083435;
}
.groupShortMenu picture img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: calc(100vh - 90px);
}
.groupShortMenu picture::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #083435 13.39%, rgba(8, 52, 53, 0) 49.96%);
}
.groupShortMenu .text-image {
  position: absolute;
  left: 15%;
  bottom: 8.3333333%;
  z-index: 1;
}
.groupShortMenu .text-image h3 {
  color: white;
  font-weight: 700;
  font-size: 76px;
}
.groupShortMenu .text-image h2 {
  color: white;
  font-weight: 400;
  font-size: 76px;
}
.groupShortMenu .text-image .cta-text {
  padding-left: 0 !important;
  justify-content: flex-start !important;
}
.groupShortMenu .top-row {
  padding: 0.7vw 15%;
  justify-content: center;
  align-items: center;
}
.groupShortMenu .bottom-row {
  padding: 1.3vw 0;
  border-top: 1px solid #0002;
  margin: 0 15%;
}
.groupShortMenu .name-container .name {
  text-align: start;
  font-size: 50px;
  font-weight: 600;
}
.groupShortMenu .logo-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 1px solid #00000022;
}
.groupShortMenu .logo-container img {
  max-height: 60px;
}
.groupShortMenu .claim-container {
  border-right: 1px solid #00000022;
}
.groupShortMenu .claim-container,
.groupShortMenu .short-desc-container {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
.groupShortMenu .claim-container .pretitle,
.groupShortMenu .short-desc-container .pretitle {
  font-weight: 400;
  font-size: 1.14vw;
  color: #000000;
}
.groupShortMenu .claim-container .title,
.groupShortMenu .short-desc-container .title {
  font-weight: 600;
  font-size: 1.35vw;
}
.groupShortMenu .utility-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.groupShortMenu .utility-container .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.groupShortMenu .utility-container .open-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 40px;
  padding: 10px 15px 10px 20px;
}
.groupShortMenu .utility-container .open-menu img {
  width: 28px;
}
.groupShortMenu .collapse-box {
  width: 100% !important;
  z-index: 1;
  position: relative;
  transition: all 1s ease-in-out;
  height: calc(75vh - 90px) !important;
  transform: translateX(-100%);
  pointer-events: none;
}
.groupShortMenu .collapse-box.show {
  transform: translateX(0%);
  pointer-events: normal;
}
.groupShortMenu .collapse-box.show .collapse-box-content .overlay {
  transform: translateX(0%);
}
.groupShortMenu .collapse-box.show .swiper-group {
  cursor: auto;
  pointer-events: auto;
}
.groupShortMenu .collapse-box .swiper-group {
  cursor: none;
  pointer-events: none;
}
.groupShortMenu .collapse-box-content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  color: #fff;
}
.groupShortMenu .collapse-box-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001f21;
  opacity: 0.95;
  z-index: 1;
  transition: all 1s ease-in-out;
  transform: translateX(-100%);
}
.groupShortMenu .collapse-box-content .group-title.showed,
.groupShortMenu .collapse-box-content .swiper-group.showed {
  opacity: 1;
}
.groupShortMenu .collapse-box-content .group-title {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
  z-index: 2;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.groupShortMenu .collapse-box-content .group-title strong {
  font-weight: 700;
}
.groupShortMenu .collapse-box-content .swiper-group {
  padding: 5% 0;
  border-top: 1px solid #97979740;
  border-bottom: 1px solid #97979740;
  width: 80%;
  overflow: visible;
  z-index: 2;
  min-height: 50%;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.groupShortMenu .collapse-box-content .swiper-group .swiper-wrapper {
  width: 100%;
}
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a {
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a img {
  margin-bottom: 20px;
}
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a .model-name,
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a .model-lenght {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a .model-name b,
.groupShortMenu .collapse-box-content .swiper-group .swiper-slide a .model-lenght b {
  font-weight: 700;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container {
  position: absolute;
  top: 5px;
  right: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  gap: 30px;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.flyer .swiper-button-prev,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.flyer .swiper-button-next {
  background-color: #a4907c;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.flyer .swiper-button-next::after,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.flyer .swiper-button-prev::after {
  color: white;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.premium .swiper-button-prev,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.premium .swiper-button-next {
  background-color: #cd7f32;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.premium .swiper-button-next::after,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.premium .swiper-button-prev::after {
  color: white;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.granturismo .swiper-button-prev,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.granturismo .swiper-button-next {
  background-color: #1E1E1E;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.granturismo .swiper-button-next::after,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.granturismo .swiper-button-prev::after {
  color: black;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.marshall .swiper-button-prev,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.marshall .swiper-button-next {
  background-color: #ed312d;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.marshall .swiper-button-next::after,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container.marshall .swiper-button-prev::after {
  color: white;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container .swiper-button-prev,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container .swiper-button-next {
  width: 53px;
  height: 53px;
  border: 1px solid transparent !important;
  color: #fff;
  border-radius: 30px;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
.groupShortMenu .collapse-box-content .swiper-group .pagination-container .swiper-button-next::after,
.groupShortMenu .collapse-box-content .swiper-group .pagination-container .swiper-button-prev::after {
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.groupShortMenu.flyer {
  border-top: 6px solid #a4907c;
}
.groupShortMenu.flyer picture::after {
  background: linear-gradient(0deg, #023245 0%, rgba(8, 52, 53, 0) 49.96%);
}
.groupShortMenu.flyer .open-menu {
  color: #a4907c;
  border: 1px solid #a4907c;
}
.groupShortMenu.flyer .open-menu::after {
  border-radius: 100%;
  background-color: #a4907c;
  transition: 0.5s;
  border-color: #fff;
  content: url("/assets/img/svg/chevron_up_white.svg");
  display: block;
  height: 28px;
  width: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(90deg);
}
.groupShortMenu.flyer .open-menu.collapsed::after {
  transform: rotate(-90deg);
}
.groupShortMenu.flyer .pagination-button {
  background-color: #a4907c;
}
.groupShortMenu.flyer .collapse-box-content .overlay {
  background-color: #001f21;
  opacity: 0.95;
}
.groupShortMenu.premium {
  border-top: 6px solid #cd7f32;
}
.groupShortMenu.premium picture::after {
  background: linear-gradient(0deg, #083435 0%, rgba(8, 52, 53, 0) 49.96%);
}
.groupShortMenu.premium .open-menu {
  color: #cd7f32;
  border: 1px solid #cd7f32;
}
.groupShortMenu.premium .open-menu::after {
  border-radius: 100%;
  background-color: #cd7f32;
  transition: 0.5s;
  border-color: #fff;
  content: url("/assets/img/svg/chevron_up_white.svg");
  display: block;
  height: 28px;
  width: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(90deg);
}
.groupShortMenu.premium .open-menu.collapsed::after {
  transform: rotate(-90deg);
}
.groupShortMenu.premium .pagination-button {
  background-color: #cd7f32;
}
.groupShortMenu.premium .collapse-box-content .overlay {
  background-color: #001f21;
  opacity: 0.95;
}
.groupShortMenu.granturismo {
  border-top: 6px solid #1E1E1E;
}
.groupShortMenu.granturismo picture::after {
  background: linear-gradient(0deg, #eceade 0%, rgba(6, 43, 96, 0) 44.15%);
}
.groupShortMenu.granturismo .open-menu {
  color: #002022;
  border: 1px solid #1E1E1E;
}
.groupShortMenu.granturismo .open-menu::after {
  border-radius: 100%;
  background-color: #1E1E1E;
  transition: 0.5s;
  border-color: #fff;
  content: url("/assets/img/svg/chevron_up_white.svg");
  display: block;
  height: 28px;
  width: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(90deg);
}
.groupShortMenu.granturismo .open-menu.collapsed::after {
  transform: rotate(-90deg);
}
.groupShortMenu.granturismo .collapse-box-content .overlay {
  background-color: #008c97;
  opacity: 0.95;
}
.groupShortMenu.granturismo .pagination-button {
  background-color: #1E1E1E;
}
.groupShortMenu.marshall {
  border-top: 6px solid #ed312d;
}
.groupShortMenu.marshall picture::after {
  background: linear-gradient(0deg, #004077 0%, rgba(6, 43, 96, 0) 46.06%);
}
.groupShortMenu.marshall .open-menu {
  color: #ed312d;
  border: 1px solid #ed312d;
}
.groupShortMenu.marshall .open-menu::after {
  border-radius: 100%;
  background-color: #ed312d;
  transition: 0.5s;
  border-color: #fff;
  content: url("/assets/img/svg/chevron_up_white.svg");
  display: block;
  height: 28px;
  width: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(90deg);
}
.groupShortMenu.marshall .open-menu.collapsed::after {
  transform: rotate(-90deg);
}
.groupShortMenu.marshall .collapse-box-content .overlay {
  background-color: #ed312d;
  opacity: 0.95;
}
.groupShortMenu.marshall .pagination-button {
  background-color: #ed312d;
}

@media only screen and (max-width: 991px) {
  .groupShortMenu {
    height: calc(110vh - 90px);
  }
  .groupShortMenu .claim-container,
.groupShortMenu .short-desc-container {
    padding: 0 1.51vw;
  }
  .groupShortMenu .claim-container .pretitle,
.groupShortMenu .short-desc-container .pretitle {
    font-size: 2.01vw;
  }
  .groupShortMenu .claim-container .title,
.groupShortMenu .short-desc-container .title {
    font-size: 2.42vw;
  }
  .groupShortMenu picture img {
    height: calc(110vh - 90px);
  }

  .groupShortMenu .header-band {
    height: 35vh;
  }

  .groupShortMenu .logo-container {
    margin-bottom: 35px;
    border-right: 0;
  }

  .groupShortMenu .top-row {
    padding: 15px 8.33333%;
  }

  .groupShortMenu .bottom-row {
    padding: 25px 0;
    margin: 0 8.333%;
  }

  .groupShortMenu .text-image {
    left: 8.3333%;
  }
  .groupShortMenu .text-image h3 {
    font-size: 50px;
  }
  .groupShortMenu .text-image h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .groupShortMenu .header-band {
    height: 35vh;
  }
}
@media only screen and (max-width: 575px) {
  .groupShortMenu .claim-container,
.groupShortMenu .short-desc-container {
    padding: 0 15px;
  }
  .groupShortMenu .claim-container .pretitle,
.groupShortMenu .short-desc-container .pretitle {
    font-size: 22px;
  }
  .groupShortMenu .claim-container .title,
.groupShortMenu .short-desc-container .title {
    font-size: 26px;
  }

  .groupShortMenu {
    position: relative;
    margin-bottom: 0;
    height: 125vh;
    overflow: hidden;
  }
  .groupShortMenu .header-band {
    justify-content: space-around;
    min-height: 65vh;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .groupShortMenu .header-band .columns {
    align-items: flex-start;
    padding: 5% 2%;
    border: 0;
    border-bottom: 1px solid #0002;
    margin-bottom: 0;
  }
  .groupShortMenu picture {
    position: relative;
    height: 60vh;
  }
  .groupShortMenu picture img {
    height: 60vh;
    aspect-ratio: 1/1;
  }
  .groupShortMenu picture::after {
    position: relative;
    display: block;
    transform: translateY(-100%);
  }
  .groupShortMenu .groupShortMenu {
    position: relative;
    padding-bottom: 5%;
  }
  .groupShortMenu .top-row {
    justify-content: center;
    flex-direction: row;
  }
  .groupShortMenu .logo-container {
    margin-bottom: 0;
    border-bottom: 0;
  }
  .groupShortMenu .bottom-row {
    border-top: 0;
    padding: 10px 0;
    margin: 0;
  }
  .groupShortMenu .bottom-row .utility-container .cta-box {
    width: 100% !important;
    flex-wrap: wrap;
  }
  .groupShortMenu .bottom-row .utility-container .cta-box .cta-container {
    width: calc(50% - 5px) !important;
  }
  .groupShortMenu .bottom-row .utility-container .cta-box .cta-container.full {
    width: 100%;
  }
  .groupShortMenu .utility-container {
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  .groupShortMenu .collapse-box {
    height: 60vh !important;
    transform: translateY(-173vh);
  }
  .groupShortMenu .collapse-box .swiper-group {
    width: 70% !important;
  }
  .groupShortMenu .collapse-box.show {
    transform: translateY(-173vh);
  }
  .groupShortMenu .collapse-box-content {
    justify-content: center;
  }
  .groupShortMenu .collapse-box-content .group-title {
    font-size: 20px;
    white-space: normal;
  }
  .groupShortMenu .collapse-box-content .swiper-group {
    height: 60%;
  }
  .groupShortMenu .collapse-box-content .swiper-group .swiper-slide {
    height: auto;
  }
}
.full-page {
  min-height: 100vh;
  background-image: url("https://images.pexels.com/photos/1322086/pexels-photo-1322086.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-size: cover;
  background-repeat: no-repeat;
}

.home-container-article {
  width: 480px !important;
  margin-bottom: 25px;
}
.home-container-article.bwa-container .article-box-overlay.large-desktop .title {
  font-size: 16px;
}
.home-container-article.bwa-container .article-box-overlay.large-desktop .article-info {
  width: 80%;
  bottom: 5%;
}

.pop-up-boat {
  width: 340px;
  font-size: 15px;
  color: #ffffff;
}
.pop-up-boat button {
  color: #ed312d;
  opacity: 1;
  display: inline-block;
  font-size: 20px;
}
.pop-up-boat button img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.pop-up-boat .pop-up-line {
  background-color: #474747;
  width: 100%;
  height: 1px;
}

@media only screen and (max-width: 1599px) {
  .cta-pop-up .cta-text {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .hp-article-home-swiper {
    padding-left: 8.3333%;
  }

  .home-container-article {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .home-container-article {
    width: 100% !important;
  }

  .hp-article-home-swiper {
    padding-left: 15px;
  }

  .pop-up-boat {
    font-size: 15px;
    width: calc(100% - 30px) !important;
    max-width: unset !important;
  }
}
.half-main-slide-wwu.bwa {
  background-color: #2b2b2b;
}
.half-main-slide-wwu.bwa h1 {
  color: #fff;
}
.half-main-slide-wwu.bwa p {
  color: #fff;
}

#positions-container a:hover {
  text-decoration: none;
}
#positions-container .position-time {
  font-weight: 400;
  font-size: 20px;
}
#positions-container .position-opening-time {
  font-weight: 400;
  font-size: 15px;
}
#positions-container .position-description-link {
  font-weight: 700;
  font-size: 21px;
  color: #ed312d;
  margin-top: 70px;
}

.form-label-group textarea:not(:-moz-placeholder-shown) {
  border-color: #fff !important;
}

.form-label-group textarea:not(:-ms-input-placeholder) {
  border-color: #fff !important;
}

.form-label-group textarea:focus,
.form-label-group textarea:not(:placeholder-shown),
.form-label-group textarea.not-empty {
  border-color: #fff !important;
}

.position-list-wwu.bwa .position-desc a {
  color: #ed312d !important;
  font-weight: 700;
  font-style: none !important;
}

.form-wwu.bwa {
  background-color: #353535;
  color: #fff;
}
.form-wwu.bwa .form-label-group input {
  border-color: #fff !important;
}
.form-wwu.bwa #upload_file {
  width: 590px;
  border-radius: 100px;
  border: 0.5px solid #fff;
  background-color: #2b2b2b;
}
.form-wwu.bwa #upload_file .btn-upload-file {
  width: 100%;
}
.form-wwu.bwa #upload_file .btn-upload-file .txt {
  background-color: #ed312d;
  border-right: unset;
  width: 10%;
  color: #fff;
}
.form-wwu.bwa #upload_file .btn-upload-file #cv-placeholder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}
.form-wwu.bwa #upload_file .btn-upload-file #cv-placeholder .span {
  margin-left: unset;
}
.form-wwu.bwa .checkmark.checkmark-invert-colors {
  background-color: transparent;
}
.form-wwu.bwa .component-btn-white {
  background-color: #ed312d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25.5px;
  border: 0;
  outline: unset;
  color: #fff;
  padding: 1% 5%;
  padding-right: unset;
}

@media only screen and (max-width: 1440px) {
  .half-main-slide-wwu.bwa .row {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .half-main-slide-wwu.bwa .row {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .half-main-slide-wwu.bwa .row {
    margin-top: 45px;
  }

  #positions-container h2 {
    font-size: 25px !important;
  }
  #positions-container .position-time {
    font-size: 15px;
  }
  #positions-container .position-opening-time {
    font-size: 13px;
  }
  #positions-container .position-description-link {
    font-size: 18px;
    margin-top: 50px;
  }

  #form-container {
    padding-left: calc(8.3333vw + 15px);
    padding-right: calc(8.3333vw + 15px);
  }

  #work-with-us-submit {
    margin-top: 40px;
  }
  #work-with-us-submit button {
    height: 35px !important;
  }

  .checkmark {
    width: 14px !important;
    height: 14px !important;
    top: 7px !important;
  }
}
@media only screen and (max-width: 575px) {
  .half-main-slide-wwu.bwa {
    padding-top: 40px;
  }

  #positions-container {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  #positions-container .position-info-col {
    margin-bottom: 15px;
  }
  #positions-container h2 {
    font-size: 20px !important;
  }
  #positions-container .position-time {
    font-size: 13px;
  }
  #positions-container .position-opening-time {
    font-size: 10px;
  }
  #positions-container .position-description-link {
    font-size: 13px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 376px) {
  .half-main-slide-wwu.bwa .row {
    margin-top: 15px;
  }

  #positions-container {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  #positions-container .position-info-col {
    margin-bottom: 15px;
  }
  #positions-container h2 {
    font-size: 20px !important;
  }
  #positions-container .position-time {
    font-size: 13px;
  }
  #positions-container .position-opening-time {
    font-size: 10px;
  }
  #positions-container .position-description-link {
    font-size: 13px;
    margin-top: 20px;
  }

  #form-container {
    padding-left: calc(8.3333vw + 15px);
    padding-right: calc(8.3333vw + 15px);
  }

  #work-with-us-submit {
    margin-top: 40px;
  }
  #work-with-us-submit button {
    height: 35px !important;
  }

  .checkmark {
    width: 14px !important;
    height: 14px !important;
    top: 7px !important;
  }

  .half-main-slide-wwu.bwa {
    margin-top: 76px;
  }
}
.bwa-contact-bg {
  background-color: #2b2b2b;
}

.breadcrumbs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.breadcrumbs-container > div {
  color: #fff;
}
.breadcrumbs-container .breadcrumbcustomarticle-current {
  color: #ed312d !important;
}

.btn-back {
  border: 1px solid #fff;
  border-radius: 15px;
  background: transparent;
  height: 30px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  left: 0;
  top: -15px;
  margin-left: calc(8.333333vw + 15px);
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-right: 15px;
}

.btn-text {
  font-family: "Metropolis";
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.arrow-left {
  position: relative;
  margin: 0;
  left: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid red;
  border-left: 2px solid red;
}

.arrow-left {
  transform: rotate(-45deg);
}

#formContactUs input,
#formContactUs .form-control,
#formContactUs .checkmark,
.contact-dark-mode input,
.contact-dark-mode .form-control,
.contact-dark-mode .checkmark {
  background-color: #2b2b2b;
  color: #ed312d;
  border-color: unset;
}
#formContactUs .custom-checkbox-container,
.contact-dark-mode .custom-checkbox-container {
  color: #fff;
  font-size: 13px;
}
#formContactUs .custom-checkbox-container .checkmark::after,
.contact-dark-mode .custom-checkbox-container .checkmark::after {
  border-color: unset;
}
#formContactUs .form-label-group label,
.contact-dark-mode .form-label-group label {
  color: #ffffff;
  font-size: 13px !important;
}
#formContactUs #grey-band,
.contact-dark-mode #grey-band {
  background-color: unset;
}

#formContactUs .checkmark {
  background-color: #ffffff;
  border: unset;
}

#formContactUs input,
#formContactUs .form-control {
  border-color: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  color: #ffffff;
}

#divContactUs select {
  height: calc(1.5em + 0.75rem + 9px) !important;
  color: #ffffff;
  font-size: 13px !important;
}

#contactTitle {
  font-weight: 700;
  font-size: 39px;
  color: #fff;
}

#contactDescription {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.contact-submit {
  width: 442px;
  height: 44px;
  background-color: #ed312d !important;
  border-radius: 22px !important;
  border: 0 !important;
  outline: unset !important;
  padding-left: 25px !important;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.contact-submit:hover {
  background-color: #fff !important;
  color: #000;
}

.btn-container {
  justify-content: end;
}

.select2-selection.select2-selection--single {
  height: 36px !important;
}

.select2-container--default .select2-selection--single {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21) !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13 !important;
}

.select2-dropdown {
  border: none !important;
  background: transparent !important;
}

.select2-search--dropdown {
  padding: 0 !important;
}

.select2-results {
  border: none !important;
  background-color: #525252 !important;
  border-radius: 0px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none !important;
  display: none;
}

.select2-results__options {
  padding: 10px 25px !important;
  font-weight: 400;
  color: #ffffff;
  font-size: 13px !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: transparent !important;
  color: #ffffff !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent !important;
  color: #ffffff !important;
  font-size: 13px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
  font-weight: bold;
  color: #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transition: 0.5s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

.rotateArrow {
  transform: rotate(180deg) !important;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .btn-container {
    justify-content: start;
  }
}
@media only screen and (max-width: 767px) {
  .btn-container {
    justify-content: start;
  }

  .btn-back {
    top: -5px;
  }
}
@media only screen and (max-width: 376px) {
  .form-group-el label,
.form-group-el select {
    font-size: 13px;
  }

  .form-label-group {
    font-size: 13px;
  }

  .custom-checkbox-container .checkmark {
    width: 14px;
    height: 14px;
  }

  .contact-submit {
    height: 35px;
  }

  .btn-back {
    margin-left: 15px;
  }
}
.search-result-container-bwa {
  margin-top: 120px;
}
.search-result-container-bwa .breadcrumbs-container {
  margin-bottom: 50px;
}
.search-result-container-bwa .breadcrumbs-container > div {
  color: #000 !important;
}
.search-result-container-bwa .breadcrumbs-container .breadcrumbcustomarticle-current {
  color: #ed312d !important;
}
.search-result-container-bwa .breadcrumbcustomarticle a {
  color: #000 !important;
}
.search-result-container-bwa .btn-back {
  border-color: #000 !important;
  background: #fff;
  width: 79px;
  height: 30px;
  color: #000;
}
.search-result-container-bwa .btn-text {
  color: #000;
}
.search-result-container-bwa h1 {
  font-weight: 700;
  font-size: 39px;
  color: #4A4A4A;
}

@media only screen and (max-width: 767px) {
  .search-result h2 {
    max-width: calc(100% - 8.3333vw * 3);
    font-size: 18px !important;
  }
}
@media only screen and (max-width: 376px) {
  .search-result-container-bwa h1 {
    font-size: 20px !important;
    font-weight: 700;
  }
  .search-result-container-bwa .search-result h2 {
    font-size: 15px !important;
    max-width: calc(100% - 8.3333vw * 4);
  }
  .search-result-container-bwa .search-result .read-search-result {
    font-size: 13px !important;
  }
}
.red-block-article {
  background: #d8d8d885;
}
.red-block-article .block-container {
  padding: 11%;
  position: sticky;
  top: 67px;
  aspect-ratio: 9/15.189;
  background-color: #ed312d;
}
.red-block-article .block-container .date {
  font-weight: 700;
  font-size: 28px;
}
.red-block-article .block-container .author-title {
  padding-top: 45px;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
}
.red-block-article .block-container .author-title b {
  font-weight: 600;
}
.red-block-article .block-container .author-description {
  padding-top: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}
.red-block-article .block-container .breadcrumbs-container {
  justify-content: flex-start;
  align-items: end;
  gap: 5px;
  height: 100%;
  color: #2b2b2b;
}

.main-picture-container {
  overflow: hidden;
  max-height: 75vh;
}
.main-picture-container picture::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(0deg, #2b2b2b 7.46%, rgba(51, 51, 51, 0.0001) 57.42%);
}
.main-picture-container picture img {
  -o-object-position: top;
     object-position: top;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-section-title {
  position: absolute;
  bottom: 8.5%;
  left: 16.6%;
  width: calc(100% - (8.3333 * 2)) !important;
  z-index: 2;
  font-weight: 700;
  font-size: 48px !important;
  line-height: 48px !important;
  color: #fff !important;
  width: calc(100% - calc(16.6% * 2));
}

.article-abstract {
  font-weight: 700;
  font-size: 43px;
  line-height: 43px;
  color: #000;
  padding-left: 30px;
  border-left: 10px solid #ed312d;
  text-align: left;
}

.content-row {
  margin-top: 50px;
}

.article-content {
  font-size: 20px;
  line-height: 1.55;
  margin-top: 40px;
  text-align: left;
}
.article-content h2 {
  font-size: 26px;
  font-weight: 700;
}
.article-content h3 {
  font-size: 22px;
  font-weight: 700;
}
.article-content p {
  line-height: 1.55;
  margin-bottom: 20px;
}
.article-content ul {
  text-align: left;
  width: 50%;
  list-style-position: outside;
}
.article-content ul li {
  list-style: outside;
}

.tag-container {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.article-tag-cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.article-button-next img,
.article-button-prev img {
  width: auto;
  height: 15px;
  margin: 0 10px;
}

.articlesCol.bwa-container .article-box-overlay .article-info {
  padding: 25px;
}
.articlesCol.bwa-container .article-box-overlay .article-info .article-date {
  font-weight: 700;
  font-size: 14px;
}
.articlesCol.bwa-container .article-box-overlay .article-info .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.icons-list {
  position: sticky;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #2c2c2c;
  border-radius: 23.5px;
  z-index: 10;
  transition: transform 0.35s ease-in-out;
}
.icons-list .icon-el {
  width: 42px;
  height: 42px;
  display: block;
  margin-top: 1px;
  transition: all 0.25s ease-in-out;
}
.icons-list .icon-el img {
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icons-list.hidden {
  transform: translateY(-50%) translateX(100%);
  pointer-events: none;
}

@media only screen and (max-width: 991px) {
  .red-block-article .block-container {
    padding: 8.333%;
    position: relative;
    top: unset;
    aspect-ratio: unset;
    background-color: #ed312d;
  }
  .red-block-article .block-container .date {
    font-size: 28px;
  }
  .red-block-article .block-container .author-title {
    font-size: 15px;
    line-height: 15px;
  }
  .red-block-article .block-container .author-description {
    font-size: 15px;
    line-height: 21px;
  }
  .red-block-article .block-container .breadcrumbs-container {
    padding-top: 80px;
  }

  .icons-list {
    top: 0;
    position: relative;
    left: unset;
    transform: unset;
  }

  .article-content {
    padding-right: unset !important;
    padding-left: unset !important;
  }

  .top-section-title {
    font-size: 30px !important;
    left: 8.3333%;
    width: calc(100% - calc(8.3333% * 2));
    line-height: 33px !important;
  }

  .article-abstract {
    font-size: 25px;
    line-height: 32px;
  }

  .content-row {
    margin-top: 2.333%;
  }

  .article-content {
    font-size: 18px;
    margin-top: unset;
  }
  .article-content h2 {
    font-size: 24px;
  }
  .article-content h3 {
    font-size: 20px;
  }

  .articlesCol.bwa-container .article-box-overlay .article-info .article-date {
    font-size: 14px;
  }
  .articlesCol.bwa-container .article-box-overlay .article-info .title {
    font-size: 18px;
    line-height: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .articlesCol.bwa-container .article-box-overlay .article-info {
    padding: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .red-block-article .block-container {
    padding: 8.333% 15px;
  }
  .red-block-article .block-container .date {
    font-size: 28px;
  }
  .red-block-article .block-container .author-title {
    font-size: 15px;
    line-height: 15px;
  }
  .red-block-article .block-container .author-description {
    font-size: 15px;
    line-height: 21px;
  }
  .red-block-article .block-container .breadcrumbs-container {
    padding-top: 80px;
  }

  .top-section-title {
    font-size: 16px !important;
    line-height: 17px !important;
    width: calc(100% - calc(15px * 2));
    max-width: 100%;
    left: 15px;
  }

  .article-abstract {
    font-size: 16px;
    line-height: 25px;
  }

  .content-row {
    margin-top: 2.333%;
  }

  .article-content {
    font-size: 15px;
    margin-top: unset;
  }
  .article-content h2 {
    font-size: 21px;
  }
  .article-content h3 {
    font-size: 17px;
  }

  .title-related {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 375px) {
  .articlesCol.bwa-container .article-box-overlay .article-info .article-date {
    font-size: 12px;
  }
  .articlesCol.bwa-container .article-box-overlay .article-info .title {
    font-size: 15px;
  }
}
.form-result-page {
  color: #fff;
}
.form-result-page.flyer {
  background-color: #023245;
}
.form-result-page.premium {
  background-color: #083435;
}
.form-result-page.sport {
  background-color: #ECEADE;
}
.form-result-page.marshall {
  background-color: #01265b;
}

.cta-container.form-result.flyer, .cta-container.form-result.premium {
  width: 242px !important;
  height: 48px !important;
}
.cta-container.form-result.flyer .cta-text, .cta-container.form-result.premium .cta-text {
  font-weight: 900 !important;
  font-size: 16px !important;
}
.cta-container.form-result.granturismo, .cta-container.form-result.marshall {
  position: fixed !important;
  bottom: 0 !important;
  right: calc(0px + 8.3333vw) !important;
  width: 613px;
}

.general-container {
  height: 100vh;
}
.general-container .ty-title {
  font-weight: 700;
  font-size: 52px !important;
}
.general-container .ty-desc {
  font-weight: 400;
  font-size: 19px;
}

@media only screen and (max-width: 376px) {
  .general-container .ty-title {
    font-size: 32px !important;
  }

  .cta-container.form-result.granturismo, .cta-container.form-result.marshall {
    width: calc(100% - 8.33333vw * 2) !important;
  }
}
.submitted {
  filter: blur(5px);
  pointer-events: none;
}

.file-download-catalog {
  width: 442px;
  height: 44px;
  background-color: #ed312d !important;
  border-radius: 22px !important;
  border: 0 !important;
  outline: unset !important;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}
.file-download-catalog:hover {
  background-color: #fff !important;
  color: #000;
  text-decoration: none;
}

@media only screen and (max-width: 376px) {
  .file-download-catalog {
    height: 35px;
  }
}
.color-grey {
  color: #979797;
}

.text-truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: pre-wrap;
}

.accordion-boat-img {
  aspect-ratio: 16/9;
  width: 100%;
}

.font-size-list {
  font-size: 15px !important;
  line-height: 18.15px;
}

.font-size-title {
  font-size: 18px !important;
}

.font-size-equipment {
  font-size: 15px !important;
  line-height: 18.15px;
}

#accordionBoat h2 {
  font-size: 20px !important;
}
#accordionBoat h6 {
  font-size: 10.88px;
}
#accordionBoat .card-body {
  margin-left: 1rem;
}

.accordion-hr {
  background-color: #979797;
  height: 1px;
  opacity: 0.3;
  width: 100%;
}

.accordion-hr-small {
  width: 242px;
}

.accordion-hr-black {
  background-color: #000000;
  opacity: 0.8;
}

.equipment-box {
  min-height: 30px;
}

.equipment-vertical-border {
  border-right: 1px solid rgba(0, 0, 0, 0.8);
  padding-right: 5px !important;
}

@media only screen and (max-width: 376px) {
  #positions-container.positions-container-without-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.filters-box .select2-container--default .select2-selection--single .select2-selection__clear {
  display: inline !important;
  color: #ed312d;
  margin-top: 1.8px;
  margin-right: 30px;
}

.accordion-boat-arrow .btn-link {
  text-decoration: none;
}
.accordion-boat-arrow .btn-link:focus {
  box-shadow: none;
}
.accordion-boat-arrow button[aria-expanded=true] .arrow-bottom {
  transform: rotate(-135deg) translate(-50%, -50%);
}
.accordion-boat-arrow .arrow-bottom {
  position: relative;
  margin-left: 1.5rem;
  margin-top: 5rem;
  width: 10px;
  height: 10px;
  border-bottom: 2.5px solid #ed312d;
  border-right: 2.5px solid #ed312d;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.filters-box {
  margin-top: -1px !important;
}
.filters-box > div {
  display: block !important;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination .arrow-prev {
  margin-right: 1.5rem;
  width: 10px;
  height: 10px;
  border-bottom: 4px solid #ed312d;
  border-right: 4px solid #ed312d;
  transform: rotate(135deg);
}
.pagination .arrow-next {
  margin-left: 1.5rem;
  width: 10px;
  height: 10px;
  border-bottom: 4px solid #ed312d;
  border-right: 4px solid #ed312d;
  transform: rotate(315deg);
}

.pagination a,
.pagination span {
  display: inline-block;
  color: #4a4a4a;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}

.pagination a:hover {
  background-color: none;
}

.pagination .disabled {
  color: #999;
  pointer-events: none;
  display: none !important;
}

.no-boats-results {
  color: #ed312d;
  font-style: italic;
  font-size: 18px;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 576px) {
  .accordion-boat-img {
    max-width: 172px;
  }

  .accordion-hr-small {
    width: 249.67px;
  }

  .accordion-boat-arrow .arrow-bottom {
    width: 12px;
    height: 12px;
  }

  #accordionBoat .card-body {
    margin-left: 0.5rem;
  }
}
@media (min-width: 991px) {
  .accordion-boat-img {
    max-width: 407px;
  }

  .font-size-list {
    font-size: 18px !important;
    line-height: 21.78px;
  }

  .font-size-title {
    font-size: 25px !important;
  }

  .font-size-equipment {
    font-size: 16px !important;
    line-height: 19.36px;
  }

  #accordionBoat h2 {
    font-size: 35px !important;
  }
  #accordionBoat h6 {
    font-size: 21px;
  }
  #accordionBoat .card-body {
    margin-left: 0;
  }

  .accordion-hr-small {
    width: 482px;
  }

  .accordion-boat-arrow .arrow-bottom {
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #ed312d;
    border-right: 5px solid #ed312d;
  }

  .pagination a,
.pagination span {
    font-size: 26px;
  }

  .pagination .arrow-prev,
.pagination .arrow-next {
    width: 15px;
    height: 15px;
  }

  .no-boats-results {
    font-size: 25px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .equipment-box {
    min-height: 40px;
  }
}
/* Swiper fix */
/* .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
} */
/* Specific CSS */
body {
  font-family: Metropolis, sans-serif;
}

main {
  padding: 0 0 0 0;
}

.font-family-secondary {
  font-family: Lato, sans-serif;
}

.privacy-terms-link {
  color: #ed312d;
  -webkit-text-decoration-color: #ed312d;
          text-decoration-color: #ed312d;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar-link-category {
  text-decoration: none;
  color: inherit;
}
.navbar-link-category:hover {
  text-decoration: none;
  color: inherit;
}

.overflow-hidden {
  overflow: hidden;
}

.specs-related-col {
  margin-top: 60px;
}

.bg-picture-with-box {
  position: absolute;
}

.active-boat-collection {
  font-weight: 700;
}

.boat-collection-menu-options {
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  height: 75px;
}

.boat-collection-menu-swiper-btn {
  width: 33px;
  height: 33px;
}

.boat-collection-menu-close {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.hide {
  transform: translateY(calc(-100% - 1px));
}

/* .hamburger--collapse .hamburger-inner {

} */
@-webkit-keyframes one-pulse {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes one-pulse {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.decoration-none {
  text-decoration: none;
}
.decoration-none:hover {
  text-decoration: none;
}

.text-transform-unset {
  text-transform: unset !important;
}

.black {
  color: #000;
}

.border-black {
  border: 1px solid #000;
}

.cursor-pointer, .boat-collection-menu-swiper-btn {
  cursor: pointer;
}

#small-modal {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.91);
  color: #fff;
  line-height: 1.15;
  padding: 25px 35px;
  max-width: 300px;
  border: 1px solid #fff;
  /* border-radius: 5px; */
  z-index: 1031;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
#small-modal.show {
  opacity: 1;
  pointer-events: all;
}

.swiper-container-thumbs {
  width: 100%;
}
.swiper-container-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
}
.swiper-container-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 53px;
  height: 53px;
  border: 1px solid #979797;
  color: #fff;
  border-radius: 30px;
  display: block;
}

.swiper-button {
  cursor: pointer;
}

.block-absolute-top-left {
  position: absolute;
  top: 4.166666vw;
  left: 0;
  z-index: 10;
}
.block-absolute-top-left h1 {
  font-size: 48px;
  font-weight: 700;
  max-width: 30vw;
}
.block-absolute-top-left p {
  font-size: 20px;
  max-width: 45vw;
}

.boat-collection-menu {
  /*.swiper-slide{
      height: 100%;
  }*/
}
.boat-collection-menu .swiper-slide {
  width: 400px !important;
}
.boat-collection-menu .swiper-slide p {
  font-size: 20px;
}
.boat-collection-menu .swiper-slide-active img {
  /*transform: scale(1.4);*/
  z-index: 100;
}
.boat-collection-menu .hide {
  overflow: hidden;
}

.bg-white {
  background-color: #fff;
  color: #000;
}

.bg-black {
  background-color: #000;
  color: #fff;
}

.bg-grey-05 {
  background-color: #f0f0f0;
}

.white-band h1 {
  font-size: 48px;
  font-weight: 700;
}
.white-band p {
  font-size: 20px;
  line-height: 27px;
}

p.breadcrumbs {
  font-size: 16px;
  opacity: 0.75;
}

.component-btn {
  font-size: 12px;
  font-weight: 700;
  /* min-width: 250px; */
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  cursor: pointer;
  outline: 2px solid #fff;
  border: 0;
  text-transform: uppercase;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 2px;
  transition: all 0.35s ease-in-out;
}
.component-btn > img {
  vertical-align: baseline;
  margin-right: 5px;
  transition: filter 0.35s ease-in-out;
}
.component-btn.component-btn-black {
  background-color: #000;
  outline: 2px solid #000;
  color: #fff;
}
.component-btn.component-btn-black:hover {
  /* background-color: #fff; */
  background-color: transparent;
  /* outline: 2px solid #fff; */
  color: #000;
}
.component-btn.component-btn-white {
  background-color: #fff;
  outline: 2px solid #fff;
  color: #000;
}
.component-btn.component-btn-white:hover {
  background-color: #000;
  /* outline: 2px solid #000; */
  color: #fff;
}
.component-btn.component-btn-white:hover > img {
  filter: invert(1);
}
.component-btn.component-btn-transparent {
  background-color: transparent;
  outline: 2px solid #000;
  color: #000;
}
.component-btn.component-btn-transparent:hover {
  background-color: #000;
  color: #fff;
}
.component-btn.component-btn-transparent-white {
  background-color: transparent;
  outline: 2px solid #fff;
  color: #fff;
}
.component-btn.component-btn-transparent-white:hover {
  background-color: #fff;
  color: #000;
}
.component-btn > img {
  vertical-align: baseline;
  margin-right: 5px;
}

#menu.hide {
  overflow: hidden;
}

.link-floating-arrow {
  text-decoration: none;
}
.link-floating-arrow .floating-arrow {
  transition: transform 0.3s ease-in-out;
}
.link-floating-arrow:hover {
  text-decoration: none;
}
.link-floating-arrow:hover .floating-arrow {
  transform: translateX(5px);
}

.block-absolute-top-left a {
  text-decoration: none;
  cursor: pointer;
}
.block-absolute-top-left .component-btn {
  position: relative;
  display: inline-block;
  /* &::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      transform: scaleX(0);
      transform-origin: left center;
      transition: all .5s ease-in-out;
  }

  .btn-text {
      mix-blend-mode: difference;
  }
  &:hover {
      &::before {
          transform: scaleX(1);
      }
  }

  &.component-btn-black {
      background-color: #000;
      color: #fff;

      &::before {
          background: #fff;
      }
      .btn-text {
          color: #fff;
      }
      &:hover {
          &::before {
              background: #fff;
          }
      }
  }
  &.component-btn-transparent {
      background-color: #fff;
      color: #000;

      &::before {
          background: #000;
      }
      .btn-text {
          color: #fff;
      }
      &:hover {
          &::before {
              background: #000;
          }
      }
  } */
}

.square-box:hover > .square-box-content {
  height: 100%;
}
.square-box:hover > .square-box-content .square-box-content-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.square-box:hover > .square-box-content-bg {
  width: calc(100% + 1px);
  height: 100%;
  opacity: 1;
}
.square-box .square-box-content-bg {
  background-color: #fff;
  opacity: 0.9;
  width: 75%;
  height: 45%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.square-box .square-box-content {
  width: 75%;
  height: 45%;
  transition: all 0.3s ease-in-out;
  bottom: 0;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.square-box .square-box-content a {
  color: #000;
  text-decoration: none;
}
.square-box .square-box-content-inner {
  transition: all 0.3s ease-in-out;
  /*transform: translate(0,0);*/
  padding: 30px;
  position: absolute;
  top: 0;
}
.square-box .square-box-date {
  color: #9b9b9b;
}

.product-card {
  position: relative;
  display: block;
}
.product-card .text-container {
  position: absolute;
  top: 55px;
  left: 50px;
  width: calc(100% - 70px);
}
.product-card .text-container h3 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
}
.product-card .text-container p {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}
.product-card .btn-container {
  position: absolute;
  bottom: 55px;
  left: 50px;
  width: calc(100% - 70px);
}
.product-card .btn-container a {
  text-decoration: none;
}
.product-card .btn-container button {
  display: inline-block;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.section-sub-title {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}

.section-description {
  font-size: 20px;
  line-height: 27px;
  margin-top: 40px;
}

.section-dark {
  background-color: #000;
  color: #fff;
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .section-sub-title {
  color: #fff;
}
.section-dark p {
  color: #fff;
}

.col-alternated-section {
  padding-top: 90px;
  padding-left: 110px;
  padding-right: 110px;
  position: relative;
}
.col-alternated-section .component-btn {
  position: absolute;
  bottom: 100px;
  left: 110px;
}
.col-alternated-section .section-title {
  margin-bottom: 0;
}
.col-alternated-section .section-sub-title {
  margin-bottom: 20px;
}
.col-alternated-section p {
  margin-bottom: 0;
  line-height: 1.5;
}

.card-container {
  background-color: #fff;
  position: relative;
  top: -76px;
  padding-top: 33px;
  padding-bottom: 10px;
  transition: all 0.35s ease-in-out;
}
.card-container.out {
  opacity: 0;
  transform: translateY(20px);
}

.card-category {
  margin-bottom: 13px;
  font-size: 12px;
  color: #9b9b9b;
}

.card-title {
  font-size: 26px;
  margin-bottom: 31px;
  line-height: 1;
  font-weight: 500;
}
.card-title a {
  color: #000;
  text-decoration: none;
}

.card-date {
  color: #9b9b9b;
}

.search-result {
  transition: all 0.35s ease-in-out;
}
.search-result h2 {
  display: inline-block;
  font-size: 28px;
}
.search-result p {
  max-width: calc(100% - 150px);
  float: left;
}
.search-result .read-search-result {
  float: right;
}
.search-result.to-load {
  opacity: 0;
  transform: translateY(20px);
}

.overlay-video {
  display: none;
  opacity: 0;
  transition: opacity 600ms ease-in;
  transition: opacity 0.6s;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.89);
  z-index: 999999;
}

.o1 {
  opacity: 1;
  transition: opacity 600ms ease-out;
  transition: opacity 0.6s;
}

.videoWrapperExt {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 982px;
  padding: 0 20px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-video {
  position: absolute;
  top: -50px;
  right: 0px;
  cursor: pointer;
  z-index: 9999;
  height: 40px;
  width: 40px;
  background-size: 40px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .close-video {
    display: none;
  }
}

.start {
  position: absolute;
  bottom: 60px;
  left: 60px;
  background-color: #fff;
  z-index: 1;
  width: 160px;
  height: 45px;
  cursor: pointer;
}
.start .play-icon {
  position: absolute;
  top: calc(50% - 5px);
  left: 16px;
}
.start .play-video-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  font-weight: 700;
}

.article-section {
  background-color: #fafafa;
}

.overImgBlock {
  background-color: rgba(0, 0, 0, 0.76);
  color: #fff;
}

.specs-img-section-mobile-vertical {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-430px) rotate(-90deg);
  width: 870px;
  transform-origin: right center;
  text-align: center;
  border-bottom: 2px dashed #fff;
  padding-bottom: 5px;
}

.specs-img-section-mobile-horizontal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 580px;
  transform: translateY(75px) translateX(110px);
  text-align: center;
  border-top: 2px dashed #fff;
  padding-top: 5px;
}
.specs-img-section-mobile-horizontal span {
  padding-left: 65px;
}

.product-alert-container {
  position: relative;
}
.product-alert-container .product-alert {
  position: absolute;
  top: -30px;
  right: 100px;
  display: flex;
  text-align: left;
  flex-direction: column;
  width: 300px;
  padding: 15px 20px;
  background-color: rgba(185, 0, 0, 0.8);
  transform-origin: bottom center;
  transition: all 0.35s ease-in-out;
}
.product-alert-container .product-alert span {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}
.product-alert-container .product-alert p {
  line-height: 1.4;
  margin-bottom: 0;
}
.product-alert-container .product-alert .close-alert {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.product-alert-container .product-alert .product-alert-triangle {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 40px;
  bottom: -50px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid rgba(185, 0, 0, 0.8);
}
.product-alert-container .product-alert.hide {
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
}

.contacts-divider {
  width: 1px;
  height: 50%;
  background-color: #979797;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mb-div-contacts {
  padding-bottom: 70px;
}

.div-contacts {
  /* margin-top: 70px;
  margin-bottom: 70px; */
  border-bottom: 2px solid #fff;
}
.div-contacts .div-contacts-content {
  font-size: 16px;
  line-height: 27px;
}
.div-contacts .div-contacts-title {
  font-size: 40px;
  font-weight: 500;
}
.div-contacts .contacts-left {
  padding-right: 50px;
}
.div-contacts .contacts-right {
  padding-left: 50px;
}

.div-contacts h2 {
  font-size: 40px;
}
.div-contacts p {
  line-height: 27px;
}

.details-block {
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.blog-news-card-mobile {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(100vw - 30px);
  margin-top: -30vw;
  margin-bottom: 25vw;
  margin-left: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 1;
}

.square-box-category {
  font-size: 12px;
  font-weight: 700;
}

.square-box-date {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.square-box-title {
  font-size: 25px;
  line-height: 1.2;
}

.square-box-cta {
  font-size: 12px;
}

.blog-filters-title {
  font-size: 20px;
  margin-top: 45px;
  margin-bottom: 30px;
}

.blog-filter-text {
  opacity: 0.44;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.blog-filter-text a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.blog-filter-text.active-category {
  opacity: 1;
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}
.blog-filter-text.active-category a {
  color: #ed312d !important;
}

.blog-filter-text:hover {
  opacity: 1;
}

.divider-line-blog-filters {
  height: 1px;
  background-color: #979797;
}

.divider-line-margin-top {
  margin-top: 25px;
}

.divider-line-margin-bottom {
  margin-bottom: 25px;
}

.divider-line-margin-bottom-end-section {
  margin-bottom: 80px;
}

.border-top-filters-mobile {
  border-top: 1px solid #979797;
  z-index: 2;
}

.bg-char-green {
  background-color: #2b2b2b;
}

.select-arrow {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  height: 1px;
  width: 1px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-6px);
  transition: transform 0.3s ease-in-out;
}
.select-arrow.white {
  border-bottom: 10px solid #fff;
}
.select-arrow.yellow {
  border-bottom: 10px solid #cd7f32;
}
.select-arrow.green {
  border-bottom: 10px solid #083435;
}

.collapsed .select-arrow {
  transform: rotate(180deg) translateY(6px);
}

.filters-list-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.filters-list-el:hover {
  background-color: #252525;
  text-decoration: none;
}

.filters-list-el a {
  color: #fff;
  text-decoration: none;
}

.blog-top-section-container {
  position: absolute;
  z-index: 1;
}

.blog-top-section-text-container {
  position: absolute;
  top: 95px;
  left: 84px;
}

.breadcrumbcustom {
  display: inline-block;
}
.breadcrumbcustom a {
  color: #000;
  font-weight: 300;
  text-decoration: none;
}

.breadcrumbcustom-divider {
  display: inline-block;
  color: #000;
}

.breadcrumbcustom-current {
  display: inline-block;
}
.breadcrumbcustom-current a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.top-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  max-width: 80%;
  margin-bottom: 20px;
}

.top-section-description {
  font-size: 20px;
  font-weight: normal;
}

.contacts-left .component-btn,
.contacts-right .component-btn {
  position: absolute;
  bottom: 0;
  left: 15px;
}

/* Collection Page */
.absolute-info-box {
  width: calc(41.666666vw - 30px);
  background-color: #fff;
  margin-left: 8.333333vw;
  margin-top: 25vw;
  min-height: 33.333333vw;
  padding: 80px 50px;
}
.absolute-info-box h2 {
  font-size: 37px;
  font-weight: 700;
}
.absolute-info-box p {
  font-size: 17px;
  line-height: 1.65;
  color: #4a4a4a;
}

/* Product (Boat) Page */
.overlaying-stats-section {
  background-color: #000;
  padding: 25px 80px;
  color: #fff;
  transform: translateY(-50%);
}
.overlaying-stats-section .stat-title {
  font-size: 18px;
  text-transform: uppercase;
}
.overlaying-stats-section .stat-value {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 700;
}
.overlaying-stats-section .right-label {
  font-size: 15px;
  text-align: right;
  position: absolute;
  /* left: 80px; */
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.overlaying-stats-section .right-label::after {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  height: 3px;
  width: 60px;
  background: #fff;
}

.section-title-pt {
  padding-top: 150px;
}

.section-description-pb {
  padding-bottom: 90px;
}

.title {
  font-size: 45px;
  font-weight: 500;
}

select {
  -webkit-appearance: none;
}

#divContactUs #contactTitle,
#divContactUs #dealerTitle {
  font-size: 45px;
  font-weight: 700;
}
#divContactUs select {
  font-size: 18px;
  height: 30px;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  border-radius: 0;
  padding: 0;
  -webkit-appearance: none;
}
#divContactUs select:focus {
  box-shadow: none;
}
#divContactUs .chevronSelectForm {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
#divContactUs input[type=button] {
  background-color: #000;
  color: #fff;
  border-radius: 0;
  padding: 20px 40px 20px 40px;
  border: none;
  text-transform: uppercase;
}
#divContactUs #accordion {
  background-color: transparent;
}
#divContactUs #accordion .card {
  background-color: transparent;
}
#divContactUs #accordion .card-body {
  padding-top: 0;
}
#divContactUs #accordion .card-body .dealer-info {
  border-bottom: 1px solid #fff;
}
#divContactUs #accordion .card-body .dealer-info .dealer-name {
  padding: 15px 0;
  width: 60%;
}
#divContactUs #accordion .card-body .dealer-info .dealer-name p {
  padding-left: 5px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 0;
}
#divContactUs #accordion .card-body .dealer-info .dealer-city {
  padding: 15px 0;
  width: 40%;
}
#divContactUs #accordion .card-body .dealer-info .dealer-city p {
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}
#divContactUs #accordion .card-body .dealer-info:hover {
  color: #ad9961;
}
#divContactUs #accordion .card-header {
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  position: relative;
  padding-left: 0;
}
#divContactUs #accordion .card-header .btn {
  background-color: transparent;
  font-size: 20px;
  color: #fff;
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding-left: 0;
}
#divContactUs #accordion .card-header .btn:disabled {
  opacity: 1 !important;
}
#divContactUs #accordion .card-header .btn.disabled {
  opacity: 1 !important;
}
#divContactUs #accordion .card-header .btn:focus {
  box-shadow: none;
}
#divContactUs #accordion .card-header .btn img {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.2s;
}
#divContactUs #accordion .card-header .btn.collapsed img {
  transform: unset;
}
#divContactUs .selected {
  font-weight: 700;
  color: #ad9961;
}

.zoom-img-on-hover {
  overflow: hidden;
}

.zoom-img-on-hover .img-to-zoom,
.zoom-img-on-hover .img-to-zoom-sm {
  transform: scale(1);
  transition: transform 0.35s ease-in-out;
}

.zoom-img-on-hover:hover .img-to-zoom {
  transform: scale(1.075);
}

.specs {
  padding-top: 120px;
  padding-bottom: 200px;
}
.specs p {
  margin-bottom: 0;
}
.specs .max {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.toggleContentBtn {
  width: 300px;
  padding: 20px;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  margin-top: 123px;
  margin-bottom: 60px;
}
.toggleContentBtn p {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
  mix-blend-mode: difference;
  z-index: 5;
}
.toggleContentBtn .toggleContentBtnSelector {
  width: 150px;
  height: calc(100% - 4px);
  border-radius: 30px;
  background-color: black;
  margin: 2px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.15s ease-in;
}
.toggleContentBtn .toggleContentBtnSelector.toggleContentBtnSelectorActive {
  transform: translateX(146px);
}

.product-card-subcollection {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  font-size: 30px;
  font-weight: 500;
  color: gray;
}

.box-to-filter {
  transform-origin: bottom center;
  transition: all 0.2s ease-in-out;
}

.tag-nasc {
  transition: all 0s;
  transform: scale(0.85);
  opacity: 0;
}

.select-sub {
  background-color: black;
  max-width: 45%;
  height: 54px;
  width: 649px;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  margin-top: 50px;
  margin-bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.select-sub .sub-collection {
  text-align: center;
  background-color: transparent;
  color: #fff;
  width: 324.5px;
  height: calc(100% - 4px);
  font-weight: 500;
  line-height: 48px;
  border-radius: 30px;
  margin: 2px;
  position: relative;
  transition: all 0.15s ease-in;
  mix-blend-mode: difference;
  /* &.sub-collection-active {
      color: #000;
      p {
          color: #000;
      }
  } */
}
.select-sub .sub-collection p {
  z-index: 100;
  color: #fff;
}
.select-sub .white-board-sub {
  border-radius: 30px;
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #fff;
  height: 50px;
  width: 158.25px;
  transition: all 0.2s ease-in-out;
}

.boat-specs-container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: #000;
  transition: all 0.35s ease-in-out;
  transform: translateY(-101%);
  overflow-y: scroll;
  overflow-x: hidden;
}
.boat-specs-container .related-boat-title {
  color: #fff;
}
.boat-specs-container .related-boat-abstract {
  color: #fff;
}

.boat-specs-container.open {
  transform: translateY(0%);
}

.boat-product-pre-tit {
  font-size: 15px;
}

.boat-product-title {
  font-weight: 700;
  font-size: 70px;
}

.product-content-description-top {
  font-size: 20px;
  line-height: 1.77;
  color: #000;
  margin-top: 25px;
  margin-bottom: 70px;
}

.relatedSwiper {
  max-height: calc(100vh - 95px);
  overflow: hidden;
}

@media only screen and (max-width: 1280px) {
  .related-content {
    max-width: 630px !important;
  }

  .select-sub .white-board-sub {
    width: 136.63px;
  }

  .block-absolute-top-left p {
    font-size: 16px;
  }
  .block-absolute-top-left h1 {
    font-size: 33px;
  }
}
#swiperEquipments .specs-content-text {
  /* padding-left: 8.333333%;
  padding-right: 8.333333%; */
  width: 100% !important;
  line-height: 1.9;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.quote-title {
  font-size: 37px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.quote-description {
  font-size: 17px;
  line-height: 1.65;
  color: #4a4a4a;
}
.quote-description .specs-content-text {
  line-height: 33px;
}
.quote-description .font-weight-500 {
  font-weight: 500 !important;
}

#swiperEquipments .swiper-button {
  transition: all 0.5s;
}
#swiperEquipments .swiper-button.swiper-button-disabled {
  opacity: 0.5;
}

.underlay-product {
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0px;
  left: 0px;
}

.download {
  position: absolute;
  top: 80px;
  width: auto;
}
.download p {
  position: absolute;
  top: 13px;
  left: 80px;
}
.download h2 {
  position: absolute;
  top: 34px;
  left: 80px;
  white-space: pre;
}

.swiper-article-pagination {
  text-align: right;
  margin-top: 20px;
}
.swiper-article-pagination .swiper-pagination-bullet {
  background-color: #000;
  opacity: 1;
  transition: all 0.35s ease-in-out;
  margin: 3px;
}
.swiper-article-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  margin-bottom: 1px;
}

.dida {
  transition: opacity 0.35s ease-in-out;
  min-height: 50px;
}

@media only screen and (max-width: 375px) {
  .download h2 {
    font-size: 15px;
  }
}
.dealers-map {
  position: absolute;
  right: 0px;
  top: 0;
  pointer-events: none;
}

.ty-title {
  margin-top: 100px;
  font-size: 35px;
}

.ty-desc {
  margin-top: 30px;
  font-size: 20px;
}

/* Wizard */
.form-group-el {
  margin-bottom: 35px;
}

.form-label-group label {
  position: absolute;
  height: 30px;
  top: 0;
  left: 15px;
  font-size: 18px;
  line-height: 30px;
  transform: translateY(0);
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form-label-group input,
.form-label-group select,
.form-label-group textarea {
  min-height: 30px;
  font-size: 18px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.form-label-group input:not(:-moz-placeholder-shown), .form-label-group select:not(:-moz-placeholder-shown), .form-label-group textarea:not(:-moz-placeholder-shown) {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
.form-label-group input:not(:-ms-input-placeholder), .form-label-group select:not(:-ms-input-placeholder), .form-label-group textarea:not(:-ms-input-placeholder) {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
.form-label-group input:focus, .form-label-group input:not(:placeholder-shown), .form-label-group input.not-empty,
.form-label-group select:focus,
.form-label-group select:not(:placeholder-shown),
.form-label-group select.not-empty,
.form-label-group textarea:focus,
.form-label-group textarea:not(:placeholder-shown),
.form-label-group textarea.not-empty {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
.form-label-group input:not(:-moz-placeholder-shown) + label, .form-label-group select:not(:-moz-placeholder-shown) + label, .form-label-group textarea:not(:-moz-placeholder-shown) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
.form-label-group input:not(:-ms-input-placeholder) + label, .form-label-group select:not(:-ms-input-placeholder) + label, .form-label-group textarea:not(:-ms-input-placeholder) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
.form-label-group input:focus + label, .form-label-group input:not(:placeholder-shown) + label, .form-label-group input.not-empty + label,
.form-label-group select:focus + label,
.form-label-group select:not(:placeholder-shown) + label,
.form-label-group select.not-empty + label,
.form-label-group textarea:focus + label,
.form-label-group textarea:not(:placeholder-shown) + label,
.form-label-group textarea.not-empty + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
.form-label-group textarea {
  height: 30px;
  max-height: 195px;
  overflow: hidden;
}

#slider {
  height: 26px;
  border: 0;
  transform: translateY(13px);
  z-index: 1;
  background: transparent;
}
#slider::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #000;
}
#slider .ui-slider-handle {
  margin-left: 0px;
  height: 50px;
  width: 4px;
  background-color: #000;
  top: -27px;
  border: 0;
  border-radius: 0;
  cursor: -webkit-grab;
  cursor: grab;
  outline: 0;
  transform: translateY(15px);
  /* &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 20px;
      height: 100%;
      width: 2px;
      background-color: #000;
  } */
}

#slider-black-bar {
  position: absolute;
  left: 0;
  top: -14px;
  height: 24px;
  background-color: #000;
  transform: translateY(15px);
}

.form-half-col-offset {
  margin-left: 4.166666vw;
}

#left-arrow-up {
  position: absolute;
  left: 15px;
  bottom: -105px;
  z-index: 1;
  pointer-events: none;
}
#left-arrow-up > img {
  margin-left: 50%;
  transform: translateX(-50%);
}

#right-arrow-up {
  position: absolute;
  right: 15px;
  bottom: -105px;
  z-index: 1;
  pointer-events: none;
}
#right-arrow-up > img {
  margin-left: 50%;
  transform: translateX(-50%);
}

.dida-ball {
  height: 74px;
  width: 74px;
  background-color: #fff;
  border-radius: 50%;
}
.dida-ball .dida-ball-number {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #4a4a4a;
}
.dida-ball .dida-ball-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  color: #4a4a4a;
}

.grey-band-spacing {
  padding-top: 115px;
}

#grey-band .component-btn {
  padding-right: 130px;
  font-size: 22px;
}

#side-steps-container {
  position: absolute;
  right: 4.155556vw;
  height: 100%;
  width: 50px;
}
#side-steps-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  width: 2px;
  height: 100%;
  background-color: #000;
  z-index: -1;
}
#side-steps-container .box {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  border: 2px solid #000;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#side-steps-container .box.box-step-one {
  top: 80px;
}
#side-steps-container .box.box-step-two {
  top: 150px;
}
#side-steps-container .box.current {
  color: #fff;
  background-color: #000;
}

.form-control.field-error {
  border-bottom-color: red !important;
}

.checkbox-error .checkmark {
  border-color: red !important;
}

@-webkit-keyframes vertical-shake {
  10%, 90% {
    transform: translate3d(0, -1px, 0);
  }
  20%, 80% {
    transform: translate3d(0, 2px, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(0, -4px, 0);
  }
  40%, 60% {
    transform: translate3d(0, 4px, 0);
  }
}

@keyframes vertical-shake {
  10%, 90% {
    transform: translate3d(0, -1px, 0);
  }
  20%, 80% {
    transform: translate3d(0, 2px, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(0, -4px, 0);
  }
  40%, 60% {
    transform: translate3d(0, 4px, 0);
  }
}
.down-harpoon {
  width: 100%;
  text-align: center;
  font-size: 50px;
  color: rgba(74, 74, 74, 0.75);
  height: 0;
  margin-bottom: 0;
}
.down-harpoon.translateYup {
  transform: translateY(calc(-4.166666vw - 45px));
}
.down-harpoon img:hover {
  -webkit-animation: vertical-shake 0.92s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: vertical-shake 0.92s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
}

/* Customize the label (the container) */
.custom-checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  padding-top: 5px;
  margin-bottom: 12px;
  font-style: italic;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
  /* height: 0;
  width: 0; */
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
.checkmark.checkmark-invert-colors {
  background-color: #000;
  border: 1px solid #fff;
}

/* On mouse-over, add a grey background color */
/* .custom-checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255,255,255,.35);
} */
/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}
.custom-checkbox-container input:checked ~ .checkmark.checkmark-invert-colors {
  background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .checkmark:after {
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.custom-checkbox-container .checkmark.checkmark-invert-colors:after {
  border: solid #fff;
  border-width: 0 3px 3px 0;
}

#swiper-hpArticleList .swiper-slide {
  width: 93.13vw;
}

#swiper-articlePageArticleList .swiper-slide {
  width: 93.13vw;
}

.boat3dModel {
  background-color: #000;
}

.img3dModel {
  max-width: 100%;
  width: 75vw;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.rotating-el-pre-title {
  font-size: 19px;
  color: #fff;
  margin-top: 120px;
}

.rotating-el-title {
  font-size: 60px;
  color: #fff;
}

.rotating-el-name {
  font-size: 230px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 35px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

#dragDiv {
  margin-top: -195px;
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
  cursor: url("/assets/img/svg/drag.svg") 27.5 27.5, auto;
  transition: all 0.65s ease-in-out;
}
#dragDiv.out {
  opacity: 0;
  transform: translateX(-60%);
}
#dragDiv.out .drag-suggestion {
  opacity: 0;
}
#dragDiv .drag-suggestion {
  position: absolute;
  bottom: 50px;
  right: 16.25vw;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

#dragDiv:hover .drag-suggestion {
  opacity: 0;
}

.centered-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rotating-el-learn-more {
  max-width: 100%;
  width: 300px;
  margin: 0 auto;
  height: 65px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  z-index: 3;
  margin-bottom: 140px;
  margin-top: 50px;
  transition: all 0.35s ease-in-out;
  border: 2px solid #fff;
}
.rotating-el-learn-more a {
  color: #000;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rotating-el-learn-more:hover {
  background-color: #000;
  color: #fff;
}
.rotating-el-learn-more:hover a {
  color: #fff;
}

.filter-invert {
  filter: invert(1);
}

.scroll-spy {
  position: fixed;
  z-index: 10;
  top: calc(50% - 150px);
  height: 300px;
  width: 1px;
  transform: translateX(-40px);
  background-color: #fff;
  mix-blend-mode: exclusion;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.scroll-spy .scroll-indicator {
  background-color: #fff;
  mix-blend-mode: inherit;
  width: 3px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#swiper-galleryVideos .swiper-slide {
  width: 93.13vw;
}

.white-band-title {
  font-size: 48px;
  font-weight: 700;
}

.play-icon {
  border-left: 10px solid #000;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.play-video-btn {
  position: absolute;
  bottom: 60px;
  left: 60px;
  background-color: #fff;
  z-index: 1;
  width: 160px;
  height: 45px;
  cursor: pointer;
}
.play-video-btn .play-icon {
  position: absolute;
  top: calc(50% - 5px);
  left: 16px;
}
.play-video-btn .play-video-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  font-weight: 700;
}

.sticky-block-left {
  width: calc(8.33333vw * 5);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 5px;
  background-color: #fff;
  position: sticky;
  top: 90px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.sticky-block-left .sticky-block-left-title h2 {
  font-size: 37px;
  font-weight: 700;
}
.sticky-block-left .sticky-block-left-description {
  font-size: 17px;
  line-height: 1.65;
}
.sticky-block-left .sticky-block-left-learn-more {
  margin-top: 50px;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 14px;
}

.sticky-block-left-page {
  width: calc(8.33333vw * 5);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 5px;
  background-color: #fff;
  position: absolute;
  top: 90px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.sticky-block-left-page .sticky-block-left-page-title {
  font-size: 37px;
  font-weight: 700;
}
.sticky-block-left-page .sticky-block-left-page-description {
  font-size: 17px;
  line-height: 1.65;
}
.sticky-block-left-page .sticky-block-left-page-learn-more {
  margin-top: 50px;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 12px;
}

.sticky-block-right {
  width: calc(8.33333vw * 5);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 5px;
  background-color: #fff;
  position: absolute;
  top: 90px;
  left: 41%;
  margin-top: 80px;
  margin-bottom: 80px;
}
.sticky-block-right .sticky-block-right-title {
  font-size: 37px;
  font-weight: 700;
}
.sticky-block-right .sticky-block-right-description {
  font-size: 17px;
  line-height: 1.65;
}
.sticky-block-right .sticky-block-right-learn-more {
  margin-top: 50px;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 12px;
}

.section-sticky {
  position: sticky;
  top: 0;
  min-height: 56.2vw;
}

.img-sticky-block {
  padding-bottom: 0px;
}

.min-height-70vw {
  min-height: 69vw;
}

.article-top-section-container {
  position: static;
  margin-top: 70px;
}

.article-top-section-description {
  font-size: 15px;
  font-weight: normal;
}

.breadcrumbcustomarticle {
  display: inline-block;
}
.breadcrumbcustomarticle a {
  color: #2b2b2b;
  font-weight: 300;
  text-decoration: none;
}

.breadcrumbcustomarticle-current {
  display: inline-block;
}
.breadcrumbcustomarticle-current a {
  color: #2b2b2b;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbcustomarticle-divider {
  display: inline-block;
  color: #2b2b2b;
  margin-top: 60px;
}
.breadcrumbcustomarticle-divider .br {
  margin-top: 90px;
}

.article-top-block {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background-color: #000;
  z-index: 0;
  left: 0;
}

.article-tagbutton {
  /* background-color: #000;
     text-align: center;
     width: 250px;
     height: 61px;
     font-size: 24px;
     border: none;
     display: inline-block;
     margin-left: 5px;
     margin-right: 5px;
     margin-bottom: 10px;
  a{
  	color:white;
  	text-decoration: none;
  } */
  min-width: 150px;
}

.article-line {
  height: 2px;
  color: black;
  opacity: 0.34;
}

.article-button-next {
  width: 110px;
  height: 66px;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  color: gray;
  font-size: 26px;
  float: right;
  padding-top: 20px;
  padding-bottom: 20px;
}
.article-button-next a {
  text-decoration: none;
  color: #000;
}

.article-button-prev {
  width: 110px;
  height: 66px;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  color: gray;
  font-size: 26px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.article-button-prev a {
  text-decoration: none;
  color: #000;
}
.article-button-prev img {
  transform: translateY(-2px);
}

.article-related {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

body {
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

/* Work with us */
#positions-container {
  margin-left: calc(8.333vw + 15px);
}
#positions-container p {
  font-size: 15px;
  font-weight: 500;
}
#positions-container p.fullpart {
  font-size: 20px;
}
#positions-container hr {
  border-top: 1px solid #979797;
}
#positions-container h2 {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 400;
}
#positions-container .position-desc {
  color: #9b9b9b;
  font-size: 21px;
  margin-bottom: 35px;
}
#positions-container .position-desc a {
  color: #000;
  font-weight: 700;
}

.bwaLoadMore {
  background-color: #ed312d;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  width: 290px;
  height: 67px;
  border-radius: 103px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bwaLoadMore .arrow {
  display: none;
  position: absolute;
  top: 47%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
  width: 25px;
  height: 25px;
  border-left: 8px solid #2b2b2b;
  border-bottom: 8px solid #2b2b2b;
  transition: all 0.3s ease-out;
}

.oponhover a {
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}

.oponhover a:hover {
  opacity: 0.65;
  text-decoration: none;
}

.work-with-us-form-title {
  font-size: 50px;
  line-height: 1.18;
  margin-top: 120px;
}

.work-with-us-form-subtitle {
  font-size: 14px;
  line-height: 1.79;
  margin-bottom: 80px;
}

.bg-black .form-label-group input,
.bg-black .form-label-group textarea {
  border-bottom-color: #fff !important;
}

#upload_file {
  position: absolute;
  top: 0;
  left: 15px;
  height: 50px;
  width: 440px;
  max-width: calc(100% - 80px);
  background-color: #000;
  /* pointer-events: none; */
  border: 2px solid #fff;
  overflow: hidden;
  white-space: nowrap;
}
#upload_file .btn-upload-file {
  height: 100%;
  display: table;
}
#upload_file .txt {
  border-right: 2px solid #fff;
  padding: 0 36px;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

#cv-placeholder span {
  line-height: 44px;
  font-size: 18px;
  color: #fff;
  margin-left: 30px;
}

#work-with-us-submit button {
  padding-right: 130px;
}

.link-dark a {
  color: #000;
  transition: all 0.35s ease-in-out;
  opacity: 1;
}
.link-dark a:hover {
  color: #000;
  opacity: 0.75;
  text-decoration: none;
  transform: translateX(10px);
}

.product-related-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 40px;
}

.product-content {
  font-size: 20px;
  float: auto;
  text-align: center;
  margin-bottom: 30px;
}
.product-content b {
  font-size: 70px;
}

.product-contentsmall {
  font-size: 30px;
  float: auto;
  text-align: center;
}

.related-picture-container .rel-block-absolute-top-left {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.related-picture-container .rel-block-absolute-top-left h1 {
  font-size: 48px;
  font-weight: 900;
  max-width: 30vw;
}
.related-picture-container .rel-block-absolute-top-left h2 {
  font-size: 38px;
  font-weight: 500;
  max-width: 30vw;
}
.related-picture-container .rel-block-absolute-top-left p {
  font-size: 20px;
  max-width: 45vw;
}
.related-picture-container.open .more-related {
  transform: translateY(0);
}
.related-picture-container.open .relatedinfo {
  transform: translateY(360px);
}
.related-picture-container.open .swipe-related {
  transform: translateY(105px);
  margin-bottom: 105px;
}

.navigation-related {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 8.3333333vw;
  z-index: 1;
}
.navigation-related img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease-in-out;
  /* &:hover {

  } */
}

.swiper-button-prev-related {
  left: 10px;
}

.swiper-button-next-related {
  right: 10px;
}

.swiper-button-prev-related:focus-visible {
  outline: none;
}
.swiper-button-prev-related:focus-visible img {
  outline: none;
}

.swiper-button-next-related:focus-visible {
  outline: none;
}
.swiper-button-next-related:focus-visible img {
  outline: none;
}

/* .swiper-button-prev-related {
    // position: absolute;
    // width: 53px;
    // left: 10px;
    // height: 53px;
    // border-radius: 30px;
    // display: block;
    // z-index: 2;
    // top: 4060px;
    // position: absolute;
}
.swiper-button-next-related {
    // position: absolute;
    // width: 53px;
    // right: 10px;
    // height: 53px;
    // border-radius: 30px;
    // display: block;
    // z-index: 2;
    // top: 4060px;
    // position: absolute;
} */
.more-related {
  margin-bottom: 20px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.plus-related {
  position: absolute;
  width: 50px;
  left: calc(50% - 25px);
  top: calc(0px - 25px);
  z-index: 100;
  transition: all 0.35s ease-in-out;
}

.plus-related.rotated {
  transform: rotate(135deg);
}

.related-boat-cta {
  margin-top: 30px;
}

.related-content {
  font-size: 18px;
  text-align: left;
  margin-bottom: 30px;
  max-width: 1130px;
}

.related-download {
  width: 60px;
  position: absolute;
  top: 116px;
  right: 400px;
}
.related-download p {
  left: 70px;
  top: 0px;
  position: absolute;
}
.related-download h2 {
  position: absolute;
  font-size: 17px !important;
  top: 23px;
  width: 141px;
  left: 70px;
}

.related-overlaying-stats-section {
  background-color: #000;
  padding: 95px 176px;
  color: #fff;
}
.related-overlaying-stats-section .stat-title {
  font-size: 19px;
  text-transform: uppercase;
}
.related-overlaying-stats-section .stat-value {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 700;
}
.related-overlaying-stats-section .right-label {
  font-size: 15px;
  text-align: right;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.related-overlaying-stats-section .right-label::after {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  height: 3px;
  width: 60px;
  background: #fff;
}

.swipe-related {
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.relatedinfo {
  z-index: 10000000;
  transform: translateY(-60px);
  transition: transform 0.35s ease;
  margin-top: -270px;
}

.product-contenth1 {
  font-weight: 500;
}

.product-content-row {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.pagination-search svg {
  height: 25px;
}
.pagination-search .flex.items-center.justify-between {
  margin: 0 auto;
}
.pagination-search .flex.justify-between.flex-1 {
  display: none;
}
.pagination-search .text-sm.text-gray-700.leading-5 {
  display: none;
}
.pagination-search span[aria-disabled=true] {
  display: none;
}

.boat-general-info {
  position: absolute;
  width: 83.33333vw;
  height: 100%;
  margin-left: 8.33333vw;
}

.related-boat-title {
  margin-top: 120px;
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.related-boat-abstract {
  font-size: 20px;
  color: #000;
  max-width: calc(8.33333vw * 5);
}

.main-picture-container {
  overflow: hidden;
  /* .main-picture {
      transition: transform .025s;
  } */
}

.underlay-main-picture {
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
}

/* Cookie disclaimer */
#cookie-choice-info {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 45px 30px 30px;
  background: #fff;
  z-index: 3000;
  border-top: 1px solid rgba(235, 235, 235, 0.9);
  transition: transform 0.5s ease-in-out;
}
#cookie-choice-info.hidden {
  transform: translateY(calc(100% + 5px));
}
#cookie-choice-info p {
  line-height: 1;
  font-size: 20px;
  color: #333;
  max-width: 60%;
  float: left;
}
#cookie-choice-info #accept-cookie-cst {
  line-height: 1;
  font-size: 20px;
  color: #333;
  float: right;
  text-decoration: none;
  cursor: pointer;
}
#cookie-choice-info #accept-cookie-cst .arrow-big {
  width: 39px;
  height: 7px;
  display: inline-block;
  transition: transform 0.5s ease;
}
#cookie-choice-info #accept-cookie-cst:hover .arrow-big {
  transform: translateX(10px);
}

.play-video-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.92;
  z-index: 1;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.play-video-img:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
}

#container-yt-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.627);
  z-index: 1090;
}

#video-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#close-yt-video {
  position: absolute;
  top: 30px;
  left: 30px;
  /* right: 30px; */
  width: 40px;
  cursor: pointer;
}

.title-related {
  font-size: 40px;
  line-height: 1.73;
}

.boatRelatedNavRow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.divline-prodcut-related {
  width: 100%;
  height: 1px;
  background-color: #4a4a4a;
  margin-top: 50px;
}

.error-page-container {
  display: flex;
  flex-direction: column;
}
.error-page-container .error_number {
  font-size: 156px;
  font-weight: 600;
  line-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-page-container .error_number span {
  font-size: 56px;
  font-weight: 700;
}
.error-page-container .error_number hr {
  margin-top: 40px;
  margin-bottom: 0;
  width: 50px;
}
.error-page-container .error_title {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
}
.error-page-container .error_description {
  font-size: 20px;
  font-weight: 400;
}
.error-page-container .error_description a {
  color: #568dca;
}
.error-page-container .error_description a:hover {
  color: #b02400;
}

.btn-collapse {
  cursor: default !important;
}

.card-body {
  cursor: pointer;
}

.bwa-container .article-box-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  color: #fff;
}
.bwa-container .article-box-overlay::before {
  display: block;
  content: "";
  background: #e6e6e6;
  background: linear-gradient(180deg, rgba(230, 230, 230, 0.31) 0%, #2b2b2b 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6e6e6", endColorstr="#2b2b2b", GradientType=1);
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}
.bwa-container .article-box-overlay .article-date {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}
.bwa-container .article-box-overlay.large-desktop .article-info {
  width: calc(100% - calc(8.3vw * 2) - 30px);
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.bwa-container .article-box-overlay.large-desktop .title {
  font-size: 43px;
  font-weight: bold;
  margin-bottom: 20px;
}
.bwa-container .article-box-overlay.small-desktop .article-info {
  width: 85%;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
}
.bwa-container .article-box-overlay.small-desktop .title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}
.bwa-container .article-box-overlay .cta {
  font-size: 14px;
  border-radius: 23px;
  background-color: #ed312d;
  padding: 10px 30px;
  border: 0px solid transparent;
  color: #fff;
  font-weight: bold;
}

.onFocusLabel {
  position: absolute;
  color: #fff;
  background-color: #ed312d;
  padding: 10px 20px;
  font-size: 14px;
  top: 70px;
  left: 0px;
  z-index: 3;
  font-weight: bold;
  pointer-events: none;
}
.onFocusLabel::before {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  border-left: 0px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid #ed312d;
  position: absolute;
  right: -24px;
  top: 0px;
}
.onFocusLabel::after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
  border-left: 0px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 24px solid #ed312d;
  position: absolute;
  right: -24px;
  bottom: 0px;
}

.blog-on-focus-articles {
  margin-top: 67px;
}

.catMenu {
  background-color: #2b2b2b;
  color: rgba(255, 255, 255, 0.44);
}

.bg-gray {
  background-color: #979797;
}

@media only screen and (max-width: 768px) {
  .related-picture-container .rel-block-absolute-top-left h1 {
    font-size: 35px;
  }
  .related-picture-container .rel-block-absolute-top-left h2 {
    font-size: 25px;
    max-width: 35vw;
  }
  .related-picture-container .rel-block-absolute-top-left p {
    font-size: 16px;
    max-width: 45vw;
  }

  .related-overlaying-stats-section {
    padding: 95px 95px;
  }

  .related-download {
    top: 85px !important;
    right: 220px !important;
    width: 45px;
  }
  .related-download p {
    left: 55px;
  }
  .related-download h2 {
    font-size: 13px !important;
    top: 20px;
    left: 54px;
  }

  .relatedinfo {
    margin-top: -440px;
  }

  .select-sub {
    font-size: 13px;
  }

  .white-board-sub {
    width: 79px;
  }
}
/* IE exclusive properties */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sub-collection.sub-collection-active {
    color: #000;
  }
  .sub-collection.sub-collection-active p {
    color: #000;
  }

  .form-label-group label,
.form-label-group select {
    font-size: 13px;
  }

  #divContactUs select {
    font-size: 13px;
  }

  .custom-checkbox-container {
    padding-top: unset;
  }
}
/* Responsive */
@media only screen and (max-width: 1850px) {
  .col-alternated-section {
    padding-top: 50px;
  }
  .col-alternated-section .component-btn {
    position: absolute;
    bottom: 70px;
    left: 110px;
  }
  .col-alternated-section .section-description {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1780px) {
  .col-alternated-section .component-btn {
    position: absolute;
    bottom: 30px;
    left: 110px;
  }
}
@media only screen and (max-width: 1680px) {
  .col-alternated-section .section-description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1599px) {
  .col-alternated-section .section-sub-title {
    font-size: 30px;
  }

  .article-content ul {
    width: 70%;
    margin-left: calc(15% + 15px);
  }
}
@media only screen and (max-width: 1490px) {
  .col-alternated-section {
    padding-top: 30px;
  }
  .col-alternated-section .section-title {
    font-size: 30px;
  }

  .square-box-date {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .square-box-title {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1440px) {
  .col-alternated-section .section-description {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1430px) {
  .col-alternated-section .section-description {
    font-size: 15px;
  }
  .col-alternated-section .component-btn {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .square-box .square-box-content-bg {
    height: 55%;
  }
  .square-box .square-box-content {
    height: 55%;
  }
}
@media only screen and (max-width: 1340px) {
  .col-alternated-section {
    padding-top: 15px;
  }
  .col-alternated-section .component-btn {
    bottom: 15px;
  }

  .sticky-block-left-page .sticky-block-left-page-title {
    font-size: 32px;
  }
  .sticky-block-left-page .sticky-block-left-page-description {
    font-size: 16px;
    line-height: 1.55;
  }

  .sticky-block-right .sticky-block-right-title {
    font-size: 32px;
  }
  .sticky-block-right .sticky-block-right-description {
    font-size: 16px;
    line-height: 1.55;
  }
}
@media only screen and (max-width: 1330px) {
  .col-alternated-section .section-title {
    font-size: 20px;
  }
  .col-alternated-section .section-sub-title {
    font-size: 20px;
  }
  .col-alternated-section .section-description {
    line-height: 21px;
  }

  .overlaying-stats-section .stat-title {
    white-space: nowrap;
    font-size: 12px;
  }
  .overlaying-stats-section .stat-value {
    white-space: nowrap;
  }
  .overlaying-stats-section .right-label {
    font-size: 12px;
    top: 0;
    transform: translateY(0);
  }
  .overlaying-stats-section .right-label::after {
    display: none;
  }

  .overlaying-stats-section {
    padding: 25px 15px;
  }

  .play-video-img {
    max-width: 60px;
  }

  .card-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .col-alternated-section {
    padding-left: 8.3333%;
    padding-right: 8.3333%;
    padding-top: 8.333vw;
  }
  .col-alternated-section .component-btn {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .col-alternated-section .section-title {
    font-size: 48px;
  }
  .col-alternated-section .section-sub-title {
    font-size: 48px;
  }
  .col-alternated-section .section-description {
    font-size: 20px;
    line-height: 27px;
    margin-top: 40px;
  }
  .col-alternated-section .component-btn {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 45px;
    margin-bottom: 85px;
  }

  .article-abstract {
    font-size: 30px;
  }

  .article-content {
    font-size: 18px;
  }

  /* .article-tagbutton {
      width: 180px;
      height: 50px;
      font-size: 18px;
  } */
  .article-button-next {
    width: 85px;
    height: 46px;
    font-size: 18px;
  }

  .article-button-prev {
    width: 85px;
    height: 46px;
    font-size: 18px;
  }

  .article-related {
    font-size: 30px;
  }

  .product-contenth1 {
    font-size: 30px;
  }

  .absolute-info-box {
    padding: 50px 35px;
  }
  .absolute-info-box h2 {
    font-size: 28px;
  }
  .absolute-info-box p {
    font-size: 16px;
  }

  .white-band-title {
    font-size: 36px;
  }
  .white-band-title p {
    font-size: 18px;
  }

  .boat-product-title {
    font-size: 52px;
  }

  .specs-img-section-mobile {
    max-height: calc(90vh - 90px);
    width: auto;
  }

  .specs-img-section-mobile-vertical {
    width: 130%;
  }

  .specs .download {
    top: 0;
    z-index: 2;
  }
  .specs .download img {
    width: 50px;
  }
  .specs .download p {
    left: 70px;
    top: 5px;
  }
  .specs .download h2 {
    left: 70px;
    top: 25px;
  }

  #swiperEquipments .specs-content-text {
    line-height: 1.8;
  }

  .related-boat-title {
    margin-top: 50px;
  }

  .related-boat-title {
    font-size: 34px;
  }

  .related-boat-abstract {
    font-size: 18px;
  }

  .related-boat-cta {
    margin-top: 10px;
  }

  .dl-related-boat-info {
    height: 70px;
  }

  .square-box-date {
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .square-box-title {
    font-size: 20px;
    line-height: 1.15;
  }
}
@media only screen and (max-width: 1600px) {
  .sticky-block-right {
    left: 42%;
  }

  .product-card .text-container {
    top: 35px;
    left: 30px;
  }
  .product-card .text-container h3 {
    font-size: 38px;
  }
  .product-card .text-container p {
    font-size: 18px;
  }
  .product-card .btn-container {
    bottom: 45px;
    left: 30px;
    width: calc(100% - 30px);
  }

  .component-btn {
    font-size: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .specs-title-padding {
    padding-left: 4.166666vw;
  }

  .stat-title {
    white-space: normal;
    font-size: 14px;
  }

  .small-draggable-boat {
    transform: scale(1);
    transition: transform 0.35s ease-in-out 0.5s;
  }
  .small-draggable-boat.is-in {
    transform: scale(1.2);
  }

  .related-boat-title {
    margin-top: 8.3333vw;
  }

  .related-stat-col {
    margin-bottom: 20px;
  }

  .related-boat-abstract {
    max-width: unset;
  }

  .bg-tablet-grey-06 {
    background-color: #fafafa;
  }

  .sticky-block-left {
    position: absolute;
    bottom: 0;
    /* width: 83.333333vw; */
    width: 91.666666vw;
    margin-left: 4.166666vw;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: unset;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #fff;
    z-index: 1;
    padding-bottom: 30px;
    margin-bottom: unset;
    transform: translateY(100px);
  }

  .section-sticky {
    position: relative;
    margin-bottom: 270px;
  }

  .sticky-block-left-page {
    position: absolute;
    top: 420px;
    width: calc(8.333333vw * 10);
    padding-left: 16px;
    padding-right: 16px;
    margin-top: -90px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #fff;
    z-index: 1;
    padding-bottom: 30px;
    /* z-index: 0; */
  }

  .sticky-block-right {
    position: absolute;
    top: 420px;
    width: calc(8.333333vw * 10);
    padding-left: 16px;
    padding-right: 16px;
    margin-top: -90px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #fff;
    z-index: 1;
    left: 0;
    right: 0;
    padding-bottom: 30px;
    /* z-index: 0; */
  }

  .sticky-block-right .sticky-block-right-learn-more {
    margin-bottom: 40px;
  }

  .min-height-70vw {
    /* margin-bottom: 350px; */
    margin-bottom: 65px;
  }

  .contacts-divider {
    height: 1px;
    width: calc(100% - 30px);
    /* width: calc(100% - 16.666666vw); */
    position: relative;
    margin: 30px 0 30px 0;
    border-left: 0;
    border-top: 1px solid #979797;
    padding: 0 !important;
  }

  .w-100-mobile {
    width: 100% !important;
  }

  .w-100-mobile-btn {
    width: calc(100% - 4px) !important;
  }

  .details-block {
    background-color: black;
    position: relative;
    margin-top: -30%;
    margin-right: 33px;
  }
  .details-block h2 {
    font-size: 28px;
    padding-top: 4rem !important;
  }

  .div-contacts {
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
  }

  .contacts-divider {
    height: 1px;
    width: 100%;
    position: relative;
    margin: 30px 0 30px 0;
    padding: 0px !important;
  }

  .contacts-left,
.contacts-right {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .contacts-left .component-btn,
.contacts-right .component-btn {
    position: relative;
    left: 0;
  }

  .contacts-right {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .blog-filter-text {
    font-size: 15px;
  }

  .blog-top-section-text-container {
    left: 75px;
  }

  .section-title-pt {
    padding-top: 70px;
  }

  .section-description-pb {
    padding-bottom: 40px;
  }

  .blog-filter-text {
    font-size: 15px;
  }

  .blog-top-section-text-container {
    left: 75px;
  }

  .rotating-el-name {
    font-size: 100px;
  }

  .down-harpoon {
    font-size: 30px;
  }
  .down-harpoon.translateYup {
    transform: translateY(calc(-4.166666vw - 15px));
  }

  .block-absolute-top-left h1 {
    max-width: 45vw;
  }
  .block-absolute-top-left p {
    max-width: 50vw;
  }

  .main-picture-container .block-absolute-top-left h1 {
    font-size: 28px;
  }

  .main-picture-container .block-absolute-top-left p {
    font-size: 18px;
  }

  .rotating-el-title {
    font-size: 32px;
  }

  .rotating-el-name {
    margin-top: 15px;
    font-size: 130px;
  }

  #dragDiv {
    margin-top: -20px;
    margin-bottom: -10px;
    transform: scale(1.15);
    transform-origin: center center;
  }
  #dragDiv .drag-suggestion {
    position: absolute;
    bottom: -5px;
  }

  .rotating-el-learn-more {
    width: 300px;
    height: 52px;
    font-size: 10px;
  }

  .img3dModel {
    width: 100vw;
  }

  .white-band-title {
    font-size: 32px;
  }

  .col-alternated-section .section-title {
    font-size: 32px;
  }
  .col-alternated-section .section-sub-title {
    font-size: 32px;
  }

  .article-abstract {
    font-size: 24px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .article-content {
    font-size: 20px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .article-content h3 {
    font-size: 22px;
  }

  .white-band {
    padding-left: 4.166666vw;
    padding-right: 4.166666vw;
  }

  .col-alternated-section {
    padding-left: calc(4.166666vw - 15px);
    padding-right: calc(4.166666vw - 15px);
  }

  .product-card .start {
    left: 4.166666vw;
  }

  .product-card .text-container h3 {
    font-size: 40px;
  }

  .absolute-info-box {
    position: relative;
    width: 81.333333%;
    margin-top: 0;
    transform: translateY(-6vw);
  }

  .specs-img-section {
    margin-top: 30px;
  }

  .specs-img-section-mobile {
    max-height: calc(70vh - 90px);
    width: auto;
  }

  .specs-img-section-mobile-vertical {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-80%) rotate(-90deg);
    width: 700px;
    transform-origin: right center;
    text-align: center;
    border-bottom: 2px dashed #fff;
    padding-bottom: 5px;
  }

  .specs-img-section-mobile-horizontal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    transform: translateY(75px) translateX(-15%);
    text-align: center;
    border-top: 2px dashed #fff;
    padding-top: 5px;
  }
  .specs-img-section-mobile-horizontal span {
    padding-left: 65px;
  }

  .square-box .square-box-content-bg {
    height: 45%;
  }
  .square-box .square-box-content {
    height: 45%;
  }

  .square-box-date {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .square-box-title {
    font-size: 25px;
    line-height: 1.25;
  }

  .product-alert-container {
    position: relative;
  }
  .product-alert-container .product-alert {
    position: absolute;
    top: -30px;
    right: calc(50% - 250px);
    display: flex;
    text-align: left;
    flex-direction: column;
    width: 250px;
    padding: 15px 20px;
    background-color: rgba(185, 0, 0, 0.8);
  }
  .product-alert-container .product-alert span {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .product-alert-container .product-alert p {
    line-height: 1.4;
    font-size: 13px;
  }
  .product-alert-container .product-alert .product-alert-triangle {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 160px;
    bottom: -50px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(185, 0, 0, 0.8);
  }

  .bwa-container .article-box-overlay.large-tablet .article-info {
    width: calc(100% - calc(8.3vw * 2) - 30px);
    bottom: 50px;
  }
  .bwa-container .article-box-overlay.large-tablet .article-date {
    font-size: 15px;
  }
  .bwa-container .article-box-overlay.large-tablet .title {
    font-size: 30px;
  }
  .bwa-container .article-box-overlay.small-tablet .article-info {
    width: calc(100% - calc(8.3vw * 2) - 30px);
    bottom: 30px;
  }
  .bwa-container .article-box-overlay.small-tablet .article-date {
    font-size: 14px;
  }
  .bwa-container .article-box-overlay.small-tablet .title {
    font-size: 18px;
  }
  .bwa-container .article-box-overlay .cta {
    font-size: 14px;
    padding: 5px 18px;
  }

  .related-download {
    top: 85px !important;
    right: 320px !important;
  }

  /* .stat-title{
      font-size: 15px !important;
  } */
  .relatedinfo {
    margin-top: -380px;
  }

  .download {
    top: 260px;
  }

  .select-sub .white-board-sub {
    width: 104px;
  }

  .product-page .block-absolute-top-left .component-btn {
    transform: translateY(130px);
  }

  .bwaLoadMore .arrow {
    right: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .navigation-related img {
    top: calc(50% + 25px);
  }
  .navigation-related img.filter-invert {
    opacity: 0;
    pointer-events: none;
  }

  .swiper-button-prev-related {
    left: 20px;
  }

  .swiper-button-next-related {
    right: 20px;
  }

  .blog-news-card-mobile {
    margin-bottom: 30px;
  }

  .blog-filter-text.active-category {
    font-size: 15px !important;
  }
  .blog-filter-text.active-category a {
    color: #ed312d !important;
  }

  .article-content {
    padding-right: 0;
    padding-left: 0;
  }
  .article-content ul {
    width: 90%;
    margin-left: 5%;
  }

  .search-result h2 {
    font-size: 22px;
  }
  .search-result p {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .search-result .read-search-result {
    display: block;
    float: left;
  }

  .rotating-el-name {
    margin-top: 15px;
    font-size: 90px;
  }

  .block-absolute-top-left h1 {
    font-size: 28px;
    max-width: unset;
  }

  .block-absolute-top-left p {
    font-size: 14px;
    line-height: normal;
    max-width: unset;
    padding-right: 16px;
    line-height: 18px;
  }

  p.breadcrumbs {
    font-size: 11px;
  }

  .boat-product-title {
    font-size: 22px;
  }

  .product-content-description-top {
    margin-bottom: 20px;
    margin-top: 0px;
    font-size: 16px;
  }

  .bwaLoadMore {
    font-size: 20px;
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .bwaLoadMore .arrow {
    right: 35px;
    width: 15px;
    height: 15px;
    border-left: 5px solid #2b2b2b;
    border-bottom: 5px solid #2b2b2b;
  }

  .sticky-block-left {
    position: relative;
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: -90px auto 0;
    top: 0;
    bottom: 0;
    transform: translateY(0);
  }

  .sticky-block-left-page {
    position: relative;
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: -90px auto 0;
    top: 0;
    left: 0;
    transform: translateY(0);
  }

  .sticky-block-right {
    position: relative;
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: -90px auto 0;
    top: 0;
    left: 0;
    transform: translateY(0);
  }

  .square-box-category {
    font-size: 12px;
    font-weight: 700;
  }

  .square-box-date {
    font-size: 15px;
    color: #8b9090;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .square-box-title {
    font-size: 20px;
    color: #000;
  }

  .square-box-cta {
    margin-top: 45px;
    font-size: 12px;
  }
  .square-box-cta a {
    color: #000;
    text-decoration: none;
  }

  .absolute-info-box {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    min-height: 33.333333vw;
    padding: 30px 15px;
    transform: translateY(-50px);
  }
  .absolute-info-box h2 {
    font-size: 28px;
  }
  .absolute-info-box p {
    font-size: 14px;
  }

  .toggleContentBtn {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .specs-img-section {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .specs-img-section-mobile-vertical {
    position: absolute;
    top: -10px;
    left: 0;
    transform: translateX(-90%) rotate(-90deg);
    width: 70vh;
    transform-origin: right center;
    text-align: center;
    border-bottom: 2px dashed #fff;
    padding-bottom: 5px;
  }

  .specs-img-section-mobile-horizontal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    transform: translateY(75px) translateX(-15%);
    text-align: center;
    border-top: 2px dashed #fff;
    padding-top: 5px;
  }
  .specs-img-section-mobile-horizontal span {
    padding-left: 65px;
  }

  .overlaying-stats-section {
    transform: translateY(0);
  }
  .overlaying-stats-section .right-label {
    transform: translateY(0);
    display: none;
  }
  .overlaying-stats-section .border-specs {
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
    padding-bottom: 25px;
  }

  .more-specs {
    width: 100%;
    text-align: left;
  }
  .more-specs::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55px;
    height: 2px;
    width: 140px;
    text-align: left;
    background-color: #000;
    transition: all 0.3s ease-out;
  }
  .more-specs:hover::after {
    background-color: #fff;
    transition: all 0.3s ease-out;
  }
  .more-specs .btn-text {
    font-size: 15px;
    margin-left: 150px;
  }
  .more-specs .component-btn.more-specs {
    padding: 20px 25px;
    text-align: center;
  }

  .product-content b {
    font-size: 50px;
  }

  .specs .max {
    font-size: 3rem;
    font-weight: 700;
  }

  .product-contenth1 {
    font-size: 22px;
    margin-bottom: 65px;
  }

  .related-picture-container.open .more-related {
    transform: translateY(0);
  }
  .related-picture-container.open .relatedinfo {
    transform: translateY(450px);
  }
  .related-picture-container.open .swipe-related {
    transform: translateY(218px);
    margin-bottom: 218px;
  }

  .relatedinfo {
    margin-top: -440px;
  }

  .rel-block-absolute-top-left h1 {
    font-size: 30px;
  }
  .rel-block-absolute-top-left h2 {
    font-size: 25px;
  }
  .rel-block-absolute-top-left button {
    margin-top: 10px;
  }

  .specs p {
    margin-bottom: 8px;
  }

  #cookie-choice-info p {
    font-size: 16px;
    max-width: 100%;
  }
  #cookie-choice-info #accept-cookie-cst {
    font-size: 16px;
    margin-top: 20px;
    float: left;
  }

  .article-top-section-container {
    margin-top: 35px;
  }

  .form-half-col-offset {
    margin-left: 0;
  }

  .bg-picture-with-box {
    position: relative;
  }

  .section-sticky {
    margin-bottom: 25px;
  }

  #close-yt-video {
    top: 15px;
    left: 9px;
    width: 32px;
  }

  .div-contacts {
    margin-top: 0;
    border-bottom: 90px solid #fff;
  }

  .product-info {
    padding-top: 10px;
  }
  .product-info .product-info-pretitle {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .product-info .product-info-title {
    margin-bottom: 0;
  }
  .product-info .product-info-desc {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .product-info .product-info-btn {
    min-width: unset;
    /* width: 155px; */
    width: calc(50% - 6.5px);
    padding-left: 0;
    padding-right: 0;
  }

  #hpContainer .col-alternated-section p {
    font-size: 14px;
  }

  .underlay-product {
    background-color: rgba(0, 0, 0, 0.25);
  }

  .sticky-block-left {
    background-color: rgba(255, 255, 255, 0.85);
  }
}
@media only screen and (max-width: 575px) {
  #container-yt-video {
    background-color: rgba(0, 0, 0, 0.777);
  }

  .relatedSwiper {
    max-height: unset;
    overflow: hidden;
  }

  .related-boat-title {
    margin-top: 55px;
    font-size: 28px;
  }

  .related-boat-abstract {
    font-size: 14px;
    max-width: unset;
  }

  .boat-general-info {
    margin-left: 0px;
    max-width: unset;
    width: 100%;
  }

  .boat-specs-container {
    transform: translateY(-101%);
  }
  .boat-specs-container .specs-related-col {
    margin-top: 30px;
  }

  .boat-specs-container.open {
    transform: translateY(0%);
  }

  .navigation-related.d-xs-none {
    display: none;
  }

  .sticky-block-left-page {
    /* width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    margin-top: -90px;
    top: 360px;
    margin-bottom: 500px; */
  }
  .sticky-block-left-page .sticky-block-left-page-title {
    font-size: 27px;
    font-weight: 700;
  }
  .sticky-block-left-page .sticky-block-left-page-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .sticky-block-right {
    /* width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    margin-top: -90px;
    top: 360px;
    margin-bottom: 500px; */
  }
  .sticky-block-right .sticky-block-right-title {
    font-size: 27px;
    font-weight: 700;
  }
  .sticky-block-right .sticky-block-right-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .blog-top-section-text-container {
    left: 16px;
    top: 16px;
  }

  .play-video-btn {
    left: 16px;
    bottom: 16px;
  }
  .play-video-btn .play-video-text {
    font-size: 12px;
    height: 11px;
    /* Not necessary? */
  }

  .white-band-title {
    font-size: 28px;
  }

  .white-band {
    padding-left: 15px;
    padding-right: 15px;
  }
  .white-band p {
    font-size: 14px;
    line-height: 1.43;
  }

  .more-specs {
    width: 100%;
  }
  .more-specs::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px;
    height: 2px;
    width: 70px;
    text-align: left;
    background-color: #000;
    transition: all 0.3s ease-out;
  }
  .more-specs .btn-text {
    font-size: 15px;
    margin-left: 55px;
  }

  .component-btn.more-specs {
    padding: 20px 25px;
    text-align: center;
  }

  /* .white-band-description {

  } */
  .product-card .text-container {
    top: 15px;
    left: 15px;
  }
  .product-card .btn-container {
    bottom: 65px;
    left: 15px;
  }
  .product-card h3 {
    font-size: 40px;
  }

  .rotating-el-learn-more {
    margin-top: 30px;
    margin-bottom: 100px;
  }

  .rotating-el-pre-title {
    font-size: 13px;
    margin-top: 30px;
  }

  .rotating-el-title {
    font-size: 38px;
  }

  .main-picture-container .block-absolute-top-left h1 {
    font-size: 28px;
    max-width: unset;
  }
  .main-picture-container .block-absolute-top-left p {
    max-width: calc(100% - 16px);
    font-size: 14px;
    line-height: normal;
    margin-right: 0px;
  }

  .section-title-pt {
    padding-top: 40px;
  }

  .section-description-pb {
    padding-bottom: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .col-alternated-section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 36px;
  }
  .col-alternated-section .component-btn {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .col-alternated-section .section-title {
    font-size: 28px;
  }
  .col-alternated-section .section-sub-title {
    font-size: 26px;
    /* From 28px */
  }
  .col-alternated-section .section-description {
    font-size: 14px;
    line-height: 19px;
    margin-top: 36px;
  }
  .col-alternated-section .component-btn {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 45px;
    margin-bottom: 45px;
    width: 100%;
  }

  .article-section .display-3 {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
  }

  .card-title {
    font-size: 21px;
    margin-bottom: 31px;
    line-height: 1;
    font-weight: 500;
  }

  .article-top-section-description {
    font-size: 10px;
    font-weight: normal;
  }

  .breadcrumbcustomarticle {
    font-size: 12px;
  }

  .breadcrumbcustomarticle-current {
    font-size: 12px;
  }

  .top-section-title {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 98%;
  }

  .breadcrumbcustomarticle-divider {
    margin-top: 0px;
  }
  .breadcrumbcustomarticle-divider .br {
    margin-top: 0px;
  }

  .article-abstract {
    font-size: 18px;
  }

  .article-content {
    margin-top: 20px;
    font-size: 13px;
    /* ul {
        padding-left: 10px;
    } */
  }
  .article-content h3 {
    font-size: 16px;
  }

  /* .article-tagbutton {
      width: 123px;
      height: 39px;
      font-size: 12px;
      margin-left: 1px;
      margin-right: 1px;
      margin-bottom: 3px;
  } */
  .article-line {
    height: 1px;
  }

  .article-button-next {
    width: 110px;
    height: 39px;
    font-size: 12px;
    text-align: right;
  }

  .article-button-prev {
    width: 110px;
    height: 39px;
    font-size: 12px;
  }

  .article-related {
    font-size: 18px;
  }

  .main-picture-container .block-absolute-top-left {
    position: absolute;
    top: 10.166666vw;
    left: 0;
  }

  .overlaying-stats-section {
    transform: translateY(0);
    margin-left: auto;
    margin-right: auto;
    position: static;
    width: calc(100% - 30px);
  }

  .boat-product-pre-tit {
    margin-top: 35px;
  }

  .boat-product-title {
    margin-top: 10px;
  }

  .product-content-description-top {
    margin-bottom: 50px;
  }

  .related-picture-container .rel-block-absolute-top-left h1 {
    font-size: 35px;
  }
  .related-picture-container .rel-block-absolute-top-left h2 {
    font-size: 28px;
  }

  .underlay-product .component-btn {
    position: absolute;
  }
  .underlay-product .component-btn.component-btn-transparent {
    font-size: 14px;
    bottom: -530px;
    left: 266px;
  }
  .underlay-product .component-btn.component-btn-black {
    font-size: 14px;
    bottom: -530px;
    left: 5px;
  }

  #positions-container p.fullpart {
    font-size: 18px;
  }

  #positions-container h2 {
    font-size: 28px;
  }

  #positions-container .position-desc {
    font-size: 20px;
  }

  .work-with-us-form-title {
    font-size: 32px;
  }

  #upload_file {
    width: 100%;
    max-width: calc(100% - 30px);
  }
  #upload_file .txt {
    font-size: 16px;
  }

  .sticky-block-left {
    padding-top: 45px;
  }
  .sticky-block-left .sticky-block-left-title h2 {
    font-size: 28px;
  }
  .sticky-block-left .sticky-block-left-title h2 p {
    font-size: 14px;
  }
  .sticky-block-left .sticky-block-left-learn-more {
    font-size: 12px;
  }

  .article-section .section-description {
    margin-top: 20px;
  }

  .product-alert-container {
    position: relative;
  }
  .product-alert-container .product-alert {
    position: absolute;
    top: -25px;
    right: calc(50% - 180px);
    display: flex;
    text-align: left;
    flex-direction: column;
    width: 250px;
    padding: 15px 20px;
    background-color: rgba(185, 0, 0, 0.8);
  }
  .product-alert-container .product-alert span {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .product-alert-container .product-alert p {
    line-height: 1.4;
    font-size: 13px;
  }
  .product-alert-container .product-alert .product-alert-triangle {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 160px;
    bottom: -50px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(185, 0, 0, 0.8);
  }

  #divContactUs #contactTitle,
#divContactUs #dealerTitle {
    font-size: 30px;
  }
  #divContactUs #accordion .card-header .btn {
    font-size: 25px;
  }

  .bwa-container .article-box-overlay.standard-mobile.onfocus .article-info {
    width: calc(100% - 30px);
  }
  .bwa-container .article-box-overlay.standard-mobile .article-info {
    width: calc(100% - 30px);
    bottom: 15px;
  }
  .bwa-container .article-box-overlay.standard-mobile .article-date {
    font-size: 14px;
  }
  .bwa-container .article-box-overlay.standard-mobile .title {
    font-size: 16px;
  }

  .download {
    top: 425px;
  }

  .onFocusLabel {
    font-size: 10px;
    padding: 9px 15px;
    top: 20px;
  }

  .custom-checkbox-container .checkmark::after {
    left: 25%;
    top: -5%;
  }
}
@media only screen and (max-width: 375px) {
  .main-picture-container .block-absolute-top-left {
    position: absolute;
    top: 4.166666vw;
    left: 0;
  }
  .main-picture-container .block-absolute-top-left p {
    font-size: 15px;
  }

  .specs-img-section-mobile {
    width: 40%;
    height: auto;
  }

  .product-contenth1 {
    font-size: 2rem;
  }

  .divline-prodcut-related {
    margin-top: 0px;
  }

  .overlaying-stats-section {
    transform: translateY(0);
    padding: 40px 50px;
  }
  .overlaying-stats-section .specs-mobile p {
    margin-bottom: 20px;
  }
  .overlaying-stats-section .stat-title {
    font-size: 14px;
    white-space: normal;
  }

  .product-content b {
    font-size: 25px;
  }

  .specs {
    padding-top: 60px;
  }
  .specs p {
    margin-bottom: 25px;
  }

  .more-specs {
    width: 100%;
  }
  .more-specs::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 60px;
    text-align: left;
    background-color: #000;
    transition: all 0.3s ease-out;
    display: none;
  }
  .more-specs .btn-text {
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    margin-left: 0;
  }

  .component-btn.more-specs {
    padding: 20px 25px;
    text-align: center;
  }

  .product-content {
    text-align: left;
    margin-right: auto;
    margin-left: -16%;
  }

  .product-content-row {
    margin-top: 15px;
    text-align: left;
    margin-right: auto;
    margin-left: -15%;
  }

  .specs-mobile {
    padding-right: 0;
    padding-left: 0;
  }

  .related-overlaying-stats-section {
    padding: 95px 55px;
  }

  .related-download {
    top: 480px !important;
    right: 230px !important;
    width: 45px;
  }

  .related-picture-container .relatedinfo {
    margin-top: -480px;
  }
  .related-picture-container.open .swipe-related {
    transform: translateY(181px);
    margin-bottom: 181px;
  }
  .related-picture-container .rel-block-absolute-top-left h1 {
    font-size: 25px;
  }
  .related-picture-container .rel-block-absolute-top-left h2 {
    font-size: 20px;
  }
  .related-picture-container .rel-block-absolute-top-left button {
    margin-top: 10px;
  }
  .related-picture-container .rel-block-absolute-top-left p {
    font-size: 15px;
  }

  .product-card .text-container h3 {
    font-size: 31px;
  }

  .underlay-product .component-btn.component-btn-transparent {
    font-size: 6.5px;
    bottom: -290px;
    left: 174px;
  }
  .underlay-product .component-btn.component-btn-black {
    font-size: 6.5px;
    bottom: -290px;
    left: 5px;
  }

  .sticky-block-left-page {
    /* width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    margin-top: -90px;
    top: 250px;
    margin-bottom: 500px; */
  }
  .sticky-block-left-page .sticky-block-left-page-title {
    font-size: 27px;
    font-weight: 700;
  }
  .sticky-block-left-page .sticky-block-left-page-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .sticky-block-right {
    /* width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    margin-top: -90px;
    top: 250px;
    margin-bottom: 500px; */
  }
  .sticky-block-right .sticky-block-right-title {
    font-size: 27px;
    font-weight: 700;
  }
  .sticky-block-right .sticky-block-right-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .section-sticky {
    margin-bottom: 20px;
  }

  .product-alert-container {
    position: relative;
  }
  .product-alert-container .product-alert {
    position: absolute;
    top: -30px;
    right: calc(50% - 130px);
    display: flex;
    text-align: left;
    flex-direction: column;
    width: 250px;
    padding: 15px 20px;
    background-color: rgba(185, 0, 0, 0.8);
  }
  .product-alert-container .product-alert span {
    font-weight: bold;
    margin-bottom: 7px;
    font-size: 16px;
  }
  .product-alert-container .product-alert p {
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 13px;
  }
  .product-alert-container .product-alert .close-alert {
    height: 16px;
    width: 16px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }
  .product-alert-container .product-alert .product-alert-triangle {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 100px;
    bottom: -50px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(185, 0, 0, 0.8);
  }
}
#wizard-customMessage {
  border-bottom: 1px solid #000 !important;
}

.hdr-section.sport-hdr {
  height: 85px;
  border-bottom: 0;
  background-color: #ECEADE;
  transition: 0.5s;
  z-index: 2;
}
.hdr-section.sport-hdr nav {
  height: 100%;
}
.hdr-section.sport-hdr .nav-left-section {
  position: relative;
  height: 100%;
  transition: 0.5s;
}
.hdr-section.sport-hdr .nav-left-section .logo {
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  cursor: pointer;
}
.hdr-section.sport-hdr .nav-right-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  color: #002022;
  transition: 0.5s;
}
.hdr-section.sport-hdr .nav-right-section .searchBtn-white {
  opacity: 1;
  transition: 0.5s;
}
.hdr-section.sport-hdr .nav-right-section .searchBtn-black {
  opacity: 0;
  transition: 0.5s;
}
.hdr-section.sport-hdr .nav-right-section #lang {
  font-weight: 300;
  color: #002022 !important;
}
.hdr-section.sport-hdr .nav-center-section .hmbrgr-btn .hamburger-inner {
  background-color: #1E1E1E !important;
}
.hdr-section.sport-hdr .nav-center-section .hmbrgr-btn .hamburger-inner::before, .hdr-section.sport-hdr .nav-center-section .hmbrgr-btn .hamburger-inner::after {
  background-color: #1E1E1E !important;
}
.hdr-section.sport-hdr.scrolled, .hdr-section.sport-hdr.scrolled-fixed {
  background-color: #ECEADE;
  transition: 0.5s;
  height: 85px;
}
.hdr-section.sport-hdr.scrolled .nav-left-section .logo, .hdr-section.sport-hdr.scrolled-fixed .nav-left-section .logo {
  transition: 0.5s;
}
.hdr-section.sport-hdr.scrolled .nav-right-section .hmbrgr-btn .hamburger-inner, .hdr-section.sport-hdr.scrolled-fixed .nav-right-section .hmbrgr-btn .hamburger-inner {
  background-color: #1E1E1E !important;
}
.hdr-section.sport-hdr.scrolled .nav-right-section .hmbrgr-btn .hamburger-inner::before, .hdr-section.sport-hdr.scrolled .nav-right-section .hmbrgr-btn .hamburger-inner::after, .hdr-section.sport-hdr.scrolled-fixed .nav-right-section .hmbrgr-btn .hamburger-inner::before, .hdr-section.sport-hdr.scrolled-fixed .nav-right-section .hmbrgr-btn .hamburger-inner::after {
  background-color: #1E1E1E !important;
}

.sport-nav-border-bottom {
  border-bottom: 1px solid #0020224D;
  transition: 0.5s;
}

.custom-opacity-0 {
  transition: 0.5s;
  opacity: 0;
}

.hdr-section.marshall-hdr .nav-right-section #lang {
  color: #fff !important;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  height: 2px;
}

.hamburger-box {
  scale: 1.5;
}

.hdr-section .hamburger-inner,
.hdr-section .hamburger-inner::after,
.hdr-section .hamburger-inner::before {
  background-color: #fff !important;
}

.hdr-section .hamburger-inner,
.hdr-section .hamburger-inner::after,
.hdr-section .hamburger-inner::before {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: 0.5s;
}

@media only screen and (max-width: 991px) {
  .hdr-section.sport-hdr {
    height: 88px;
  }
  .hdr-section.sport-hdr .nav-left-section .logo {
    height: 28px;
  }
  .hdr-section.sport-hdr.scrolled, .hdr-section.sport-hdr.scrolled-fixed {
    height: 88px;
  }
}
@media only screen and (max-width: 575px) {
  .hdr-section.sport-hdr {
    height: 60px;
  }
  .hdr-section.sport-hdr .nav-left-section .logo {
    height: 27px;
  }
  .hdr-section.sport-hdr.scrolled, .hdr-section.sport-hdr.scrolled-fixed {
    height: 60px;
  }
  .hdr-section.sport-hdr.scrolled .nav-left-section .logo, .hdr-section.sport-hdr.scrolled-fixed .nav-left-section .logo {
    height: 27px;
  }

  .hamburger-box {
    scale: 1.25;
  }
}
.header-menu {
  position: fixed;
  background: #ECEADE;
  height: 100vh;
  left: 0;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 90px;
  transition: all 0.3s ease-out;
  z-index: 5;
  overflow-y: scroll;
}
.header-menu.height-auto {
  height: auto;
}
.header-menu a {
  color: #002022;
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
}
.header-menu p {
  margin: 15px 0 15px 0 !important;
}
.header-menu h3 {
  color: #002022;
  font-weight: 700;
  font-size: 30px;
}
.header-menu .pages-link {
  position: relative;
}
.header-menu .pages-link h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 40px;
}
.header-menu .pages-link h2.active {
  color: #002022;
}
.header-menu .pages-link sup {
  color: #002022;
  font-size: 20px;
  font-weight: 400;
  margin-right: 20px;
  top: 4%;
  left: -5%;
}
.header-menu .cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header-menu .cta-text {
  flex-direction: row-reverse;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.header-menu .cta-text span {
  width: unset !important;
}
.header-menu .cta-text::after {
  transform: rotate(-180deg);
}
.header-menu .arrow-right .cta-text::after {
  transform: rotate(0deg);
}
.header-menu .arrow-right .cta-text {
  flex-direction: row;
}
.header-menu .bottom-row .hdr-cta-container {
  width: 270px;
  position: relative;
}
.header-menu .bottom-row .social-icons-container {
  -moz-column-gap: 50px;
       column-gap: 50px;
  display: flex;
}

.div-line {
  background-color: #979797;
  height: 1px;
  width: 90%;
  opacity: 0.35;
  margin: 0 auto 40px auto;
}

.header-search.header-search-sport {
  position: fixed;
  color: #fff;
  background: #ECEADE;
  transition: transform 0.35s ease-in-out;
  z-index: 1052;
  transition: 0.5s;
  height: 100vh;
  transform: translateY(0);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header-search.header-search-sport.hide {
  transform: translateY(-110vh) !important;
}
.header-search.header-search-sport .header-search-top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}
.header-search.header-search-sport .header-search-top .header-search-close {
  cursor: pointer;
}
.header-search.header-search-sport .header-search-top .header-search-close img {
  height: 33px;
  width: 33px;
}
.header-search.header-search-sport form {
  width: 100%;
  height: calc(90vh - 85px);
  display: flex;
}
.header-search.header-search-sport form input {
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  font-weight: 500;
  font-size: 10vw;
  border-bottom: 0;
  font-weight: 800;
  caret-color: #002022;
}
.header-search.header-search-sport form ::-moz-placeholder {
  opacity: 1;
  color: #fff;
  font-weight: 800;
  font-size: 10vw;
}
.header-search.header-search-sport form :-ms-input-placeholder {
  opacity: 1;
  color: #fff;
  font-weight: 800;
  font-size: 10vw;
}
.header-search.header-search-sport form ::placeholder {
  opacity: 1;
  color: #fff;
  font-weight: 800;
  font-size: 10vw;
}
.header-search.header-search-sport.scrolled {
  background: #ECEADE;
}
.header-search.header-search-sport.hide {
  transform: translateY(-100vh);
}

.sport-menu-swiper-container {
  overflow: hidden;
  height: 100%;
}
.sport-menu-swiper-container .sport-menu-swiper {
  padding-right: 30px;
  padding-bottom: 30px;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-slide {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-slide p {
  font-size: 20px;
  margin-top: 5px;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-slide img {
  height: 100%;
  border-radius: 50px;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-button-prev,
.sport-menu-swiper-container .sport-menu-swiper .swiper-button-next {
  border: 0;
  color: #002022;
  height: 14px;
  width: 14px;
  top: 73%;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-button-prev::after,
.sport-menu-swiper-container .sport-menu-swiper .swiper-button-next::after {
  height: 14px;
  width: 14px;
  font-size: 14px;
  display: inline-block;
}
.sport-menu-swiper-container .sport-menu-swiper .swiper-button-next {
  right: 0;
}

@media only screen and (max-width: 1599px) {
  .cta-margin-left {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-menu .pages-link h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .header-menu .pages-link sup {
    font-size: 20px;
    margin-right: 20px;
    top: 4%;
    left: -5%;
  }
  .header-menu a {
    font-size: 20px;
  }
  .header-menu p {
    margin: 8px 0 8px 0 !important;
  }
  .header-menu h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1299px) {
  .header-menu .bottom-row .social-icons-container {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-menu a {
    font-size: 15px;
  }
  .header-menu p {
    margin: 8px 0 8px 0 !important;
  }
  .header-menu h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-margin-left {
    margin-left: 0px;
  }

  .header-menu .pages-link h2 {
    font-size: 35px;
    margin-bottom: 40px;
    padding-left: 25px;
  }
  .header-menu .pages-link sup {
    font-size: 20px;
    margin-right: 20px;
    top: 2%;
    left: -5%;
  }
  .header-menu a {
    font-size: 18px;
  }
  .header-menu p {
    margin: 8px 0 8px 0 !important;
  }
  .header-menu .hdr-cta-container {
    flex-direction: column;
    align-items: center;
  }
  .header-menu .bottom-row .hdr-cta-container {
    width: 250px;
    margin-bottom: 50px;
  }
  .header-menu .bottom-row .social-icons-container {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }

  .header-search.header-search-sport form {
    height: 100%;
  }
  .header-search.header-search-sport form input {
    font-size: 15vw;
  }
  .header-search.header-search-sport .header-search-top {
    height: 88px;
  }

  .header-menu-section {
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu {
    padding-bottom: 100px;
  }

  .cta-container.granturismo.transparent-yellow {
    max-width: unset !important;
  }
}
@media only screen and (max-width: 575px) {
  .header-menu {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .header-menu a {
    font-size: 14px;
  }
  .header-menu p {
    margin: 5px 0 5px 0 !important;
    font-size: 15px;
  }
  .header-menu h3 {
    font-size: 15px;
  }
  .header-menu .pages-link {
    font-size: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-menu .pages-link h2 {
    font-size: 30px;
    padding-left: 0;
  }
  .header-menu .pages-link sup {
    position: static;
    font-size: 20px;
    margin-right: 0;
    top: 0;
    margin-bottom: 10px;
  }
  .header-menu .bottom-row .hdr-cta-container {
    width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
  .header-menu .bottom-row .social-icons-container {
    -moz-column-gap: 50px;
         column-gap: 50px;
    display: flex;
  }

  .header-search.header-search-sport form {
    height: 75%;
  }
  .header-search.header-search-sport form input {
    font-size: 15vw;
  }
  .header-search.header-search-sport .header-search-top {
    height: 60px;
  }

  .cta-container.granturismo.transparent-yellow.fullpage-menu-sport {
    left: 50% !important;
  }

  .cta-text {
    font-size: 13px !important;
    padding: 25px 15px !important;
  }
}
@media only screen and (max-width: 375px) {
  .cta-container.granturismo.transparent-yellow.fullpage-menu-sport {
    left: 50% !important;
  }

  .cta-text {
    gap: 0 20px !important;
    font-size: 13px !important;
  }
}
footer {
  background: #ECEADE;
  color: #002022;
  padding-top: 70px;
  padding-bottom: 70px;
}
footer .footer-sport-elements {
  font-size: 20px;
}
footer .footer-sport-elements p {
  margin-bottom: 35px;
}
footer a {
  color: #002022;
}
footer a:hover {
  color: #002022;
}
footer .logo-sport {
  height: 140px;
  margin-bottom: 100px;
}
footer .logo-bwa-footer {
  margin-top: 70px;
  height: 40px;
}
footer .footer-socials-div {
  max-width: auto;
  margin-left: 0;
  margin-top: 10px;
}
footer .footer-yellow-text {
  color: #002022;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  footer .footer-sport-elements {
    font-size: 12px;
  }
  footer .logo-sport {
    height: 85px;
    margin-bottom: 70px;
  }
  footer .logo-bwa-footer {
    margin-top: 20px;
  }
  footer .footer-socials-div {
    max-width: 30%;
    margin: 0;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .footer-text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  footer .footer-socials-div {
    max-width: 45%;
    margin: 10px auto 0 auto;
  }
  footer .footer-sport-elements {
    font-size: 13px;
    text-align: center;
  }
  footer .footer-sport-elements p {
    margin-bottom: 60px;
  }
  footer .logo-bwa-footer {
    margin-top: 75px;
  }
  footer .row-gap-20 {
    row-gap: 0;
  }
}
.newsletter {
  background-color: #1E1E1E;
  color: #fff;
  padding: 165px 8.333333333vw;
  margin: 0;
}
.newsletter h2 {
  font-size: 70px;
  font-weight: 900;
  width: 50%;
  line-height: 1;
  margin-bottom: 80px;
}
.newsletter h2 span {
  background-color: #ed312d;
  color: #ebebeb;
}
.newsletter p {
  font-size: 29px;
}
.newsletter .newsletter-form-container {
  position: relative;
  margin-top: 10px;
}
.newsletter .newsletter-form-container .newsletter-input {
  background-color: #1E1E1E;
  border-bottom: 1px solid #fff;
  color: #fff;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  width: 100%;
  height: 40px;
}
.newsletter .newsletter-form-container .newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.newsletter .newsletter-form-container .newsletter-input:not(:-moz-placeholder-shown) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-input:not(:-ms-input-placeholder) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-input:focus, .newsletter .newsletter-form-container .newsletter-input:not(:placeholder-shown) {
  outline: 0;
}
.newsletter .newsletter-form-container .newsletter-submit {
  position: absolute;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  border: 0;
  right: 0;
  top: 35%;
  transform: translate(0, -50%);
  padding: 12px 0 20px 20px;
  border-radius: 100px;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.newsletter .newsletter-form-container .newsletter-submit img {
  width: 30px;
  margin-left: 60px;
}
.newsletter .newsletter-form-container .newsletter-submit:hover {
  background-color: transparent;
  color: #ffffffc7;
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.75;
}
.newsletter .newsletter-form-container .newsletter-submit .newsletter-submit.newsletter-submit-done {
  opacity: 0;
  transform: translate(-125%, -50%);
  transition: all 0.25s ease-out;
}
.newsletter .newsletter-form-container .newsletter-submit .newsletter-submit.newsletter-submit-done-error {
  opacity: 0;
  transform: translate(-125%, -50%);
  transition: all 0.25s ease-out;
}
.newsletter .contact-checkbox-container {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.newsletter .contact-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.newsletter .contact-checkbox-container input:checked ~ .contact-checkmark {
  background-color: none;
}
.newsletter .contact-checkbox-container input:checked ~ .contact-checkmark:after {
  display: block;
}
.newsletter .contact-checkbox-container p {
  margin-left: 30px;
  font-style: italic;
  font-size: 16px;
}
.newsletter .contact-checkmark {
  position: absolute;
  display: flex;
  justify-content: center;
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 1px solid #fff;
}
.newsletter .contact-checkmark:after {
  content: "";
  display: none;
}
.newsletter .contact-checkbox-container .contact-checkmark:after {
  width: 6px;
  height: 11px;
  margin-top: 2px;
  border: solid #ed312d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.newsletter input:-webkit-autofill,
.newsletter input:-webkit-autofill:hover,
.newsletter input:-webkit-autofill:focus,
.newsletter textarea:-webkit-autofill,
.newsletter textarea:-webkit-autofill:hover,
.newsletter textarea:-webkit-autofill:focus,
.newsletter select:-webkit-autofill,
.newsletter select:-webkit-autofill:hover,
.newsletter select:-webkit-autofill:focus {
  border-bottom: 1px solid #ed312d;
  -webkit-text-fill-color: #000;
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #000 !important;
}
.newsletter .newsletter-description {
  margin-top: 120px;
}

@media only screen and (max-width: 991px) {
  .newsletter {
    padding: 60px 8.333333333vw;
  }
  .newsletter h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .newsletter p {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .newsletter .newsletter-form-container .newsletter-submit {
    font-size: 18px;
  }
  .newsletter .newsletter-form-container .newsletter-submit img {
    width: 22px;
    margin-left: 15px;
  }
  .newsletter .newsletter-form-container .newsletter-submit:hover {
    transition: 0.5s;
    opacity: 0.75;
  }
  .newsletter .contact-checkbox-container p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  .newsletter {
    padding: 60px 15px 90px 15px;
  }
  .newsletter h2 {
    font-size: 30px;
    margin-bottom: 15px;
    width: 70%;
  }
  .newsletter p {
    font-size: 19px;
    margin-bottom: 40px;
  }
  .newsletter .newsletter-form-container .newsletter-input {
    font-size: 13px;
  }
  .newsletter .newsletter-form-container .newsletter-submit {
    font-size: 13px;
    padding: 12px 0 0px 20px;
  }
  .newsletter .newsletter-form-container .newsletter-submit img {
    width: 19px;
    margin-left: 15px;
  }
  .newsletter .newsletter-form-container .newsletter-submit:hover {
    transition: 0.5s;
    opacity: 0.75;
  }
  .newsletter .contact-checkbox-container p {
    font-size: 12px;
  }
}
#promoModalSport .modal-dialog {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: unset;
}
#promoModalSport .modal-dialog .modal-content {
  width: 33vw;
}
#promoModalSport .modal-dialog .modal-content .modal-body {
  background: #ECEADE;
  padding: 90px;
  position: relative;
}
#promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 35px;
  right: 50px;
}
#promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose img {
  width: 30px;
  aspect-ratio: 1;
}
#promoModalSport .modal-dialog .modal-content .modal-body h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 38px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text {
  padding: 14px 20px;
}
#promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text span {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  #promoModalSport .modal-dialog .modal-content {
    width: calc(9 * 8.3333vw);
  }
  #promoModalSport .modal-dialog .modal-content .modal-body {
    padding: 60px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose {
    top: 20px;
    right: 35px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body #promoModalClose img {
    width: 30px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 50px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text {
    padding: 14px 20px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container .cta-text span {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  #promoModalSport .modal-dialog .modal-content .modal-body h2 {
    font-size: 20px;
    line-height: 20px;
  }
  #promoModalSport .modal-dialog .modal-content .modal-body .cta-container {
    transform: unset;
  }
}
.gallery-swiper {
  width: 100%;
}
.gallery-swiper .overlay {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(360deg, #ECEADEFF 0.04%, #ECEADEFF 23.95%, #ECEADE00 55.22%);
}
.gallery-swiper .overlay::after {
  content: "";
  width: 100%;
  height: 355px;
  position: absolute;
  background-image: url("/assets/img/Sport/svg/waves.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: 20%;
}
.gallery-swiper .swiper-slide {
  position: relative;
}
.gallery-swiper .swiper-slide .image {
  z-index: 1;
  position: relative;
}
.gallery-swiper .swiper-slide .image img {
  height: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-swiper .swiper-slide .text {
  bottom: 0;
  position: absolute;
  z-index: 3;
}
.gallery-swiper .swiper-slide .text .text-container {
  width: calc(8.3333% * 4);
  color: #002022;
  margin-left: 8.333%;
}
.gallery-swiper .swiper-slide .text .text-container .title {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 25px;
}
.gallery-swiper .swiper-slide .text .text-container .description {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 25px;
}

.boat-section {
  padding-top: 4.15%;
  padding-bottom: 4.15%;
}

#nav-boat-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  padding-bottom: 4.15%;
}
#nav-boat-tab button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #02285d50;
  border: unset;
  font-weight: 900;
  font-size: 26px;
  text-transform: capitalize;
  padding: 1% 5%;
  transition: all 0.35s ease-in-out;
}
#nav-boat-tab button.active {
  color: #002022;
}
#nav-boat-tab button.gto {
  background-color: #1E1E1E;
}
#nav-boat-tab button.gt {
  background-color: #e9e7e7;
}

.boat-swiper .swiper-wrapper {
  height: auto;
}

.sport-boat-slide {
  height: initial;
  color: #002022;
}
.sport-boat-slide .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sport-boat-slide .text-container .title {
  font-weight: 700;
  font-size: 60px;
  width: 100%;
}
.sport-boat-slide .text-container .description {
  font-weight: 400;
  font-size: 24px;
  width: 100%;
}
.sport-boat-slide .cta-col {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sport-boat-slide .cta-col .cta-container {
  width: 50%;
}

.swiper-boat-navigation {
  position: absolute;
  right: 2%;
  top: 50%;
  z-index: 1000;
  pointer-events: none;
  transform: translateY(-50%);
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper-boat-navigation img {
  pointer-events: all;
  width: 70px;
  height: 70px;
  padding: 20px;
}
.swiper-boat-navigation img.gto {
  background-color: #1E1E1E;
}
.swiper-boat-navigation img.gt {
  background-color: #e9e7e7;
}

@media only screen and (max-width: 991px) {
  .gallery-swiper .overlay::after {
    bottom: 30%;
  }
  .gallery-swiper .swiper-slide .image {
    height: inherit;
  }
  .gallery-swiper .swiper-slide .text {
    margin-top: 0%;
    position: relative;
    transform: translateY(-100%);
  }
  .gallery-swiper .swiper-slide .text .text-container {
    width: calc(8.3333% * 6);
  }
  .gallery-swiper .swiper-slide .text .text-container .title {
    font-size: 48px;
  }
  .gallery-swiper .swiper-slide .text .text-container .description {
    font-size: 14px;
  }

  #nav-boat-tab button {
    font-size: 16px;
  }

  .sport-boat-slide .text-container {
    text-align: center;
  }
  .sport-boat-slide .text-container .title {
    font-size: 48px;
  }
  .sport-boat-slide .text-container .description {
    font-size: 14px;
    line-height: 25px;
  }
  .sport-boat-slide .cta-col {
    width: 100%;
    margin-top: 25px;
  }
  .sport-boat-slide .cta-col .cta-container {
    width: 50%;
  }

  .swiper-boat-navigation img {
    pointer-events: all;
    width: 30px;
    height: 30px;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .quote-row.granturismo .description {
    margin-bottom: 25%;
  }
}
@media only screen and (max-width: 575px) {
  .gallery-swiper .overlay::after {
    height: 150px;
  }
  .gallery-swiper .swiper-slide .text .text-container {
    width: calc(8.3333% * 8);
    margin-left: 15px;
  }
  .gallery-swiper .swiper-slide .text .text-container .title {
    font-size: 30px;
  }
  .gallery-swiper .swiper-slide .text .text-container .description {
    font-size: 15px;
    line-height: 1.35;
  }

  #nav-boat-tab button {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sport-boat-slide .text-container {
    padding-bottom: 110px;
  }
  .sport-boat-slide .text-container .title {
    font-size: 22px;
  }
  .sport-boat-slide .text-container .description {
    font-size: 15px;
    line-height: 1.35;
  }
  .sport-boat-slide .cta-col {
    width: 70%;
    margin-left: 15%;
    margin-top: 25px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    bottom: 0;
  }
  .sport-boat-slide .cta-col .cta-container {
    width: 100%;
  }
  .sport-boat-slide .cta-col .cta-container .cta-text {
    height: 40px;
  }

  .swiper-boat-navigation {
    bottom: calc(0% - 20px);
    top: unset;
  }
  .swiper-boat-navigation img {
    pointer-events: all;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin-bottom: 4px;
  }
}
#dealersTabContainer {
  background-color: #ECEADE;
}
#dealersTabContainer #dealerTitle {
  color: #002022;
}
#dealersTabContainer nav .nav-tabs {
  padding-bottom: 25px;
  padding-left: 0px;
  text-align: left;
  border-bottom: 1px solid #1E1E1E !important;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
}
#dealersTabContainer nav .nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  color: #002022;
  font-weight: 400;
  font-size: 20px;
  min-width: 5%;
}
#dealersTabContainer nav .nav-tabs .nav-link.active {
  color: #0020226d;
  font-weight: 700;
}
#dealersTabContainer .tab-row {
  padding: 70px 0px;
}
#dealersTabContainer .tab-row .dealer-row {
  border-bottom: 1px solid #1E1E1E;
  color: #002022;
  padding-left: 50px;
  cursor: pointer;
}
#dealersTabContainer .tab-row .dealer-row .dealer-name {
  padding: 15px 0;
}
#dealersTabContainer .tab-row .dealer-row .dealer-name p {
  padding-left: 5px;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 0;
}
#dealersTabContainer .tab-row .dealer-row .dealer-city {
  padding: 15px 0;
}
#dealersTabContainer .tab-row .dealer-row .dealer-city p {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 0;
}
#dealersTabContainer .tab-row .dealer-row:hover {
  color: #0020226d;
}
#dealersTabContainer .container-end {
  border-bottom: 1px solid #1E1E1E;
  padding: 70px 0px;
}

#divContactUs select {
  height: 30px !important;
}

#formContactUs {
  margin-top: 100px;
}
#formContactUs input,
#formContactUs .form-control,
#formContactUs .checkmark {
  border-bottom: 1px solid #1E1E1E;
  background-color: #ECEADE;
  color: #002022;
  border-color: #1E1E1E;
}
#formContactUs .custom-checkbox-container {
  color: #002022;
}
#formContactUs #grey-band {
  background-color: unset;
}

.selectspacing {
  padding: 0;
  line-height: 1;
}

#contactFormContainer {
  background-color: #ECEADE;
  color: #fff !important;
}
#contactFormContainer #contactTitle {
  color: #002022 !important;
  font-weight: 700;
  font-size: 100px;
}
#contactFormContainer .form-label-group label {
  position: absolute;
  height: 30px;
  top: 0;
  left: 15px;
  font-size: 18px;
  line-height: 30px;
  transform: translateY(0);
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: #002022;
}
#contactFormContainer .form-label-group input,
#contactFormContainer .form-label-group select,
#contactFormContainer .form-label-group textarea {
  height: 30px;
  max-height: 195px;
  overflow: hidden;
  background-color: none;
  border: none;
  border-bottom: 1px solid #1E1E1E;
  color: #002022;
}
#contactFormContainer .form-label-group input:not(:-moz-placeholder-shown), #contactFormContainer .form-label-group select:not(:-moz-placeholder-shown), #contactFormContainer .form-label-group textarea:not(:-moz-placeholder-shown) {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  color: #002022;
  border-bottom: 1px solid #1E1E1E;
}
#contactFormContainer .form-label-group input:not(:-ms-input-placeholder), #contactFormContainer .form-label-group select:not(:-ms-input-placeholder), #contactFormContainer .form-label-group textarea:not(:-ms-input-placeholder) {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  color: #002022;
  border-bottom: 1px solid #1E1E1E;
}
#contactFormContainer .form-label-group input:focus, #contactFormContainer .form-label-group input:not(:placeholder-shown), #contactFormContainer .form-label-group input.not-empty,
#contactFormContainer .form-label-group select:focus,
#contactFormContainer .form-label-group select:not(:placeholder-shown),
#contactFormContainer .form-label-group select.not-empty,
#contactFormContainer .form-label-group textarea:focus,
#contactFormContainer .form-label-group textarea:not(:placeholder-shown),
#contactFormContainer .form-label-group textarea.not-empty {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  color: #002022;
  border-bottom: 1px solid #1E1E1E;
}
#contactFormContainer .form-label-group input:not(:-moz-placeholder-shown) + label, #contactFormContainer .form-label-group select:not(:-moz-placeholder-shown) + label, #contactFormContainer .form-label-group textarea:not(:-moz-placeholder-shown) + label {
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer .form-label-group input:not(:-ms-input-placeholder) + label, #contactFormContainer .form-label-group select:not(:-ms-input-placeholder) + label, #contactFormContainer .form-label-group textarea:not(:-ms-input-placeholder) + label {
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer .form-label-group input:focus + label, #contactFormContainer .form-label-group input:not(:placeholder-shown) + label, #contactFormContainer .form-label-group input.not-empty + label,
#contactFormContainer .form-label-group select:focus + label,
#contactFormContainer .form-label-group select:not(:placeholder-shown) + label,
#contactFormContainer .form-label-group select.not-empty + label,
#contactFormContainer .form-label-group textarea:focus + label,
#contactFormContainer .form-label-group textarea:not(:placeholder-shown) + label,
#contactFormContainer .form-label-group textarea.not-empty + label {
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer .form-label-group textarea:hover, #contactFormContainer .form-label-group textarea:focus {
  border-bottom: 1px solid #1E1E1E !important;
}
#contactFormContainer input {
  background-color: transparent;
  color: #002022;
  border: none;
  height: 36.5px;
  border-bottom: 1px solid #1E1E1E;
  font-size: 30px;
  font-weight: 400px;
}
#contactFormContainer select {
  font-size: 18px;
  height: 36.5px;
  border: none;
  border-bottom: 1px solid #1E1E1E;
  outline: none;
  border-radius: 0;
  padding: 0;
  -webkit-appearance: none;
}
#contactFormContainer select:focus {
  box-shadow: none;
}
#contactFormContainer textarea:not(:-moz-placeholder-shown) {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
#contactFormContainer textarea:not(:-ms-input-placeholder) {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
#contactFormContainer textarea:focus, #contactFormContainer textarea:not(:placeholder-shown), #contactFormContainer textarea.not-empty {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
#contactFormContainer textarea:not(:-moz-placeholder-shown) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer textarea:not(:-ms-input-placeholder) + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer textarea:focus + label, #contactFormContainer textarea:not(:placeholder-shown) + label, #contactFormContainer textarea.not-empty + label {
  /* color: rgba(0,0,0,.65); */
  transform: translateY(-22px) scale(0.8);
}
#contactFormContainer .form-checkbox {
  margin-left: 15px;
  /* Create a custom checkbox */
}
#contactFormContainer .form-checkbox label {
  color: #002022;
}
#contactFormContainer .form-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #1E1E1E;
  cursor: pointer;
}
#contactFormContainer .form-checkbox .checkmark.checkmark-invert-colors {
  background-color: #000;
  border: 1px solid #fff;
}
#contactFormContainer button {
  width: 613px;
  height: 107px;
  background: #1E1E1E;
  border: 2px solid #1E1E1E;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  text-align: left;
  padding-left: 86px;
}
#contactFormContainer .arowButtonForm {
  width: 36px;
  position: absolute;
  left: calc(100% - 8.333vw * 4 + 60px);
}

.select2-container--default .select2-selection--single {
  border: none !important;
  border-bottom: 1px solid #1E1E1E !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13 !important;
}

.select2-dropdown {
  border: none !important;
  background: transparent !important;
}

.select2-search--dropdown {
  padding: 0 !important;
}

.select2-results {
  border: 1px solid #1E1E1E !important;
  background-color: #1E1E1E !important;
  border-radius: 0px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none !important;
  display: none;
}

.select2-results__options {
  padding: 10px 25px !important;
  font-weight: 400;
  color: #002022;
}

.select2-container--default .select2-results__option--selected {
  background-color: transparent !important;
  color: #002022 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent !important;
  color: #002022 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
  font-weight: bold;
  color: #002022;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("/assets/img/svg/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  transition: 0.5s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none !important;
}

.rotateArrow {
  transform: rotate(180deg) !important;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none !important;
}

@media only screen and (max-width: 1440px) {
  #dealersTabContainer #nav-tab .nav-link {
    min-width: 20%;
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  #dealersTabContainer #nav-tab .nav-link {
    min-width: 20%;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #dealerTitle {
    font-size: 25px;
    padding-left: 15px;
  }

  #dealersTabContainer nav {
    padding: 0 15px;
  }
  #dealersTabContainer nav .nav-tabs .nav-link {
    min-width: 15%;
    font-size: 20px;
  }
  #dealersTabContainer .tab-row {
    padding: 45px 10px;
    padding-left: 0;
  }
  #dealersTabContainer .tab-row .dealer-row {
    padding-left: 0;
  }
  #dealersTabContainer .tab-row .dealer-row .dealer-name p {
    font-weight: 400;
    font-size: 12px;
  }
  #dealersTabContainer .tab-row .dealer-row .dealer-city p {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0;
  }
  #dealersTabContainer .container-end {
    border-bottom: 1px solid #1E1E1E;
    padding: 25px 0px;
  }

  .custom-checkbox-container .checkmark::after {
    left: 3px;
    top: -1px;
    border-width: 0px 2px 2px 0px;
  }

  #formContactUs {
    margin-top: 50px;
  }

  .form-group-el {
    padding-left: 0px;
  }

  #contactFormContainer #contactTitle {
    padding-top: 35px;
    font-size: 39px;
  }
  #contactFormContainer .form-label-group label {
    font-size: 13px;
    left: 0;
  }
  #contactFormContainer .form-checkbox label {
    font-size: 15px;
  }
  #contactFormContainer .form-checkbox .checkmark {
    width: 14px;
    height: 14px;
  }
  #contactFormContainer button {
    width: 268px;
    max-height: 56px;
    font-size: 20px;
    padding-left: 23px;
    font-weight: 700;
  }
  #contactFormContainer select,
#contactFormContainer textarea {
    font-size: 13px;
  }
  #contactFormContainer input {
    font-size: 18px;
  }
  #contactFormContainer input[type=checkbox] {
    height: 14px;
  }
  #contactFormContainer .arowButtonForm {
    width: 29px;
    position: absolute;
    left: calc(100% - 8.333vw * 4 + 28px);
  }
}
@media only screen and (max-width: 575px) {
  #dealersTabContainer #dealerTitle {
    margin-left: 15px;
  }
  #dealersTabContainer .tab-content {
    padding: 15px;
  }

  #contactFormContainer input {
    font-size: 15px;
  }
}
@media only screen and (max-width: 376px) {
  #dealersTabContainer #dealerTitle {
    font-size: 20px;
    margin-left: 15px;
  }
  #dealersTabContainer #nav-tab {
    flex-wrap: wrap;
  }
  #dealersTabContainer #nav-tab .nav-link {
    font-size: 15px;
  }
  #dealersTabContainer .tab-content {
    padding: 0 15px;
  }
  #dealersTabContainer .tab-row {
    padding: 40px 0px;
  }

  .form-group-el {
    padding-right: 0px;
  }

  .custom-checkbox-container .checkmark:after {
    left: 3px;
    top: 0px;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0;
  }
  .custom-checkbox-container .checkmark.checkmark-invert-colors:after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
  }

  #contactFormContainer #contactTitle {
    font-size: 30px;
  }
  #contactFormContainer .form-label-group label {
    font-size: 13px;
  }
  #contactFormContainer .form-checkbox {
    /* Create a custom checkbox */
  }
  #contactFormContainer .form-checkbox label {
    font-size: 13px;
  }
  #contactFormContainer .form-checkbox .checkmark.checkmark-invert-colors {
    background-color: #000;
    border: 1px solid #fff;
  }
  #contactFormContainer button {
    width: 192px;
    height: 42px;
    font-size: 10px;
    font-weight: 700;
    padding-left: 12px;
  }
  #contactFormContainer select,
#contactFormContainer textarea {
    font-size: 13px;
  }
  #contactFormContainer .checkmark {
    width: 14px;
    height: 14px;
  }
  #contactFormContainer input[type=checkbox] {
    height: 14px;
  }
  #contactFormContainer .arowButtonForm {
    width: 27px;
    position: absolute;
    left: calc(100% - 8.333vw * 4 - 15px);
  }
}
.waves-bg {
  position: relative;
  margin-top: -35%;
  padding-top: 30%;
  background: linear-gradient(359.67deg, #011839 0.22%, #021a3c 74.63%, #03295e00 99.64%);
}
.waves-bg::after {
  content: "";
  width: 100%;
  height: 355px;
  position: absolute;
  background-image: url("/assets/img/Sport/svg/waves.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 15%;
}

.value-text-section {
  padding-top: 10%;
  color: #fff;
}
.value-text-section .title {
  font-weight: 700;
  font-size: 100px;
  margin-bottom: 25px;
}
.value-text-section .description {
  font-size: 20px;
  line-height: 30px;
}

.value-image-section {
  padding-top: 10%;
}
.value-image-section img {
  height: 115%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

.value-full-section img {
  height: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1200px) {
  .value-image-section {
    padding-top: 15%;
  }

  .value-text-section {
    padding-top: 15%;
  }

  .waves-bg::after {
    height: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .waves-bg {
    margin-top: -40%;
    padding-top: 40%;
    background: linear-gradient(359.67deg, #011839 0.22%, #021a3c 79.63%, #03295e00 99.64%);
  }
  .waves-bg::after {
    height: 200px;
    top: 15%;
  }

  .value-text-section {
    padding-top: 24%;
    padding-bottom: 20%;
  }
  .value-text-section .title {
    font-size: 47px;
  }
  .value-text-section .description {
    font-size: 14px;
    line-height: 25px;
  }

  .value-image-section {
    padding-top: calc(15% + (47 * 2) * 1.15px + 25px);
    padding-bottom: 20%;
    margin-left: 15px;
  }
  .value-image-section img {
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .waves-bg {
    margin-top: -65%;
    padding-top: 35%;
    background: linear-gradient(359.67deg, #011839 0.22%, #021a3c 85%, #03295e00 99.64%);
  }
  .waves-bg::after {
    top: 5%;
  }

  .value-text-section {
    padding-bottom: 0;
  }
  .value-text-section .title {
    font-size: 40px;
  }
  .value-text-section .description {
    font-size: 12px;
    line-height: 20px;
  }

  .value-image-section {
    padding-top: 15%;
    padding-bottom: 0px;
    margin-left: 15px;
    margin-bottom: -10%;
  }
}
@media only screen and (max-width: 376px) {
  .value-image-section {
    padding: 5% 5%;
    margin: 0 8%;
  }
}
.form-label-group label {
  position: absolute;
  height: 30px;
  top: 24px;
  left: 15px;
  font-size: 30px;
  line-height: 30px;
  transform: translateY(0);
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form-label-group input,
.form-label-group select,
.form-label-group textarea {
  height: 33px;
  max-height: 195px;
  overflow: hidden;
  background-color: none;
  border-bottom: 1px solid #1E1E1E;
}
.form-label-group input:not(:-moz-placeholder-shown), .form-label-group select:not(:-moz-placeholder-shown), .form-label-group textarea:not(:-moz-placeholder-shown) {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  border-bottom: 1px solid #1E1E1E !important;
}
.form-label-group input:not(:-ms-input-placeholder), .form-label-group select:not(:-ms-input-placeholder), .form-label-group textarea:not(:-ms-input-placeholder) {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  border-bottom: 1px solid #1E1E1E !important;
}
.form-label-group input:focus, .form-label-group input:not(:placeholder-shown), .form-label-group input.not-empty,
.form-label-group select:focus,
.form-label-group select:not(:placeholder-shown),
.form-label-group select.not-empty,
.form-label-group textarea:focus,
.form-label-group textarea:not(:placeholder-shown),
.form-label-group textarea.not-empty {
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
  border-bottom: 1px solid #1E1E1E !important;
}
.form-label-group input,
.form-label-group textarea,
.form-label-group select {
  font-size: 30px;
}
.form-label-group input:focus:not(:-moz-placeholder-shown) + label, .form-label-group textarea:focus:not(:-moz-placeholder-shown) + label, .form-label-group select:focus:not(:-moz-placeholder-shown) + label {
  transform: translateY(-44px) scale(0.5);
}
.form-label-group input:focus:not(:-ms-input-placeholder) + label, .form-label-group textarea:focus:not(:-ms-input-placeholder) + label, .form-label-group select:focus:not(:-ms-input-placeholder) + label {
  transform: translateY(-44px) scale(0.5);
}
.form-label-group input:focus:not(:placeholder-shown) + label, .form-label-group input.not-empty + label,
.form-label-group textarea:focus:not(:placeholder-shown) + label,
.form-label-group textarea.not-empty + label,
.form-label-group select:focus:not(:placeholder-shown) + label,
.form-label-group select.not-empty + label {
  transform: translateY(-44px) scale(0.5);
}
.form-label-group select option.label {
  font-size: 30px;
  line-height: 30px;
}

.checkmark {
  border: 1px solid #1E1E1E;
}

.steps-container .step-indicator {
  display: flex;
  align-items: center;
  padding: 0 40px;
  max-width: 304.5px;
  width: 304.5px;
}
.steps-container .step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.steps-container .step-indicator .step-icon {
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #1E1E1E;
  background: transparent;
  color: #002022;
  font-weight: 700;
  font-size: 30px;
}
.steps-container .step.active .step-icon {
  background: #1E1E1E;
  color: #fff;
}
.steps-container .indicator-line {
  width: 100%;
  height: 2px;
  background: #c2c2c2;
  flex: 1;
}
.steps-container .indicator-line.active {
  background: #1E1E1E;
}

.marshall-slider #slider {
  height: 26px;
  border: 0;
  transform: translateY(13px);
  z-index: 1;
  background: transparent;
}
.marshall-slider #slider::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  height: 24px;
  width: 100%;
  background: #d8d8d8;
}
.marshall-slider #slider .ui-slider-handle {
  margin-left: -86px;
  width: 169px;
  height: 97px;
  background-color: #1E1E1E;
  top: 40px;
  border: 0;
  border-radius: 0;
  cursor: -webkit-grab;
  cursor: grab;
  outline: 0;
  transform: translateY(15px);
}
.marshall-slider #slider .ui-slider-handle::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -20px;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 25px solid #1E1E1E;
}
.marshall-slider #slider .ui-slider-handle .flyer-handle-data {
  font-family: "Metropolis";
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: #002022;
}
.marshall-slider #slider #spanText {
  position: relative;
}
.marshall-slider #slider-black-bar {
  position: absolute;
  left: 0;
  top: -3px;
  height: 24px;
  background-color: #ECEADE;
  transform: translateY(15px);
  z-index: 6;
}

#step-1 .text-after-form h2 {
  font-weight: 400;
  font-size: 50px;
}
#step-1 .text-after-form p {
  font-weight: 400;
  font-size: 30px;
}

#step-2 .text-before-form p {
  font-weight: 400;
  font-size: 35px;
  line-height: 55px;
  margin-bottom: 6rem;
}

.wizard-btn {
  width: 613px;
  height: 107px;
  position: absolute !important;
  bottom: 0;
  right: 0;
}

.slider-row {
  margin-top: 50px;
  margin-bottom: 170px;
}

#go-to-step-2 {
  margin-top: 120px;
  margin-bottom: 70px;
}

#submit-form {
  margin-top: 20px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .steps-container .step-indicator {
    padding: 0;
    max-width: 255.74px;
    width: 255.74px;
  }
  .steps-container .step-indicator .step-icon {
    height: 50px;
    width: 50px;
    font-size: 25px;
  }

  .form-label-group label,
.form-label-group input,
.form-label-group select,
.form-label-group textarea {
    font-size: 16px;
  }
  .form-label-group label:focus:not(:-moz-placeholder-shown) + label, .form-label-group input:focus:not(:-moz-placeholder-shown) + label, .form-label-group select:focus:not(:-moz-placeholder-shown) + label, .form-label-group textarea:focus:not(:-moz-placeholder-shown) + label {
    transform: translateY(-44px) scale(0.7);
  }
  .form-label-group label:focus:not(:-ms-input-placeholder) + label, .form-label-group input:focus:not(:-ms-input-placeholder) + label, .form-label-group select:focus:not(:-ms-input-placeholder) + label, .form-label-group textarea:focus:not(:-ms-input-placeholder) + label {
    transform: translateY(-44px) scale(0.7);
  }
  .form-label-group label:focus:not(:placeholder-shown) + label, .form-label-group label.not-empty + label,
.form-label-group input:focus:not(:placeholder-shown) + label,
.form-label-group input.not-empty + label,
.form-label-group select:focus:not(:placeholder-shown) + label,
.form-label-group select.not-empty + label,
.form-label-group textarea:focus:not(:placeholder-shown) + label,
.form-label-group textarea.not-empty + label {
    transform: translateY(-44px) scale(0.7);
  }

  .checkmark {
    width: 14px;
    height: 14px;
    top: 6px;
  }

  #step-1 .text-after-form h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #step-1 .text-after-form p {
    font-size: 20px;
  }

  #step-2 .text-before-form p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 4rem;
  }

  .marshall-slider #slider {
    height: 15px;
    transform: translateY(13px);
  }
  .marshall-slider #slider::after {
    height: 15px;
  }
  .marshall-slider #slider .ui-slider-handle {
    margin-left: -62px;
    width: 119.65px;
    height: 68.67px;
    top: 28px;
  }
  .marshall-slider #slider .ui-slider-handle::before {
    top: -17px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 22px solid #1E1E1E;
  }
  .marshall-slider #slider .ui-slider-handle .flyer-handle-data {
    font-size: 30px;
  }
  .marshall-slider #slider-black-bar {
    top: -3px;
    height: 15px;
  }
  .marshall-slider #go-to-step-2 {
    margin-top: 150px;
  }

  .mobile-algn {
    margin: 0 !important;
  }

  #submit-form {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #submit-form .wizard-submit-btn {
    width: 268px;
    height: 56px;
  }
  #submit-form .wizard-submit-btn .cta-text {
    font-size: 17px;
    font-weight: 700;
  }

  .wizard-btn {
    width: 268px;
    height: 56px;
  }
  .wizard-btn .cta-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .steps-container .step-indicator {
    max-width: 108px;
    width: 108px;
  }
  .steps-container .step-indicator .step-icon {
    height: 27px;
    width: 27px;
    font-size: 15px;
  }

  .flyer-slider #slider::after {
    height: 35px;
  }
  .flyer-slider #slider .ui-slider-handle {
    margin-left: -30px;
    height: 76px !important;
    width: 57px;
    top: -3px !important;
    border-radius: 16px;
  }
  .flyer-slider #slider .ui-slider-handle .flyer-handle-data {
    font-size: 15px;
  }
  .flyer-slider #slider-black-bar {
    top: -3px;
    height: 35px;
  }
  .flyer-slider #go-to-step-2 {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 376px) {
  .steps-container .step-indicator {
    max-width: 108px;
    width: 108px;
  }
  .steps-container .step-indicator .step-icon {
    height: 27px;
    width: 27px;
    font-size: 15px;
  }

  .form-label-group label {
    font-size: 13px;
  }

  .custom-checkbox-container {
    padding-top: 0;
    font-size: 13px;
  }

  .checkmark {
    width: 14px;
    height: 14px;
    top: 0;
  }

  .marshall-slider #slider::after {
    height: 35px;
  }
  .marshall-slider #slider .ui-slider-handle {
    margin-left: -29.5px;
    height: 61px;
    width: 57px;
    top: 48px;
  }
  .marshall-slider #slider .ui-slider-handle .flyer-handle-data {
    font-size: 15px;
  }
  .marshall-slider #slider-black-bar {
    top: -3px;
    height: 35px;
  }
  .marshall-slider #go-to-step-2 {
    margin-top: 150px;
  }

  .steps-container .step-indicator .step-icon {
    height: 27px;
    width: 27px;
    font-size: 15px;
  }

  #step-1 .text-after-form h2 {
    font-size: 30px;
  }
  #step-1 .text-after-form p {
    font-size: 15px;
  }

  #step-2 .text-before-form p {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 4rem;
  }

  .wizard-btn {
    width: 192px;
    height: 42px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #go-to-step-2 {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #submit-form .wizard-submit-btn {
    width: 192px;
    height: 42px;
    font-size: 10px;
    padding: 10px;
  }
}
.single-boat-main-overlay.gto::after {
  background: linear-gradient(0deg, #ECEADE 0.11%, #ECEADE 31.45%, rgba(236, 234, 222, 0) 62.81%);
}
.single-boat-main-overlay.gt::after {
  background: rgba(0, 0, 0, 0.4);
}

.single-boat-sport-gradient {
  height: 500px;
  margin-top: -300px;
  color: #002022;
}
.single-boat-sport-gradient.gto {
  background: #ECEADE;
}
.single-boat-sport-gradient.gt {
  background: linear-gradient(0deg, black 46%, rgba(0, 0, 0, 0.554) 79%, rgba(1, 38, 91, 0) 97%);
}
.single-boat-sport-gradient.first-img-descr {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 90px;
  padding-left: 8.66666666%;
  padding-right: 8.66666666%;
}
.single-boat-sport-gradient.first-img-descr h1 {
  font-size: 76px;
  font-weight: 700;
}
.single-boat-sport-gradient.first-img-descr p {
  font-size: 24px;
}
.single-boat-sport-gradient .btns-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: 50%;
}
.single-boat-sport-gradient .btns-container .cta-container .cta-text {
  height: 100%;
}
.single-boat-sport-gradient.second-img-descr {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 90px;
  padding-left: 8.33333333vw;
  background: linear-gradient(0deg, #ECEADE 0.94%, #ECEADE 41.18%, rgba(236, 234, 222, 0) 73.63%);
}
.single-boat-sport-gradient.second-img-descr h2 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  max-width: 75vw;
}
.single-boat-sport-gradient.second-img-descr p {
  font-size: 24px;
  max-width: 41.666666666vw;
  line-height: 1.2;
}

.single-boat-top-specs {
  padding: 60px 8.333333333vw;
  color: #fff;
}
.single-boat-top-specs.gto {
  background-color: #1E1E1E;
}
.single-boat-top-specs.gt {
  background-color: #e9e7e7;
}
.single-boat-top-specs .top-specs-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.single-boat-top-specs .top-specs-container h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.single-boat-top-specs .top-specs-container p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.single-boat-second-image {
  position: relative;
}
.single-boat-second-image img {
  width: 100%;
}
.single-boat-second-image .single-boat-second-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ECEADE 0.94%, #ECEADE 1.18%, rgba(236, 234, 222, 0) 73.63%);
}
.single-boat-second-image .single-boat-sport-gradient {
  margin-top: -400px;
}

.single-boat-schema {
  padding: 150px 0;
}
.single-boat-schema .boat-schema-detail {
  overflow: hidden;
  padding: 50px 70px 30px;
  width: 100%;
}
.single-boat-schema .boat-schema-detail.gto {
  background-color: #1E1E1E;
  color: #fff;
}
.single-boat-schema .boat-schema-detail.gt {
  background-color: #e9e7e7;
}
.single-boat-schema .boat-schema-detail h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.single-boat-schema .boat-schema-detail p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.single-boat-schema .boat-schema-detail .sport-equipments-swiper {
  overflow: hidden;
  padding-bottom: 20px;
}
.single-boat-schema .boat-schema-detail .sport-equipments-swiper .swiper-slide p {
  font-size: 15px;
  margin-bottom: 7px;
}
.single-boat-schema .boat-schema-detail .cta-container.granturismo.yellow .cta-text,
.single-boat-schema .boat-schema-detail .cta-container.granturismo.grey .cta-text {
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 0;
  border-top: 1px solid #000;
  font-size: 26px;
}
.single-boat-schema .boat-schema-detail .cta-container.granturismo.yellow .cta-text:hover,
.single-boat-schema .boat-schema-detail .cta-container.granturismo.grey .cta-text:hover {
  background: transparent;
}
.single-boat-schema .boat-schema-download {
  display: flex;
  align-items: center;
  width: 70%;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 50px;
}
.single-boat-schema .boat-schema-download .download-btn {
  padding: 0px;
}
.single-boat-schema .boat-schema-download .download-btn.gto {
  background: #1E1E1E;
}
.single-boat-schema .boat-schema-download .download-btn.gt {
  background: #e9e7e7;
}
.single-boat-schema .boat-schema-download .download-btn img {
  height: 70px;
  width: auto;
}
.single-boat-schema .boat-schema-download p {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}
.single-boat-schema .boat-schema-img {
  width: 100%;
  height: 100%;
  padding-top: 100px;
}
.single-boat-schema .boat-schema-img img {
  width: 100%;
  filter: drop-shadow(4px 5px 5px #14141458);
}
.single-boat-schema .boat-schema-alert h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.single-boat-schema .boat-schema-alert p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}
.single-boat-schema .boat-schema-alert h3 {
  font-size: 30px;
  font-weight: 700;
  color: #002022;
  margin-bottom: 15px;
}

.gallery-boat-swiper {
  margin-top: 80px;
  position: relative;
}
.gallery-boat-swiper .swiper-wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.gallery-boat-swiper .swiper-slide {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.swiper-button-sport-next,
.swiper-button-sport-prev,
.swiper-button-related-next,
.swiper-button-related-prev,
.swiper-button-equipments-next,
.swiper-button-equipments-prev {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  padding: 20px;
}
.swiper-button-sport-next.gto,
.swiper-button-sport-prev.gto,
.swiper-button-related-next.gto,
.swiper-button-related-prev.gto,
.swiper-button-equipments-next.gto,
.swiper-button-equipments-prev.gto {
  background-color: #1E1E1E;
}
.swiper-button-sport-next.gt,
.swiper-button-sport-prev.gt,
.swiper-button-related-next.gt,
.swiper-button-related-prev.gt,
.swiper-button-equipments-next.gt,
.swiper-button-equipments-prev.gt {
  background-color: #e9e7e7;
}
.swiper-button-sport-next img,
.swiper-button-sport-prev img,
.swiper-button-related-next img,
.swiper-button-related-prev img,
.swiper-button-equipments-next img,
.swiper-button-equipments-prev img {
  height: 20px;
  width: auto;
}

.swiper-button-equipments-next,
.swiper-button-equipments-prev {
  position: relative;
}

.swiper-button-sport-next,
.swiper-button-related-next {
  top: 50%;
  right: 50px;
}

.swiper-button-sport-prev,
.swiper-button-related-prev {
  top: 50%;
  left: 50px;
}

.full-quote {
  padding: 180px 8.3333333vw;
}
.full-quote.gto {
  background: #1E1E1E;
  color: #fff;
}
.full-quote.gt {
  background-color: #e9e7e7;
}
.full-quote h2 {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
}

.related-boat-swiper.sport .swiper-slide .slide-model-container {
  opacity: 1;
}
.related-boat-swiper .swiper-slide {
  position: relative;
}
.related-boat-swiper .swiper-slide .slide-model-container {
  padding-left: 8.333333333vw;
  padding-top: 8.333333333vw;
  padding-right: 4vw;
  position: absolute;
  background: #fff;
  height: 100%;
  width: 33.33333333vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 45vh;
}
.related-boat-swiper .swiper-slide .slide-model-container h2 {
  font-size: 70px;
  font-weight: 700;
  color: #002022;
}
.related-boat-swiper .swiper-slide .slide-model-container p {
  font-size: 24px;
  font-weight: 400;
  color: #002022;
  margin-bottom: 30px;
}
.related-boat-swiper .swiper-slide .slide-image {
  width: 100%;
}

@media only screen and (max-width: 1399px) {
  .single-boat-sport-gradient.second-img-descr h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 75vw;
  }
}
@media only screen and (max-width: 1299px) {
  .single-boat-sport-gradient.second-img-descr h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 75vw;
  }
  .single-boat-sport-gradient.second-img-descr p {
    max-width: 60vw;
  }
}
@media only screen and (max-width: 991px) {
  .single-boat-sport-gradient {
    height: 500px;
    margin-top: -300px;
  }
  .single-boat-sport-gradient.gto {
    background: linear-gradient(0deg, #ECEADE 0.94%, #ECEADE 1.18%, rgba(236, 234, 222, 0) 73.63%);
    background: linear-gradient(0deg, #ECEADEFF 60%, #ECEADE8C 79%, #ECEADE00 97%);
  }
  .single-boat-sport-gradient.gt {
    background: linear-gradient(0deg, black 60%, rgba(0, 0, 0, 0.554) 79%, rgba(1, 38, 91, 0) 97%);
  }
  .single-boat-sport-gradient.first-img-descr {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .single-boat-sport-gradient.first-img-descr h1 {
    font-size: 55px;
  }
  .single-boat-sport-gradient.first-img-descr p {
    font-size: 20px;
    width: 66.66666666vw;
  }
  .single-boat-sport-gradient .btns-container {
    -moz-column-gap: 5px;
         column-gap: 5px;
    width: 83.333333333vw;
  }
  .single-boat-sport-gradient .btns-container .cta-container {
    width: 50%;
  }
  .single-boat-sport-gradient.second-img-descr {
    padding-bottom: 60px;
    padding-left: 8.33333333vw;
  }
  .single-boat-sport-gradient.second-img-descr h2 {
    font-size: 40px;
    margin-bottom: 25px;
    max-width: 45vw;
  }
  .single-boat-sport-gradient.second-img-descr p {
    font-size: 14px;
    max-width: 58.333333333vw;
    line-height: 1.5;
  }

  .single-boat-top-specs {
    padding: 40px 4vw;
  }
  .single-boat-top-specs .top-specs-container h3 {
    font-size: 14px;
  }
  .single-boat-top-specs .top-specs-container p {
    font-size: 14px;
  }

  .single-boat-schema {
    padding: 50px 0;
  }
  .single-boat-schema .boat-schema-detail {
    padding: 50px 8.33333333vw 30px;
    width: 100%;
    margin-bottom: 60px;
  }
  .single-boat-schema .boat-schema-detail.gto {
    background-color: #1E1E1E;
  }
  .single-boat-schema .boat-schema-detail.gt {
    background-color: #e9e7e7;
  }
  .single-boat-schema .boat-schema-detail h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail .sport-equipments-swiper {
    overflow: hidden;
    padding-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail .sport-equipments-swiper .swiper-slide p {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .single-boat-schema .boat-schema-detail .cta-container.granturismo.yellow .cta-text,
.single-boat-schema .boat-schema-detail .cta-container.granturismo.grey .cta-text {
    font-size: 16px;
    padding: 15px 30px;
  }
  .single-boat-schema .boat-schema-download {
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-download .download-btn {
    padding: 0px;
  }
  .single-boat-schema .boat-schema-download .download-btn img {
    height: 38px;
  }
  .single-boat-schema .boat-schema-download p {
    font-size: 20px;
  }
  .single-boat-schema .boat-schema-img {
    width: 100%;
    height: 100%;
    padding-top: 25px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-img img {
    width: 100%;
  }
  .single-boat-schema .boat-alert-tab {
    text-align: center;
  }
  .single-boat-schema .boat-alert-tab h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .single-boat-schema .boat-alert-tab p {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-alert {
    margin-bottom: 80px;
  }
  .single-boat-schema .boat-schema-alert h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .single-boat-schema .boat-schema-alert p {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-alert h3 {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: right;
  }

  .swiper-button-sport-next,
.swiper-button-sport-prev,
.swiper-button-related-next,
.swiper-button-related-prev,
.swiper-button-equipments-next,
.swiper-button-equipments-prev {
    padding: 10px;
  }
  .swiper-button-sport-next img,
.swiper-button-sport-prev img,
.swiper-button-related-next img,
.swiper-button-related-prev img,
.swiper-button-equipments-next img,
.swiper-button-equipments-prev img {
    height: 15px;
  }

  .full-quote {
    padding: 90px 8.3333333vw;
  }
  .full-quote h2 {
    font-size: 30px;
  }

  .related-boat-swiper .swiper-slide .slide-model-container {
    height: 100%;
    width: 41.66666666vw;
    min-height: auto;
  }
  .related-boat-swiper .swiper-slide .slide-model-container h2 {
    font-size: 50px;
  }
  .related-boat-swiper .swiper-slide .slide-model-container p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .related-boat-swiper .swiper-slide .slide-image {
    width: 100%;
  }

  .swiper-button-related-next {
    right: 5px;
  }

  .swiper-button-related-prev {
    left: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .single-boat-sport-gradient.first-img-descr h1 {
    font-size: 40px;
  }
  .single-boat-sport-gradient.first-img-descr p {
    font-size: 14px;
    width: 90%;
  }
  .single-boat-sport-gradient .btns-container {
    row-gap: 15px;
    width: 95%;
    flex-direction: column;
  }
  .single-boat-sport-gradient .btns-container .cta-container {
    width: 100%;
  }
  .single-boat-sport-gradient .btns-container .cta-container .cta-text {
    margin-top: 0;
  }
  .single-boat-sport-gradient.second-img-descr {
    padding-bottom: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .single-boat-sport-gradient.second-img-descr h2 {
    font-size: 40px;
    margin-bottom: 20px;
    max-width: 50vw;
  }
  .single-boat-sport-gradient.second-img-descr p {
    font-size: 12px;
    max-width: 100%;
    line-height: 1.5;
  }

  .cta-container.granturismo.first-img-section.yellow .cta-text,
.cta-container.granturismo.first-img-section.transparent-yellow .cta-text {
    gap: 0 15px;
    padding: 25px 5px;
  }
  .cta-container.granturismo.first-img-section.yellow .cta-text span,
.cta-container.granturismo.first-img-section.transparent-yellow .cta-text span {
    font-size: 12px;
  }

  .single-boat-top-specs {
    padding: 40px 4vw;
  }
  .single-boat-top-specs .top-specs-container h3 {
    font-size: 14px;
  }
  .single-boat-top-specs .top-specs-container p {
    font-size: 14px;
  }

  .single-boat-schema {
    padding: 0px 0;
    padding-top: 40px;
  }
  .single-boat-schema .boat-schema-detail {
    padding: 30px 2rem 10px;
    width: 100%;
    margin-bottom: 60px;
  }
  .single-boat-schema .boat-schema-detail h4 {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail .sport-equipments-swiper {
    overflow: hidden;
    padding-bottom: 20px;
  }
  .single-boat-schema .boat-schema-detail .sport-equipments-swiper .swiper-slide p {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .single-boat-schema .boat-schema-detail .cta-container.granturismo.yellow .cta-text,
.single-boat-schema .boat-schema-detail .cta-container.granturismo.grey .cta-text {
    font-size: 16px;
    padding: 15px 30px;
  }
  .single-boat-schema .boat-schema-download {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-download .download-btn {
    padding: 0px;
  }
  .single-boat-schema .boat-schema-download .download-btn img {
    height: 43px;
  }
  .single-boat-schema .boat-schema-download p {
    font-size: 16px;
  }
  .single-boat-schema .boat-schema-img {
    width: 100%;
    height: 100%;
    padding-top: 25px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-img img {
    width: 100%;
    transform: scale(1.4);
    transform-origin: top;
  }
  .single-boat-schema .boat-alert-tab {
    text-align: left;
  }
  .single-boat-schema .boat-alert-tab h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .single-boat-schema .boat-alert-tab p {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-alert {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
  }
  .single-boat-schema .boat-schema-alert h4 {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .single-boat-schema .boat-schema-alert p {
    font-size: 10px;
    margin-bottom: 50px;
  }
  .single-boat-schema .boat-schema-alert h3 {
    font-size: 12px;
    margin-bottom: 15px;
    text-align: left;
  }

  .gallery-boat-swiper {
    margin-top: 60px;
  }

  .swiper-button-sport-next,
.swiper-button-sport-prev,
.swiper-button-related-next,
.swiper-button-related-prev,
.swiper-button-equipments-next,
.swiper-button-equipments-prev {
    padding: 5px;
  }
  .swiper-button-sport-next img,
.swiper-button-sport-prev img,
.swiper-button-related-next img,
.swiper-button-related-prev img,
.swiper-button-equipments-next img,
.swiper-button-equipments-prev img {
    height: 15px;
  }

  .swiper-button-sport-next {
    top: 50%;
    right: 25px;
  }

  .swiper-button-sport-prev {
    top: 50%;
    left: 25px;
  }

  .swiper-button-equipments-next,
.swiper-button-equipments-prev {
    padding: 10px;
  }

  .full-quote {
    padding: 35px 2rem;
  }
  .full-quote h2 {
    font-size: 15px;
  }

  .related-boat-swiper .swiper-slide .slide-model-container {
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    min-height: 45vh;
  }
  .related-boat-swiper .swiper-slide .slide-model-container h2 {
    font-size: 50px;
  }
  .related-boat-swiper .swiper-slide .slide-model-container p {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .related-boat-swiper .swiper-slide .slide-model-container .slide-model-text-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: calc((45vh - 8.3333333vw) - 175px);
  }
  .related-boat-swiper .swiper-slide .slide-model-container .slide-model-text-container .cta-container.flyer.transparent .cta-text {
    font-size: 15px;
  }
  .related-boat-swiper .swiper-slide .slide-image {
    width: 100%;
  }

  .swiper-button-related-next {
    top: 50%;
    right: 0;
    padding: 11px;
    border-top: 1px solid #1E1E1E;
  }

  .swiper-button-related-prev {
    top: 50%;
    left: 0;
    padding: 11px;
    border-top: 1px solid #1E1E1E;
  }

  .cta-container.granturismo.related-swiper-sport.yellow .cta-text {
    padding: 19px 15px;
  }
}
.search-result-container {
  margin-top: 60px;
}
.search-result-container .btn-back {
  border: none;
  background: #1E1E1E;
  border-radius: 0 !important;
  width: 219px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 15px !important;
}
.search-result-container .btn-text {
  font-weight: 700 !important;
  font-size: 16px;
  color: #002022 !important;
  font-style: normal;
}
.search-result-container .arrow-left-white {
  width: 23px;
}
.search-result-container .arrow-left-white img {
  position: relative;
}
.search-result-container .arrow-left-white {
  transform: rotate(180deg) !important;
}
.search-result-container h1 {
  font-family: "Metropolis";
  font-weight: 500;
  font-size: 45px;
  color: #01265b;
}
.search-result-container hr {
  border-bottom: 2px solid #02285d;
  width: 100%;
}
.search-result-container button {
  position: absolute;
  left: 15px;
}
.search-result-container .search-result hr {
  border-bottom: 0.5px solid #02285d !important;
}
.search-result-container .search-result h2 {
  color: #01265b;
}
.search-result-container .read-search-result {
  transition: none !important;
}
.search-result-container .read-search-result .btn-back {
  border: none;
  background: #1E1E1E;
  border-radius: 0 !important;
  width: 219px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  left: calc(100% - 8.3333vw * 1.5 - 10px) !important;
  top: calc(8.3333vw / 2 - 20px);
  margin-left: 15px !important;
}
.search-result-container .read-search-result .btn-text {
  font-weight: 700 !important;
  font-size: 16px;
  color: #002022 !important;
  font-style: normal;
}
.search-result-container .read-search-result .arrow-left-white {
  width: 23px;
}
.search-result-container .read-search-result .arrow-left-white img {
  position: relative;
}
.search-result-container .read-search-result .arrow-left-white {
  transform: rotate(0deg) !important;
}
.search-result-container a:hover {
  text-decoration: none !important;
}

@media only screen and (max-width: 1440px) {
  .search-result-container .btn-back {
    width: 229px;
  }
  .search-result-container .read-search-result .btn-back {
    width: 232px;
    left: calc(100% - 8.3333vw * 2 - 60px) !important;
  }
  .search-result-container .read-search-result .btn-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .search-result-container {
    margin-top: 130px;
  }
  .search-result-container .btn-back {
    top: -80px;
  }
  .search-result-container .search-result .btn-back {
    left: calc(100% - 8.3333vw * 4 + 10px) !important;
    width: 214px;
    height: 52px;
  }
  .search-result-container .search-result .btn-text {
    font-size: 13px;
  }
  .search-result-container .read-search-result .btn-back {
    width: 247px;
    left: calc(100% - 8.3333vw * 3 - 2px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-container h1 {
    font-size: 30px;
  }
  .search-result-container .btn-back {
    width: 129px;
    height: 36px;
    top: -54px;
  }
  .search-result-container .btn-text {
    font-size: 16px;
  }
  .search-result-container .search-result .btn-back {
    left: calc(100% - 8.3333vw * 4 + 10px) !important;
    width: 214px;
    height: 52px;
  }
  .search-result-container .search-result .btn-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 576px) {
  .search-result-container {
    margin-top: 100px;
  }
  .search-result-container h1 {
    font-size: 20px;
    font-weight: 700;
  }
  .search-result-container .btn-back {
    top: -80px;
  }
  .search-result-container .btn-text {
    font-size: 10px;
  }
  .search-result-container .search-result h2 {
    font-size: 15px;
  }
  .search-result-container .search-result .btn-back {
    top: 8.5px;
    left: calc(100% - 8.3333vw * 2 - 2px) !important;
    width: 34px;
    height: 34px;
  }
  .search-result-container .search-result .btn-text {
    display: none;
  }
  .search-result-container .read-search-result {
    width: 20 !important;
  }
}
.promo-banner {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding: 20px;
  z-index: 4;
  position: fixed;
  top: 85px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdd931;
}
.promo-banner span {
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  text-align: center;
  color: #011839;
}

.cta-container.promo {
  width: 50%;
  cursor: pointer;
}
.cta-container.promo .cta-text {
  background-color: #008c97 !important;
  color: #fdd931 !important;
  border-radius: 0 !important;
}
.cta-container.promo .cta-text::after {
  content: url("/assets/img/svg/arrow-line-right-yellow.svg") !important;
}

.single-boat-sport-gradient.promo {
  height: unset !important;
  margin-top: unset !important;
  color: #011839;
}
.single-boat-sport-gradient.promo h1 {
  font-weight: 700;
  font-size: 5.26vw;
  line-height: 5.26vw;
}
.single-boat-sport-gradient.promo p,
.single-boat-sport-gradient.promo span {
  font-size: 2.6vw;
  line-height: 2.6vw;
  text-align: center;
}
.single-boat-sport-gradient.promo .btns-container .cta-text {
  height: 100%;
}

.promo-main-image {
  padding-bottom: 85px;
}

.promo-content-section {
  padding: 150px 0;
}
.promo-content-section .text-left-border {
  padding-left: 60px;
  padding-right: 15px;
  border-left: 14px solid #008c97;
  margin-bottom: 50px;
}
.promo-content-section .text-left-border .title {
  font-weight: 700;
  font-size: 51px;
  line-height: 51px;
  margin-bottom: 20px;
}
.promo-content-section .text-left-border .description * {
  font-size: 30px;
  line-height: 38px;
}
.promo-content-section .text-left-border .description * * {
  font-size: 30px;
  line-height: 38px;
}
.promo-content-section .text-left-border .description * em {
  font-size: 27px;
  line-height: 38px;
}
.promo-content-section .text-left-border .description * em * {
  font-size: 27px;
  line-height: 38px;
}

.gallery-boat-swiper.promo {
  margin-top: 0;
}
.gallery-boat-swiper.promo .swiper-button-sport-next,
.gallery-boat-swiper.promo .swiper-button-sport-prev {
  background-color: #fdd931;
}

.promo-regulation-modal {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  max-width: unset;
}
.promo-regulation-modal .modal-content {
  width: calc(8.33333vw * 9);
  height: 80vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.promo-regulation-modal .modal-content .modal-body {
  padding: 150px 100px;
}
.promo-regulation-modal .modal-content .modal-body #promoRegulationModalClose {
  position: fixed;
  top: 55px;
  right: 55px;
  width: 30px;
  height: 30px;
}
.promo-regulation-modal .modal-content .modal-body #promoRegulationModalClose img {
  width: 100%;
}
.promo-regulation-modal .modal-content .modal-body .regulation-content {
  color: #002022;
}
.promo-regulation-modal .modal-content .modal-body .regulation-content h1,
.promo-regulation-modal .modal-content .modal-body .regulation-content h2,
.promo-regulation-modal .modal-content .modal-body .regulation-content h3,
.promo-regulation-modal .modal-content .modal-body .regulation-content h4 {
  font-size: 40px;
}
.promo-regulation-modal .modal-content .modal-body .regulation-content p {
  font-size: 20px;
}

@media only screen and (max-width: 991px) {
  .promo-banner {
    padding: 10px;
    top: 85px;
  }
  .promo-banner span {
    font-size: 20px;
    line-height: 20px;
  }

  .cta-container.promo {
    width: 75%;
  }

  .single-boat-sport-gradient.promo h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
  }
  .single-boat-sport-gradient.promo p,
.single-boat-sport-gradient.promo span {
    font-size: 35px;
    line-height: 35px;
  }

  .promo-content-section {
    padding: 75px 0;
  }
  .promo-content-section .text-left-border .title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .promo-content-section .text-left-border .description * {
    font-size: 20px;
    line-height: 20px;
  }
  .promo-content-section .text-left-border .description * * {
    font-size: 20px;
    line-height: 20px;
  }
  .promo-content-section .text-left-border .description * em {
    font-size: 15px;
    line-height: 15px;
  }
  .promo-content-section .text-left-border .description * em * {
    font-size: 15px;
    line-height: 15px;
  }

  .promo-regulation-modal .modal-content {
    width: calc(8.33333vw * 10);
    height: 80vh;
  }
  .promo-regulation-modal .modal-content .modal-body {
    padding: 70px 35px;
  }
  .promo-regulation-modal .modal-content .modal-body #promoRegulationModalClose {
    top: 30px;
    right: 30px;
    width: 25px;
    height: 25px;
  }
  .promo-regulation-modal .modal-content .modal-body .regulation-content h1,
.promo-regulation-modal .modal-content .modal-body .regulation-content h2,
.promo-regulation-modal .modal-content .modal-body .regulation-content h3,
.promo-regulation-modal .modal-content .modal-body .regulation-content h4 {
    font-size: 30px;
  }
  .promo-regulation-modal .modal-content .modal-body .regulation-content p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .promo-banner {
    top: 60px;
  }
  .promo-banner span {
    font-size: 15px;
    line-height: 15px;
  }

  .cta-container.promo {
    width: 100%;
  }

  .single-boat-sport-gradient.promo h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .single-boat-sport-gradient.promo p,
.single-boat-sport-gradient.promo span {
    font-size: 25px;
    line-height: 25px;
  }

  .promo-content-section {
    padding: 90px 0;
  }
  .promo-content-section .text-left-border .title {
    font-size: 18px;
    line-height: 18px;
  }
  .promo-content-section .text-left-border .description * {
    font-size: 15px;
    line-height: 15px;
  }
  .promo-content-section .text-left-border .description * * {
    font-size: 15px;
    line-height: 15px;
  }
  .promo-content-section .text-left-border .description * em {
    font-size: 15px;
    line-height: 15px;
  }
  .promo-content-section .text-left-border .description * em * {
    font-size: 15px;
    line-height: 15px;
  }

  .promo-regulation-modal .modal-content {
    width: calc(8.33333vw * 12 - 2rem);
    height: 80vh;
  }
  .promo-regulation-modal .modal-content .modal-body {
    padding: 80px 15px;
  }
  .promo-regulation-modal .modal-content .modal-body #promoRegulationModalClose {
    top: 20px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .promo-regulation-modal .modal-content .modal-body .regulation-content h1,
.promo-regulation-modal .modal-content .modal-body .regulation-content h2,
.promo-regulation-modal .modal-content .modal-body .regulation-content h3,
.promo-regulation-modal .modal-content .modal-body .regulation-content h4 {
    font-size: 20px;
  }
  .promo-regulation-modal .modal-content .modal-body .regulation-content p {
    font-size: 12px;
  }
}
.privacy-terms-link {
  color: #FF5254;
  -webkit-text-decoration-color: #FF5254;
          text-decoration-color: #FF5254;
}

.articlesCol.sport .article-box-overlay {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.articlesCol.sport .article-box-overlay::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #333333;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.01) 17%, #02275c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#333333", endColorstr="#02275c", GradientType=1);
}
.articlesCol.sport .article-box-overlay.big .article-info .article-title {
  font-weight: 700;
  font-size: 43px;
  line-height: 1;
  color: #ffffff;
  position: absolute;
  left: 8.3vw;
  bottom: 8.3vw;
  max-width: calc(100% - calc(8.3vw * 2));
}
.articlesCol.sport .article-box-overlay.big .article-info .article-date {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  position: absolute;
  bottom: calc(100% + 30px);
  left: 0px;
}
.articlesCol.sport .article-box-overlay.big .cta {
  text-align: left;
  border: 0px solid transparent;
  background-color: #fdd931;
  color: #3a454e;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  padding: 36px 50px;
  position: absolute;
  width: calc(8.3vw * 3 + 100px);
  bottom: 0px;
  left: 8.3vw;
}
.articlesCol.sport .article-box-overlay.big .cta .arrow {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.articlesCol.sport .article-box-overlay.big .cta .arrow::before {
  display: block;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #3a454e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.articlesCol.sport .article-box-overlay.big .cta .arrow::after {
  display: block;
  content: "";
  height: 23px;
  width: 23px;
  border-left: 4px solid #3a454e;
  border-bottom: 4px solid #3a454e;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(225deg);
}
.articlesCol.sport .article-box-overlay.small .article-info .article-title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: calc(100% - 30px);
}

.sport-load-more-row {
  height: 500px;
  background-color: #011839;
}

.load-more-container {
  width: calc(8.3vw * 10);
  margin: 0 auto;
  margin-top: 150px;
  background-color: #fdd931;
  height: 380px;
  position: relative;
  z-index: 2;
}
.load-more-container .info {
  width: 100%;
  padding: 50px 75px;
}
.load-more-container .info .title {
  font-weight: 700;
  font-size: 20px;
  color: #3a454e;
}
.load-more-container .info .description {
  font-size: 20px;
  color: #3a454e;
}

.sport-load-more-btn {
  background-color: transparent;
  border: 0px solid transparent;
  text-align: right;
  font-size: 26px;
  position: absolute;
  bottom: 45px;
  right: 105px;
  color: #3a454e;
  font-weight: 700;
}
.sport-load-more-btn .arrow {
  height: 30px;
  width: 30px;
  position: absolute;
  left: calc(100% + 30px);
  top: 50%;
  transform: translateY(-50%);
}
.sport-load-more-btn .arrow::before {
  display: block;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #3a454e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sport-load-more-btn .arrow::after {
  display: block;
  content: "";
  height: 23px;
  width: 23px;
  border-left: 4px solid #3a454e;
  border-bottom: 4px solid #3a454e;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(225deg);
}

.bg-blue {
  background-color: #02285d;
}

.bg-dark-navy {
  background-color: #001738;
}

.sport-nl {
  padding-bottom: 215px;
}
.sport-nl .title {
  color: #fff;
  font-weight: 900;
  font-size: 70px;
  line-height: 0.89;
  margin-top: 175px;
  margin-bottom: 80px;
}
.sport-nl .description {
  font-weight: 400;
  font-size: 29px;
  line-height: 1.01;
  color: #fff;
  margin-bottom: 10px;
}
.sport-nl .sport-nl-email-input {
  border: 0px solid transparent;
  border-radius: 0px;
  border-bottom: 1px solid rgba(74, 74, 74, 0.35);
  width: 100%;
  padding: 10px 0px;
  padding-right: 93px;
  font-size: 21px;
  line-height: 1;
  color: #fff;
  background-color: transparent;
  margin-bottom: 10px;
  outline: 0px solid transparent;
}
.sport-nl .sport-nl-email-input::-moz-placeholder {
  color: #fff;
}
.sport-nl .sport-nl-email-input:-ms-input-placeholder {
  color: #fff;
}
.sport-nl .sport-nl-email-input::placeholder {
  color: #fff;
}
.sport-nl .custom-btn {
  position: absolute;
  right: 30px;
  top: 40%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0px solid transparent;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.sport-nl .custom-btn .arrow {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
}
.sport-nl .custom-btn .arrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
.sport-nl .custom-btn .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(225deg);
}

.logo-slogan {
  position: relative;
  z-index: 2;
}
.logo-slogan .logo {
  margin-top: 40px;
  width: 200px;
}
.logo-slogan .slogan {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 70px;
}

.sport-wave-texture {
  position: absolute;
  bottom: 0px;
  transform: translateY(50%);
  width: 100%;
  z-index: 0;
}

/* The container */
.sport-nl-checkbox-container {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-top: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  font-style: italic;
  font-size: 16px;
}

/* Hide the browser's default checkbox */
.sport-nl-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.sport-nl-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 29px;
  width: 29px;
  background-color: transparent;
  border: 2px solid #fff;
}

/* On mouse-over, add a grey background color */
.sport-nl-checkbox-container:hover input ~ .sport-nl-checkbox-checkmark {
  background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.sport-nl-checkbox-container input:checked ~ .sport-nl-checkbox-checkmark {
  background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.sport-nl-checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.sport-nl-checkbox-container input:checked ~ .sport-nl-checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.sport-nl-checkbox-container .sport-nl-checkbox-checkmark:after {
  left: 9px;
  top: 3px;
  width: 9px;
  height: 14px;
  border: solid #fdd931;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media only screen and (max-width: 1400px) {
  .articlesCol.sport .article-box-overlay.big .article-info .article-title {
    bottom: 10.3vw;
  }
}
@media only screen and (max-width: 1199px) {
  .articlesCol.sport .article-box-overlay.big .article-info .article-title {
    bottom: 10.3vw;
  }
  .articlesCol.sport .article-box-overlay.big .cta {
    font-size: 21px;
    padding: 24px 34px;
  }
}
@media only screen and (max-width: 991px) {
  .articlesCol.sport .article-box-overlay.big .article-info .article-title {
    font-size: 30px;
  }
  .articlesCol.sport .article-box-overlay.big .cta {
    font-size: 16px;
    padding: 20px 25px;
    width: calc(8.3vw * 5);
  }
  .articlesCol.sport .article-box-overlay.big .cta .arrow {
    transform: translateY(-50%) scale(0.7);
  }
  .articlesCol.sport .article-box-overlay.small .article-info .article-title {
    font-size: 18px;
  }

  .sport-load-more-row {
    height: 260px;
  }

  .sport-load-more-btn {
    font-size: 16px;
    right: 55px;
    bottom: 25px;
  }
  .sport-load-more-btn .arrow {
    left: calc(100% + 10px);
    transform: translateY(-50%) scale(0.7);
  }

  .load-more-container {
    margin-top: 60px;
    height: 240px;
  }
  .load-more-container .info {
    padding: 43px 22px;
  }

  .sport-nl {
    padding-bottom: 75px;
  }
  .sport-nl .title {
    font-size: 40px;
    line-height: 1.02;
    margin-top: 61px;
    margin-bottom: 40px;
  }
  .sport-nl .description {
    font-size: 25px;
    line-height: 1.05;
    margin-bottom: 30px;
  }
  .sport-nl .sport-nl-email-input {
    font-size: 15px;
    padding-right: 79px;
    margin-bottom: 30px;
  }
  .sport-nl .custom-btn {
    top: 25%;
    font-size: 15px;
  }

  .sport-wave-texture {
    left: 0px;
    width: 1920px;
  }

  .logo-slogan .slogan {
    font-size: 18px;
    line-height: 1.28;
  }
}
@media only screen and (max-width: 767px) {
  .articlesCol.sport .article-box-overlay.big .article-info .article-title {
    bottom: 12vw;
  }
}
@media only screen and (max-width: 575px) {
  .articlesCol.sport .article-box-overlay.big .article-info .article-title {
    bottom: 12vw;
    font-size: 15px;
    max-width: calc(100% - 30px);
    left: 15px;
  }
  .articlesCol.sport .article-box-overlay.big .article-info .article-date {
    bottom: calc(100% + 10px);
    font-size: 10px;
  }
  .articlesCol.sport .article-box-overlay.big .article-info .cta {
    font-size: 10px;
    max-width: calc(50% - 30px);
    left: unset;
    right: 15px;
    padding: 10px;
  }
  .articlesCol.sport .article-box-overlay.small .article-info .article-title {
    font-size: 12px;
    max-width: calc(100% - 30px);
    left: 15px;
  }

  .sport-nl {
    padding-bottom: 75px;
  }
  .sport-nl .title {
    font-size: 30px;
    line-height: 1.07;
    margin-top: 61px;
    margin-bottom: 20px;
  }
  .sport-nl .description {
    font-size: 19px;
    line-height: 1.05;
    margin-bottom: 50px;
  }
  .sport-nl .sport-nl-email-input {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .sport-nl .custom-btn {
    right: 45px;
    top: 25%;
    font-size: 13px;
  }

  .sport-nl-checkbox-container {
    font-size: 10px;
    padding-left: 28px;
  }
  .sport-nl-checkbox-container .sport-nl-checkbox-checkmark:after {
    left: 4px;
    top: 0px;
    width: 7px;
    height: 12px;
  }

  .sport-nl-checkbox-checkmark {
    width: 19px;
    height: 19px;
  }
}
