.carousel-div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  padding-bottom: 64px;
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.carousel-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  bottom: 64px;
  margin-block: auto;
  height: fit-content;
  width: 48px;
  background-color: white;
  border: none;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 100ms;
}
.carousel-arrow:hover,
.carousel-arrow:focus {
  opacity: 1;
}
.carousel-arrow--prev {
  left: 0;
}
.carousel-arrow--next {
  right: 0;
}
.carousel-container {
  width: 100%;
  padding-block: 16px 32px;
  margin: 16px 48px;
  overflow-x: auto;
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  scroll-snap-type: x mandatory;
  flex-flow: row nowrap;
  scroll-behavior: smooth;
}
.carousel-container::-webkit-scrollbar {
  height: 14px;
  width: calc(100% - 48px);
}
.carousel-container::-webkit-scrollbar-track {
  background: #b1b3b399;
}
.carousel-container::-webkit-scrollbar-thumb {
  background: #29AB87;
}
.carousel-container::-webkit-scrollbar-track-piece:start {
  background: #29AB87;
}
.carousel-slide {
  flex: 1 0 auto;
  /* aspect-ratio: 1; */
  flex-flow: column nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #bae; */
  scroll-snap-align: center;
}
/* @media (max-width: 600px) {
  .carousel-slide {
    flex: 1 0 90%;
  }
} */
@media (max-width: 600px) {
  .carousel-container {
    margin: 0;
  }
}