#video-background {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* Ensure the video stays behind other content */
  overflow: hidden; /* Prevent video overflow */
}

@keyframes count-up {
  from {
    width: 0%;
  }
}

.counter {
  width: 0%;
  animation: count-up 2s forwards;
}

.video-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.video-carousel .owl-dots {
  position: absolute;
  bottom: 140px;
  width: 100%;
  text-align: center;
  z-index: 9999;
}

.video-carousel .owl-item,
.video-carousel-item {
  /* width: 100vw !important; */
  height: 100vh;
}

.video-carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.video-carousel-item .popup-youtube {
  z-index: 2;
}

.video-carousel-item .popup-youtube .ion-ios-play {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0;
  padding: 0;
}

.video-carousel-item .popup-youtube .ion-ios-play::after {
  display: none;
}

.video-carousel-item video {
  position: absolute;
  top: 0;
  left: 0;
  margin: 60px;
  width: calc(100% - 120px);
  height: calc(100% - 120px);
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .video-carousel-item video {
    margin: 120px;
    width: calc(100% - 240px);
    height: calc(100% - 240px);
  }
}

.grecaptcha-badge {
  bottom: 70px !important;
  z-index: 9999;
}
