  /*--------------------------------------------------------------
  # Home banner styles
  --------------------------------------------------------------*/
:root {
  --bannerColor: #00788a;
}

.home-banner img {
  height: 350px;
  object-fit: cover;
  width: 100%;
  z-index: -1;
}

.home-banner .slide-text {
  padding: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.home-banner .slide-text p {
  background-color: var(--bannerColor);
  box-shadow: 6px 6px 0 -1px #ffffff;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  padding: 0.5rem;
  opacity: 0.8;
  width: fit-content;
  z-index: 3;
}

.home-banner button {
  background: white;
  border: none;
  border: 2px solid var(--bannerColor);
  /* box-shadow: 6px 6px 0 -1px var(--bannerColor); */
  color: #161C2D;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.6rem;
  padding: 0.5rem;
}

.home-banner button:hover {
  border: 2px solid white;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--bannerColor);
}

  /*--------------------------------------------------------------
  # Mobile styles
  --------------------------------------------------------------*/
@media (max-width: 768px) {
  .home-banner .slide-text {
    padding: 1rem;
  }
}