/* Make scrollbar none visible in this page*/
::-webkit-scrollbar {
  display: none;
}

/* Diagonal Black Overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 1) 00%,
    rgba(0, 0, 0, 0) 80%
  );
  pointer-events: none; /* Allow clicks to pass through */
  z-index: 1000;
}

/* Position Content in Bottom Left */
.overlay-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  text-align: left;
  color: white;
  max-width: 20em;
  max-height: 60dvh;
  pointer-events: auto; /* Enable interaction */
}

/* Logo Image */
.overlay-image {
  max-width: 12em;
  margin-left: -2em;
  display: block;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.info-text {
  width: 50%;
  padding: 0 2em;
}

.info-image {
  width: 50%;
  text-align: center;
}

.info-image img {
  width: 90%;
  border-radius: 2px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.text-center {
  text-align: center;
  margin-top: 30px;
}

.home-buttons {
  gap: 1em;
  justify-content: space-evenly;
  flex-direction: row;
}

/* Media section */

@media (max-width: 768px) {
  .card-body {
    padding: 0px;
  }

  .info-text {
    width: 100%;
    padding: 0px;
  }
  
  .info-image {
    width: 100%;
  }

  .info-section {
    flex-direction: column;
  }
}

/* End of Media section */