.video-item {
  position: relative;
}

.video-item .overlay {
  display: block;
  content: " ";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.overlay-content {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  height: 100%;
}

.video-item:hover .overlay {
  opacity: 1;
}

.terms-and-privacy li {
  font-weight: 400;
  color: #6a6a6a;
}

