
.front_video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}


#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important;
  display: block !important;
  pointer-events: none;
}

.front_video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2 !important;
  padding: 0 20px;
}

.front_video-content h1 {
  font-size: 57px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.front_video-content p {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease-out 0.5s forwards;
}

@keyframes fadeSlideUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .front_video-content h1 {
      font-size: 36px;
      letter-spacing: 3px;
  }

  .front_video-content p {
      font-size: 18px;
      letter-spacing: 1.5px;
  }
}

@media (max-width: 576px) {
  .front_video-content h1 {
      font-size: 28px;
  }

  .front_video-content p {
      font-size: 16px;
  }
}