.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item::before {
  content: none;
}

.carousel-item-2::before {
  content: none;
}
  
.arrow {
  background: #ddd;
  border-radius: 15px;
  border: 1px solid gray;
  font-size: 24px;
  line-height: 24px;
  color: #444;
  display: inline-block;
}

.arrow:focus {
  outline: none;
}

.arrow:hover {
  background: #ccc;
  cursor: pointer;
}

.prev {
  left: 7px;
}

.next {
  right: 7px;
}

.gallery {
  width: 100%;
  overflow: hidden;
}

.gallery ul {
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  box-sizing: border-box;
  overflow: hidden;

}

.gallery li {
  display: inline-block;
  text-align: center;
}

.carousel-text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

@media (width >= 1280px) {
  .carousel-text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (width >= 1280px) {
  .carousel-text {
    font-size: 22px;
    line-height: 30px;
  }
}

.gallery label {
  text-align: center;
}