.hero-carousel,
.carousel-item {
  height: 100vh;
}

.carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, .82),
      rgba(37, 99, 235, .45));
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-text p {
  margin-top: 25px;
  font-size: 1.1rem;
  color:
    rgba(255, 255, 255, .88);
  line-height: 1.9;
}

.hero-btn {
  margin-top: 40px;
}

.carousel-indicators li {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:
    rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  background-size: 45%;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform:
      translate(-50%, 0);
  }

  50% {
    transform:
      translate(-50%, 12px);
  }
}

.fade-section {
  opacity: 0;
  transform: translateY(45px);
  transition: .8s;
}

.fade-section.show {
  opacity: 1;
  transform: none;
}

@media(max-width:991px) {
  .hero-text {
    text-align: center;
    margin: auto;
  }

  .hero-text h1 {
    font-size: 2.7rem;
  }

  .hero-btn {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}