.top-logo {
  width: 100%;
  display: flex;
  padding: 20px 0 10px 0;
}

.top-logo a {
  margin: 0 auto;
}

.top-logo a img {
  width: 150px;
}

@media screen and (min-width: 768px) {
  .top-logo a img {
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .top-logo a img {
    width: 300px;
  }
}
#iframe-video {
  width: 100%;
  height: 100%;
}

#video-container {
  position: relative;
  width: 100%;
  height: 50vh; /* Full viewport height */
  max-width: 320px;
  margin: 0 auto;
}

#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Ensure it's above the video */
}
#overlay img {
  transition: transform 0.5s ease; /* Smooth transition for size change */
}

#overlay:hover {
  cursor: pointer;
}
#overlay:hover img {
  transform: scale(1.2); /* Increases size by 10% on hover */
}

#overlay-content {
  max-width: 80%; /* Adjust as needed */
  max-height: 80%; /* Adjust as needed */
}

.big-video-overlay-transparent {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01); /* Adjust the last value (alpha) to change transparency */
  z-index: 999; /* Ensure it's above other content */
  cursor: pointer; /* Make the cursor pointer when hovering over */
}

@media screen and (min-width: 992px) {
  #video-container {
    position: relative;
    width: 100%;
    height: 50vh;
    max-width: 992px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  #video-container {
    max-width: 1025px;
  }
}

/*# sourceMappingURL=landing3.css.map */
