.px-contactwall-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  justify-content: center;
}
.px-contactwall-inner.swiper-wrapper {
  flex-wrap: nowrap;
  gap: unset;
  justify-content: unset;
  padding-top: 10px;
}
.px-contactwall-inner .person {
  flex-basis: calc(25% - 25px);
  background-color: var(--color-primary-dark);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  transition: var(--baseTransition);
}
.px-contactwall-inner .person:hover {
  transform: translateY(-10px);
}
.px-contactwall-inner .person .image {
  margin-bottom: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  height: 256px;
  overflow: hidden;
}
.px-contactwall-inner .person .image img {
  border-radius: 15px 15px 0 0;
  height: 100%;
}
.px-contactwall-inner .person .name {
  margin-left: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  margin-right: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
.px-contactwall-inner .person .title {
  color: var(--color-light-blue);
  margin-top: 10px;
  margin-left: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  margin-right: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
}
.px-contactwall-inner .person p:last-of-type {
  margin-bottom: 27px;
}
.px-contactwall-inner .person .button-outline {
  margin-top: auto;
  margin-left: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  margin-right: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  margin-bottom: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  width: fit-content;
}
@media screen and (max-width: 532px) {
  .px-contactwall-inner .person {
    flex-grow: 1;
  }
}
.px-contactwall .buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.px-contactwall .btn-next,
.px-contactwall .btn-prev {
  background: var(--color-light-blue);
  opacity: 1;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1;
  cursor: pointer;
  display: flex;
}
.px-contactwall .btn-next svg,
.px-contactwall .btn-prev svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}
.px-contactwall .btn-prev svg {
  transform: rotate(180deg);
}