.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.clientes {
  min-height: auto;
  height: auto;
  padding: 90px 0;
  background-color: #fff;
}
.clientes .contenedor .titulo-clientes {
  text-align: center;
  margin-bottom: 30px;
  color: #216a93;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}
.clientes .contenedor .clientes-slider .splide__track .splide__list .splide__slide .clientes__item {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  max-height: 85px;
}
.clientes .contenedor .clientes-slider .splide__track .splide__list .splide__slide .clientes__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
  transition: all 0.5s;
  opacity: 0.5;
}
.clientes .contenedor .clientes-slider .splide__track .splide__list .splide__slide .clientes__item:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.clientes .contenedor .clientes-slider .splide__arrows button {
  background-color: transparent;
  outline: none;
  border: none;
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
}
.clientes .contenedor .clientes-slider .splide__arrows button svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.clientes .contenedor .clientes-slider .splide__arrows button.splide__arrow--prev {
  left: 0;
}
.clientes .contenedor .clientes-slider .splide__arrows button.splide__arrow--next {
  right: 0;
}
.clientes .contenedor .clientes-slider .splide__pagination {
  bottom: auto;
  top: calc(100% + 20px);
}
.clientes .contenedor .clientes-slider .splide__pagination li button {
  background-color: #216a93;
  opacity: 0.3;
  outline: none;
  border: none;
}
.clientes .contenedor .clientes-slider .splide__pagination li button.is-active {
  transform: scale(1);
  opacity: 1;
}/*# sourceMappingURL=index.css.map */