.banner_list {
  margin: 0 3%;
  overflow: hidden;
}
.banner_list_wrapper{
  display: flex;
  gap: 4%;
  transition: transform 0.3s ease;
}
.banner_list_container {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-around;
}
.banner_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner_item img {
  width: 100%;
}
.banner_pagination {
  display: flex;
  justify-content: center;
  gap: 1%;
  margin-top: 28px;
}
.banner_dot {
  display: inline-block;
  width: 50px;
  height: 8px;
  border-radius: 4px;
  background: #e0e0e0;
  cursor: pointer;
  transition: width 0.2s, background 0.2s, border-radius 0.2s;
}

.banner_dot.active {
  width: 50px;
  border-radius: 4px;
  background: rgba(60, 80, 255, 1);
}

/* Banner two-item row */
.banner_list_container_two {
  justify-content: center!important;
}
.banner_list_container_two .banner_item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}