body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in {
  opacity: 1 !important;
}


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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Adjust the last value (0.5) for transparency, lower value = more transparent */
  z-index: 0;
}

.carousel-item {
    height: 400px; /* Set the desired height of the carousel */
    position: relative;
    overflow: hidden;
  }

.feature-content {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 1rem;
}

.transparent-box {
padding: 1rem;
border-radius: 0.25rem;
z-index: 1;
background-color: rgba(255, 255, 255, 0.5); /* Adjust the last value (0.5) for transparency, lower value = more transparent */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: black;
}


.card {
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card-body {
  height: 200px;
}