.clientes__slide {
  padding-bottom: 0;
  position: relative;
}

.clientes__card {
  align-items: center;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 8px;
  display: flex;
  height: 60px;
  justify-content: center;
  padding: 12px 20px;
  transition: border-color 0.2s ease;
}
.clientes__card:hover, .clientes__card:focus {
  border-color: var(--primary-color);
}
.clientes__card img {
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.clientes__controls {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.clientes__arrow {
  align-items: center;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 16px;
  color: var(--graphite-color);
  cursor: pointer;
  display: flex;
  font-size: var(--text);
  font-weight: 600;
  height: 32px;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
  width: 32px;
}
.clientes__arrow:hover, .clientes__arrow:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.clientes__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}

.clientes__pagination.swiper-pagination {
  align-items: center;
  display: flex;
  gap: 8px;
  position: static;
  width: auto;
}
.clientes__pagination.swiper-pagination .swiper-pagination-bullet {
  background: var(--line-color);
  height: 6px;
  margin: 0;
  opacity: 1;
  width: 6px;
}
.clientes__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/*# sourceMappingURL=card-cliente.css.map */
