.hero-module {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}
.hero-module::before {
  content: "";
  background-image: var(--hero-bg);
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-module .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding-top: 25vh;
}
.hero-module .hero-content .main-title,
.hero-module .hero-content .main-title-2 {
  display: inline-block;
  color: var(--hero-color);
  line-height: 1.2;
  transition: all 0.3s ease;
}
.hero-module .hero-content .main-title {
  font-size: 100px;
  font-weight: bold;
  text-shadow: 15px 15px 10px rgba(0, 0, 0, 0.35);
  transform: translateX(-120px);
}
.hero-module .hero-content .main-title-2 {
  font-size: 70px;
  font-weight: bold;
  text-shadow: 15px 15px 8px rgba(0, 0, 0, 0.35);
  transform: translateX(120px);
  margin-top: 10px;
}

/* --- RESPONSÍVNY DIZAJN PRE HERO MODUL --- */
@media (max-width: 1450px) {
  .hero-module .hero-content {
    padding-top: 15vh;
  }
}
@media (max-width: 991px) {
  .hero-module .hero-content {
    padding-top: 10vh;
  }
  .hero-module .hero-content .main-title {
    font-size: 70px;
    transform: translateX(-50px);
  }
  .hero-module .hero-content .main-title-2 {
    font-size: 50px;
    transform: translateX(50px);
  }
}
@media (max-width: 768px) {
  .hero-module .hero-content {
    padding-top: 0;
  }
  .hero-module .hero-content .main-title,
  .hero-module .hero-content .main-title-2 {
    transform: translateX(0);
    text-shadow: 8px 8px 4px rgba(0, 0, 0, 0.35);
  }
  .hero-module .hero-content .main-title {
    font-size: 40px;
  }
  .hero-module .hero-content .main-title-2 {
    font-size: 30px;
    margin-top: 15px;
  }
}