.hero-showcase-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("/img/Akos-1920.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .hero-showcase-section {
    background-image: url("/img/Akos-1080.webp");
    align-items: flex-end;
    padding-bottom: 50px;
  }
}

.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-wrapper.hero-desktop-only {
  display: block;
}
@media (max-width: 767px) {
  .hero-video-wrapper.hero-desktop-only {
    display: none;
  }
}
.hero-video-wrapper.hero-mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .hero-video-wrapper.hero-mobile-only {
    display: block;
  }
}

.hero-curtain-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-viewport-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-top: 15px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: left;
}

@media (max-width: 1024px) {
    .hero-viewport-container {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
  .hero-viewport-container {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero-text-block {
  max-width: 560px;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-text-block {
    max-width: 450px;
  }
}
@media (max-width: 767px) {
  .hero-text-block {
    max-width: 340px;
    margin: 0;
  }
}

.hero-main-title {
  font-family: "JM Poster", sans-serif;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-transform: none;
}
.hero-title-large {
  font-family: "JM Poster", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  display: inline-block;
}
.hero-main-title .hero-text-accent {
  color: #ED1C24;
}
.hero-tagline-sub {
  display: block;
  font-family: "JM Poster", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  text-transform: none;
}
@media (max-width: 767px) {
  .hero-title-large {
    font-size: 2em;
    margin-bottom: 5px;
  }
  .hero-tagline-sub {
    font-size: 40px
  }
  .hero-cta-button {
    font-size: 1.3rem;
    padding: 10px 28px;
  }
}

.hero-cta-button {
  display: inline-block;
  background-color: #ED1C24;
  color: #ffffff;
  font-family: "JM Poster", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: none;
  padding: 12px 24px;
  border-radius: 4px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}

.hero-cta-button:hover {
    color: #ffffff;
}


/*# sourceMappingURL=site-hero.css.map */
