.carousel {
  margin: 24px 0px 12px;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.carousel-sections-scroll {
  flex: 1;
  overflow: hidden;
}
.carousel-sections {
  display: flex;
  transition: 250ms transform ease-in;
}

.carousel-sections > div {
  min-width: 100%;
  height: 100%;
  border-radius: 24px;
  min-height: 100px;
}

.prev-arrow,
.next-arrow {
  z-index: 10;
  position: absolute;
  height: 45px;
  width: 45px;
  margin: 0px 12px;
  background-color: rgba(115, 5, 253, 0.2);
  color: rgb(115, 5, 253);
  border-radius: 50%;
  cursor: pointer;
  transition: 150ms all ease-in;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(184, 184, 184, 0.5);
  -moz-box-shadow: 0px 0px 3px 0px rgba(184, 184, 184, 0.5);
  box-shadow: 0px 0px 3px 0px rgba(184, 184, 184, 0.5);
}

.prev-arrow {
  left: 0;
}
.next-arrow {
  right: 0;
}
.prev-arrow:hover,
.next-arrow:hover {
  -webkit-box-shadow: 0px 0px 6px 0px rgba(128, 128, 128, 0.5);
  -moz-box-shadow: 0px 0px 6px 0px rgba(128, 128, 128, 0.5);
  box-shadow: 0px 0px 6px 0px rgba(128, 128, 128, 0.5);
}

.prev-arrow:after {
  font-family: "Material Symbols Outlined";
  content: "chevron_left";
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgb(115, 5, 253);
}
.next-arrow:after {
  font-family: "Material Symbols Outlined";
  content: "chevron_right";
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgb(115, 5, 253);
}

.carousel-dots {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 8px;
  background-color: #afafaf;
  margin: 0px 4px;
  transition: 100ms background-color ease-in;
}
.carousel-dot.active {
  background-color: #5f5f5f;
}
