.px-imageslider {
  position: relative;
}
.px-imageslider .swiper[data-has_logos=false] .images .image img {
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-imageslider .swiper[data-has_logos=true] .images .image {
  background-color: var(--main-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-width: 200px;
  height: 100%;
  margin: 0 auto;
}
.px-imageslider .swiper[data-has_logos=true] .images .image img {
  border: 0;
  min-height: inherit;
  max-height: 70px;
  max-width: var(--logo-size, 60%);
  object-fit: contain;
}
.px-imageslider .swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 clamp(20px, 6.5vw, 120px);
  box-sizing: border-box;
  position: static;
}
.px-imageslider .buttons .btn-next,
.px-imageslider .buttons .btn-prev {
  background: transparent;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}
.px-imageslider .buttons .btn-next svg,
.px-imageslider .buttons .btn-prev svg {
  width: 14px;
  height: 25px;
}
.px-imageslider .buttons .btn-next svg path,
.px-imageslider .buttons .btn-prev svg path {
  fill: var(--main-color);
}
@media screen and (max-width: 768px) {
  .px-imageslider .buttons .btn-prev {
    left: 10px;
    transform: translate(0, -50%);
  }
  .px-imageslider .buttons .btn-next {
    right: 10px;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 769px) {
  .px-imageslider .buttons .btn-prev {
    left: calc(clamp(20px, 6.5vw, 120px) / 2);
    transform: translate(-100%, -50%);
  }
  .px-imageslider .buttons .btn-next {
    right: calc(clamp(20px, 6.5vw, 120px) / 2);
    transform: translate(100%, -50%);
  }
}
.px-imageslider .buttons .btn-prev svg {
  transform: rotate(180deg);
}