.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 960px);
  max-width: 1920px;
}
@media screen and (max-width: 1920px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.swiper-navigation .swiper-button-next.swiper-button-disabled, .swiper-navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  transition: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-disabled svg, .swiper-navigation .swiper-button-next.swiper-button-disabled i, .swiper-navigation .swiper-button-prev.swiper-button-disabled svg, .swiper-navigation .swiper-button-prev.swiper-button-disabled i {
  color: var(--swiperColor);
}
.swiper-navigation .swiper-button-next,
.swiper-navigation .swiper-button-prev {
  transition: 0.25s ease;
  font-size: 0;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  right: unset;
  left: unset;
  top: 50%;
  margin-top: -32px;
}
.swiper-navigation .swiper-button-next svg, .swiper-navigation .swiper-button-next i,
.swiper-navigation .swiper-button-prev svg,
.swiper-navigation .swiper-button-prev i {
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  margin: auto;
  right: unset;
  font-size: 50px;
  color: var(--swiperColor);
}
.swiper-navigation .swiper-button-next i,
.swiper-navigation .swiper-button-prev i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .swiper-navigation .swiper-button-next,
  .swiper-navigation .swiper-button-prev {
    transform: scale(0.7);
  }
}
.swiper-navigation .swiper-button-next.swiper-button-next,
.swiper-navigation .swiper-button-prev.swiper-button-next {
  transform-origin: right;
  right: 0;
  background: unset;
  border: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-next svg, .swiper-navigation .swiper-button-next.swiper-button-next i,
.swiper-navigation .swiper-button-prev.swiper-button-next svg,
.swiper-navigation .swiper-button-prev.swiper-button-next i {
  right: 0;
  left: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-next:after,
.swiper-navigation .swiper-button-prev.swiper-button-next:after {
  display: none;
  font-family: "Font Awesome 5 Free", serif;
  font-weight: 900;
  content: "\f054";
}
.swiper-navigation .swiper-button-next.swiper-button-prev,
.swiper-navigation .swiper-button-prev.swiper-button-prev {
  transform-origin: left;
  left: 0;
  background: unset;
  border: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-prev:after,
.swiper-navigation .swiper-button-prev.swiper-button-prev:after {
  display: none;
  font-family: "Font Awesome 5 Free", serif;
  font-weight: 900;
  content: "\f053";
}
.swiper-navigation .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--swiperColor);
  opacity: 0.5;
}
.swiper-navigation .swiper-pagination-bullet-active {
  background-color: var(--swiperColor) !important;
  opacity: 1 !important;
}
.swiper-navigation .swiper-pagination-bullets {
  text-align: center;
}

.swiper-button-next svg.svg-inline--fa, .swiper-button-prev svg.svg-inline--fa {
  height: 1em;
}

.swiper-lazy-preloader-white {
  filter: drop-shadow(0 0 1px rgba(105, 105, 105, 0.4));
}

.video-section-container {
  position: relative;
}
.video-section-container .video-container {
  position: relative;
}
.video-section-container .video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  z-index: 0;
  background: white;
}
.video-section-container .video.desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .video-section-container .video.desktop {
    display: none;
  }
}
.video-section-container .video.mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .video-section-container .video.mobile {
    display: block;
  }
}
.video-section-container #soundControl {
  position: absolute;
  cursor: pointer;
  bottom: 40px;
  right: 50px;
  z-index: 10000;
  display: block;
}
.video-section-container #soundControl.soundOff {
  opacity: 0.25;
}
@media screen and (max-width: 767px) {
  .video-section-container #soundControl {
    display: none;
  }
}
.video-section-container #soundControl-mobile {
  position: absolute;
  cursor: pointer;
  bottom: 80px;
  right: 50px;
  z-index: 100;
  display: none;
}
.video-section-container #soundControl-mobile.soundOff {
  opacity: 0.25;
}
@media screen and (max-width: 767px) {
  .video-section-container #soundControl-mobile {
    display: block;
  }
}

.video-skip-link {
  font-size: 1.7rem;
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.video-skip-link:focus {
  position: absolute;
  width: auto;
  height: auto;
  left: 10px;
  top: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
  padding: 8px 16px;
}

.video-skip-anchor {
  height: 0;
  overflow: hidden;
}

/*# sourceMappingURL=video-section.css.map */
