  /* Make the video cover the entire screen */
  .video-background {
    position: relative;
    height: calc(100vh - 70px); /* Full height of the viewport */
    width: 100vw;  /* Full width of the viewport */
    overflow: hidden;
  }
  
  #bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the whole div without stretching */
    transform: translate(-50%, -50%); /* Centers the video */
  }
  
  .content {
    transition: opacity .6s linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 20;
  }
  
  h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: inherit;
  }
  
  p {
    font-size: 1.5em;
  }


.overlay {
   width: 100%;
    height: calc(100vh - 30vh);
    position: relative;
    bottom: 0;
    background: linear-gradient(0deg, #0E0E0E 5.43%, rgba(24, 24, 24, 0.00) 82.25%, rgba(255, 255, 255, 0.00) 90.67%);
    content: '';
    position: absolute;
    z-index: 10;
}
  .video-background.gradient::after {
    width: 100%;
    height: calc(100vh - 50vh);
    position: relative;
    bottom: 0;
    background: linear-gradient(0deg, #0E0E0E 25.43%, rgba(24, 24, 24, 0.00) 82.25%, rgba(255, 255, 255, 0.00) 90.67%);
    content: '';
    position: absolute;
    z-index: 10;
  }

.hero__logo {
  max-width:60vw;
}

@media screen and (max-width: 520px) {
.hero__logo {
    max-width: 25rem;
    padding: 0 12px;
  }

.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}