/******** banner ********/
.slider-banner {
  position: relative;
}

.overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.96));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.slider-banner .carousel-inner {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 3;
  overflow: hidden;
}

.slider-banner .carousel-inner .carousel-item {
  display: block;
  height: 100%;
  min-height: 1px;
}

.slider-banner .carousel-inner .carousel-item img {
  display: block;
  object-fit: cover;
  object-position: center center;
  height: 700px;
}

.slider-caption {
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  z-index: 9;
}

.carousel-caption-info {
  color: #ffffff;
  z-index: 9;
}

.carousel-caption-info h5 {
  color: var(--color-white);
  font-size: 22px;
  font-weight: var(--weight-500);
  font-family: var(--font-sans-serif);
  text-transform: capitalize;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.carousel-caption-info h3 {
  color: var(--color-white);
  font-size: 60px;
  font-family: var(--font-sans-serif);
  font-weight: var(--weight-800);
  letter-spacing: -3px;
  text-transform: capitalize;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.carousel-control-next {
  right: 2%;
}

.carousel-control-prev {
  left: 2%;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 45%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 0;
  transition: opacity .15s ease;
  z-index: 7;
}