.aeepdf-videos {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (min-width: 1200px) {
  .aeepdf-videos {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.aeepdf-videos__intro {
  max-width: 720px;
  margin: -10px auto 50px;
  text-align: center;
}

.aeepdf-videos__intro p {
  margin: 0;
  color: var(--thm-text);
  font-size: 16px;
  line-height: 1.7;
}

.aeepdf-videos__filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.aeepdf-videos__filtro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid #e9ebee;
  background: #fff;
  color: var(--thm-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all 400ms ease;
}

.aeepdf-videos__filtro:hover,
.aeepdf-videos__filtro.is-active {
  background: #182e65;
  border-color: #182e65;
  color: #fff;
}

.aeepdf-video-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #111;
}

.aeepdf-video-ratio img,
.aeepdf-video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.aeepdf-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--thm-base);
  color: #fff;
  font-size: 20px;
  z-index: 2;
  transition: all 500ms ease;
}

.aeepdf-video-play .fa-play {
  margin-left: 3px;
}

.aeepdf-video-play .ripple,
.aeepdf-video-play .ripple:before,
.aeepdf-video-play .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: ripple 3s infinite;
}

.aeepdf-video-play .ripple:before {
  content: "";
  animation-delay: 0.9s;
}

.aeepdf-video-play .ripple:after {
  content: "";
  animation-delay: 1.8s;
}

.aeepdf-video-featured {
  margin-bottom: 60px;
}

.aeepdf-video-featured__player {
  overflow: hidden;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
}

.aeepdf-video-featured__player .aeepdf-video-play {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  font-size: 24px;
}

.aeepdf-video-featured__meta,
.aeepdf-video-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.aeepdf-video-featured__info {
  background: whitesmoke;
  padding: 28px 30px 30px;
}

.aeepdf-video-featured__title {
  margin: 0 0 12px;
  color: var(--thm-black);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.aeepdf-video-featured__desc {
  margin: 0;
  color: var(--thm-text);
  font-size: 16px;
  line-height: 1.7;
}

.aeepdf-video-card {
  margin-bottom: 30px;
  background: #fff;
  transition: all 500ms ease;
}

.aeepdf-video-card__media {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.aeepdf-video-featured__player,
.aeepdf-video-card__media {
  width: 100%;
}

.aeepdf-video-card__media img {
  transform: scale(1);
  transition: transform 500ms ease;
}

.aeepdf-video-card:hover .aeepdf-video-card__media img {
  transform: scale(1.04);
}

.aeepdf-video-card:hover .aeepdf-video-play {
  background-color: #fff;
  color: var(--thm-base);
}

.aeepdf-video-featured__player:hover .aeepdf-video-play {
  background-color: #fff;
  color: var(--thm-base);
}

.aeepdf-video-card__content {
  background-color: whitesmoke;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 24px 22px 26px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.04);
  transition: all 500ms ease;
}

.aeepdf-video-card:hover .aeepdf-video-card__content {
  border-color: #e9ebee;
}

.aeepdf-video-card__title {
  margin: 0 0 10px;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.aeepdf-video-card__title a,
.aeepdf-video-card__title button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  transition: color 400ms ease;
}

.aeepdf-video-card__title a:hover,
.aeepdf-video-card__title button:hover {
  color: var(--thm-base);
}

.aeepdf-video-card__desc {
  margin: 0 0 16px;
  color: var(--thm-text);
  font-size: 15px;
  line-height: 1.6;
}

.aeepdf-video-card .thm-btn__eight {
  padding: 12px 28px;
}

.aeepdf-video-date,
.aeepdf-video-cat {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

.aeepdf-video-date {
  color: var(--thm-base);
}

.aeepdf-video-cat {
  color: #182e65;
  text-transform: uppercase;
}

.aeepdf-videos__vazio {
  text-align: center;
  padding: 40px 20px;
  color: var(--thm-text);
}

.aeepdf-videos__cta {
  margin-top: 20px;
  text-align: center;
}

.js-aeepdf-play {
  cursor: pointer;
}

.aeepdf-video-ratio.is-playing .aeepdf-video-play {
  display: none;
}

@media (max-width: 767px) {
  .aeepdf-videos {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .aeepdf-video-featured__title {
    font-size: 22px;
  }

  .aeepdf-video-featured__info {
    padding: 22px 18px 24px;
  }

  .aeepdf-video-play,
  .aeepdf-video-featured__player .aeepdf-video-play {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    font-size: 18px;
  }

  .aeepdf-video-card__title {
    font-size: 18px;
  }
}
