.brand-logo {
  padding: 0 15px !important;
}

.color-black {
  background-color: black;
}

.card-image:hover img {
  transform: scale(1.3);
  transition-duration: 0.8s;
  filter: grayscale(90%);
}

.card-image {
  overflow: hidden;
}

.card:hover {
  box-shadow: 18px 22px 21px 0px rgba(0, 0, 0, 0.66);
  cursor: pointer;
}

.card-content {
  height: 29vh;
  color: black;
}

/* pagination */

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.pagination-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.pagination-button:disabled {
  color: #757575;
  border-color: #757575;
}

.container-paginador {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* loader */

.contenedor {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  overflow: hidden;
}
.loader:after {
  content: '';
  position: absolute;
  inset: 8px;
  margin: auto;
  background: #222b32;
}
.loader:before {
  content: '';
  position: absolute;
  inset: -15px;
  margin: auto;
  background: #de3500;
  animation: diamondLoader 2s linear infinite;
}
@keyframes diamondLoader {
  0%,
  10% {
    transform: translate(-64px, -64px) rotate(-45deg);
  }
  90%,
  100% {
    transform: translate(0px, 0px) rotate(-45deg);
  }
}

.esconder {
  display: none;
}
