h3 {
  margin-bottom: 1rem;
}

.video-section {
  position: relative;
  height: calc(100dvh - var(--navbar-height));
  width: 100%;
  overflow: hidden;

  background-image: linear-gradient(to right top, black, #00000000 70%, #00000000);
  @media (max-width: 767px) {
    background-image: linear-gradient(to bottom, black, #00000000 70%, #00000000);
  }
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-color: black;
}

.video-bg::before {
  /* dimming the video - TODO FIX THIS */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: absolute;
  bottom: 100px;
  left: 70px;
  text-align: center;
  color: white;
  z-index: 2; /* layer */

  display: flex;
  flex-direction: column;

  width: min(30%, 650px);
  gap: 50px;

  @media (max-width: 767px) {
    bottom: none;
    top: 10vw;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.7); */
    width: 60%;
    border-radius: 5px;
  }
}


.content img {
  @media (max-width: 767px) {
    width: 100%;
  }
}

.video-continue-icon {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2; /* layer */
}

.btn-download {
  --bs-btn-bg: white;
  --bs-btn-hover-bg: #8eb9ce;
  color: black;
  border: none;
  border-radius: 50px !important;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  width: fit-content;

  :hover {
    color: white;
  }
}

#first-section {
  background-color: #f8ebdd;
}

#second-section {
  background-color: #d1b798;
}

#third-section {
  background-color: #f8ebdd;
}
