.banner-slider {
  overflow: hidden;
  position: relative;
}

/* BANNER SLIDER ITEM */
.banner-slider-item__container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__container {
    display: block;
  }
}

.banner-slider-item__gradient {
  display: none;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__gradient {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120.45deg, #154734 17.89%, rgba(51, 173, 127, 0) 60.63%);
  }
}

.banner-slider-item__container-inner {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__card {
    position: absolute;
    z-index: 2;
    margin-top: 2rem;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__card.card {
    max-width: 550px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray);
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__card.overlay {
    max-width: 600px;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__card.overlayWithGradient {
    max-width: 600px;
  }
}

.banner-slider-item__header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--gray);
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__header {
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.banner-slider-item__header p {
  color: var(--primary-color);
  font-size: 15px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .overlayWithGradient .banner-slider-item__header p {
    color: var(--white);
  }
}

.banner-slider-item__header h1,
.banner-slider-item__header h2 {
  font-size: 30px;
  letter-spacing: -1px;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__header h1,
  .banner-slider-item__header h2 {
    font-size: 36px;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .overlayWithGradient .banner-slider-item__header h1,
  .overlayWithGradient .banner-slider-item__header h2 {
    color: var(--white);
  }
}

.banner-slider-item__checklist {
  padding-top: 1rem;
  border-bottom: 1px dotted var(--gray);
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__checklist {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.banner-slider-item__checklist article {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.banner-slider-item__checklist article figure {
  width: 32px;
}

.banner-slider-item__checklist article h2,
.banner-slider-item__checklist article p {
  flex: 1;
  margin-left: 1rem;
}

.banner-slider-item__description {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__description {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .overlayWithGradient .banner-slider-item__description p {
    color: var(--white);
  }
}

.banner-slider-item__footer {
  padding-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.banner-slider-item__video {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__video {
    aspect-ratio: 16 / 6;
  }
}

.banner-slider-item__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider-item__image {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .banner-slider-item__image {
    aspect-ratio: 16 / 6;
  }
}

.banner-slider-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}