:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

.diapo_fuentes .page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.diapo_fuentes .card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 3vmin;
  width: 33%;
  text-align: center;
  color: white;
  background-color: white;
  margin: 1%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

.diapo_fuentes .card {
  height: 100%;
}

.diapo_fuentes .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.diapo_fuentes .card:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.320) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.540) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.790) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.diapo_fuentes .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.diapo_fuentes .btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  color: white;
  background-color: var(--additional-color);
}

.diapo_fuentes .btn:hover {
  background-color: var(--second-additional-color);
}

@media (hover: hover) and (min-width: 600px) {
  .diapo_fuentes .card:after {
    transform: translateY(0);
  }

  .diapo_fuentes .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .diapo_fuentes .content>*:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .diapo_fuentes .card:hover,
  .card:focus-within {
    align-items: center;
  }

  .diapo_fuentes .card:hover:before,
  .card:focus-within:before {
    transform: translateY(-4%);
  }

  .diapo_fuentes .card:hover:after,
  .card:focus-within:after {
    transform: translateY(-50%);
  }

  .diapo_fuentes .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
    justify-content: center;
  }

  .diapo_fuentes .card:hover .content>*:not(.title),
  .card:focus-within .content>*:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .diapo_fuentes .card:focus-within:before,
  .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content>*:not(.title) {
    transition-duration: 0s;
  }
}

.diapo_fuentes .current_slide {
  left: 0;
}

.diapo_fuentes .prev_slide {
  left: -200%;
}

.diapo_fuentes .next_slide {
  left: 200%;
}

.diapo_fuentes .slides_container>div {
  transition: left 1s ease;
}

.diapo_fuentes .card .content>div:first-child,
.diapo_fuentes .card .content>div:last-child{
  height: 20%;
}

.diapo_fuentes .card .content>div:nth-child(2) {
  height: 60%;
}

.diapo_fuentes .card .content>div>bold_h2,
.diapo_fuentes .card .content>div:nth-child(2)>bold_p {
  color: white;
}

.diapo_fuentes .card .content>div:last-child>bold_p>a{
  text-decoration: none;
  color: white;
}