.items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14rem;
  padding-bottom: 9rem;
  user-select: none;
}

.items .item {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0 !important;
}

.item.current {
  opacity: 1;
  z-index: 99;
  box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.7);
}

.item.prev {
  z-index: 2;
  opacity: 0.25;
  transform: translate(-125%, -50%);
}

.item.next {
  z-index: 2;
  opacity: 0.25;
  transform: translate(25%, -50%);
}

.items .button-container {
  width: 275px;
  z-index: 100;
}

.button-container .carousel-button {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  position: relative;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.button-container .carousel-button:hover {
  opacity: 1;
}

.button-container .carousel-button:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -1.2rem;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
  z-index: -99;
}

.button-container .carousel-button:nth-child(1) {
  float: left;
}

.button-container .carousel-button:nth-child(2) {
  float: right;
}