.swiper-pagination {
  width: 100%;
  height: 50px;
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.swiper-pagination .pagination-button {
  width: 100px;
  font-size: 1rem;
  font-weight: bolder;
  border: none;
  background-color: rgba(66, 167, 195, 0.8);
  color: white;
  cursor: pointer;
}
.swiper-pagination .pagination-button:hover {
  background-color: rgba(66, 167, 195, 1);
}

.pressed-button {
  box-shadow: inset 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
}

.swiper-pagination button:first-child {
  border-radius: 30px 0 0 30px;
  border-right: white 1px solid;
}
.swiper-pagination button:last-child {
  border-radius: 0 30px 30px 0;
  border-left: white 1px solid;
}
