/*--------------------------------------------------------------
# Hero Slider - Variables
--------------------------------------------------------------*/
.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.lb-hero {
  padding: 0;
}

.lb-hero .lb-carousel {
  width: 100%;
  min-height: 400px;
  padding: 100px;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .lb-hero .lb-carousel {
    min-height: auto;
  }
}

.lb-hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.lb-hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.lb-hero .carousel-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lb-hero .lb-carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.lb-hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .lb-hero h2 {
    font-size: 30px;
  }
}

.lb-hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .lb-hero h2,
  .lb-hero p {
    max-width: 60%;
  }
}

.lb-hero .lb-btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.lb-hero .lb-btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.lb-hero .carousel-control-prev,
.lb-hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.lb-hero .carousel-control-prev:focus,
.lb-hero .carousel-control-next:focus {
  opacity: 0.5;
}

.lb-hero .carousel-control-prev:hover,
.lb-hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .lb-hero .carousel-control-prev,
  .lb-hero .carousel-control-next {
    width: 5%;
  }
}

.lb-hero .carousel-control-next-icon,
.lb-hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.lb-hero .carousel-indicators {
  list-style: none;
}

.lb-hero .carousel-indicators li {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}