* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.container__carousel {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  overflow: hidden;
  margin: auto;
}

#slider__carousel {
  display: flex;
  padding-top: 50px;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  scroll-behavior: smooth;
  transform: translateX(-100%);
}

#slider__carousel.slider__3d {
  transform: translateX(-66.6666666667%);
}

#slider__carousel .slide__carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0 0;
  color: #222831;
  width: 100%;
  height: 280px;
  background-color: #e2dfd0;
  overflow: hidden;
}

#slider__carousel .slide__carousel.slide__3d {
  position: relative;
  width: 33.3333333333%;
  height: 280px;
  border-radius: 20px;
}

#slider__carousel .slide__carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.dots__carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dots__carousel .dot__carousel {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  position: relative;
  bottom: -50px;
}

.dots__carousel .dot__carousel:hover {
  background-color: #e2dfd0;
}

.dots__carousel .dot__carousel.active {
  background-color: #eeeeee;
}

.arrows__carousel {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.arrows__carousel .arrow__carousel {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: red;
}

.arrows__carousel .arrow__carousel:first-child::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.arrows__carousel .arrow__carousel::after {
  content: "";
  background-image: url("../../icon/ic-arrow.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.arrows__carousel .arrow__carousel:hover {
  background-color: #31363f;
}

.arrows__carousel .arrow__carousel:hover::after {
  background-image: url("../../icon/ic-arrow-active.png");
}

/*# sourceMappingURL=carousel-bundle.css.map */