.video-bg{
    background-color: #061E21;
}
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  /* A fix menü magasságával felhúzva a video "alácsúszik" a menü mögé --
     a --site-header-height-t a header.js állítja be (a header tényleges,
     mért magassága), a 64px csak tartalék érték, amíg a JS lefut. */
  margin-top: calc(-1 * var(--site-header-height, 64px));
}

.video-hero__bg, .video-hero__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.73) 0%, rgba(0, 0, 0, 0.26) 25%);
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

.video-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.video-hero__content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  opacity: .95;
}

.video-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-hero__scroll {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  animation: bounce 1.8s infinite;
}

.marquee {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0,0,0,0);
    overflow: hidden;
    width: 100%;
}

.track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll 90s linear infinite;
}

.item {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
}

.item img{
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
  .video-hero__bg { display: none; }
  .video-hero {
    background: url('/wp-content/uploads/hero-poster.jpg') center/cover no-repeat;
  }
  .video-hero__picture{
      
  }
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    .marquee {
        bottom: 45px;
    }
    .video-hero {
        border-bottom-left-radius: 3.5rem;
        border-bottom-right-radius: 3.5rem;
    }
    .item img{
        width: auto;
        height: 100px;
    }
}

@media (min-width: 1400px) {}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}