/* Home page */

#home.banner-area {
  background: #111923;
  min-height: calc(100vh - 58px);
  overflow: hidden;
}

#home .home-carousel,
#home .carousel-inner,
#home .carousel-item {
  min-height: calc(100vh - 58px);
}

#home .carousel-item {
  height: calc(100vh - 58px);
  min-height: 520px;
  position: relative;
  width: 100%;
}

#home .slider-img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: 0;
}

#home .carousel-item::before {
  background:
    linear-gradient(90deg, rgba(9, 18, 28, 0.44), rgba(9, 18, 28, 0.18)),
    rgba(0, 0, 0, 0.18);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

#home .carousel-container {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
  z-index: 2;
}

#home .carousel-content {
  color: #fff;
  text-align: center;
  z-index: 3;
}

#home .carousel-fade .carousel-inner .carousel-item {
  opacity: 0;
  position: absolute;
  transition: opacity 3s ease;
  width: 100%;
}

#home .carousel-fade .carousel-inner .active {
  opacity: 1;
  position: relative;
}

#home .carousel-control-prev,
#home .carousel-control-next {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  bottom: 0;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0;
  opacity: 0.86;
  outline: none;
  padding: 0;
  position: absolute;
  top: 0;
  width: 9%;
  z-index: 3;
  -webkit-appearance: none;
}

#home .carousel-control-prev:hover,
#home .carousel-control-next:hover,
#home .carousel-control-prev:focus,
#home .carousel-control-next:focus {
  background: transparent;
  box-shadow: none;
  opacity: 1;
  outline: none;
}

#home .carousel-control-next-icon,
#home .carousel-control-prev-icon {
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.35));
  height: 92px;
  width: 46px;
}

#home .carousel-control-next-icon {
  background-image: url("../img/svg/hex-next.svg");
}

#home .carousel-control-prev-icon {
  background-image: url("../img/svg/hex-prev.svg");
}

@media (max-width: 991px) {
  #home.banner-area,
  #home .home-carousel,
  #home .carousel-inner,
  #home .carousel-item {
    min-height: calc(100vh - 92px);
  }

  #home .carousel-item {
    height: calc(100vh - 92px);
    min-height: 520px;
  }

  #home .carousel-control-prev,
  #home .carousel-control-next {
    width: 14%;
  }

  #home .carousel-control-next-icon,
  #home .carousel-control-prev-icon {
    height: 68px;
    width: 34px;
  }
}
