section#hero {
  min-height: 80vh;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  section#hero {
    min-height: 90vh;
    padding-top: 100px;
  }
}
section#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(rgba(31, 31, 31, 0.4901960784), #1F1F1F);
}
section#hero div.swiper.background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section#hero div.swiper.background div.swiper-wrapper div.swiper-slide {
  height: 80vh;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  section#hero div.swiper.background div.swiper-wrapper div.swiper-slide {
    height: 90vh;
  }
}
section#hero div.swiper.background div.swiper-wrapper div.swiper-slide div.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
section#hero div.swiper.background div.swiper-wrapper div.swiper-slide div.parallax-bg.is-video {
  background-color: #000;
}
section#hero div.swiper.background div.swiper-wrapper div.swiper-slide div.parallax-bg.is-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#hero > div.content {
  padding: 0 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  section#hero > div.content {
    padding: 0 20px;
  }
}
section#hero > div.content div.container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
section#hero > div.content div.container h1 {
  font-size: 45px;
  font-weight: 800;
  color: white;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  section#hero > div.content div.container h1 {
    font-size: 30px;
  }
}
section#hero > div.content div.container div.description {
  margin-bottom: 20px;
}
section#hero > div.content div.container div.description p {
  font-size: 17px;
  font-weight: 600;
  color: white;
  max-width: 650px;
}
@media screen and (max-width: 767px) {
  section#hero > div.content div.container div.description p {
    font-size: 16px;
  }
}
section#hero > div.content div.container div.description p:last-child {
  margin-bottom: 0;
}
section#hero > div.content div.container a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--e-global-color-primary);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 10px;
}
section#hero div.navigation {
  background-color: #1F1F1F;
  padding: 0 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  section#hero div.navigation {
    padding: 0 20px;
  }
}
section#hero div.navigation div.nav-swiper {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 0 50px;
}
@media screen and (max-width: 767px) {
  section#hero div.navigation div.nav-swiper {
    padding: 20px 0 30px;
  }
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide span.progress {
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide span.progress span {
  position: absolute;
  width: 0;
  height: 100%;
  background-color: white;
  left: 0;
  top: 0;
  transition-timing-function: linear;
  transition-property: width;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content {
    gap: 10px;
  }
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content div.info span {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content div.info span a {
  pointer-events: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content div.info div.description p {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.swiper-slide div.content div.info div.description p:last-child {
  margin-bottom: 0;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.is-active {
  opacity: 1;
}
section#hero div.navigation div.nav-swiper div.swiper-wrapper div.is-active div.content div.info span a {
  pointer-events: all;
}
