.video .column {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: space-evenly;
  align-items: center;
  background-color: #e8e8e3;
  position: relative;
  padding: 1rem;
}

.video .card {
  position: relative;
  width: 300px;
  height: 28rem;
  perspective: 1000px;
}

.video .card-body {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  overflow: clip;
  background-color: transparent;
}

.video .card-body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .card.texto .card-body {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  flex-wrap: wrap;
}
.video .card.texto h3 {
  color: #363636;
  font-size: 1.2em;
  letter-spacing: 0.6em;
  line-height: 1.4em;
  text-align: center;
  text-transform: uppercase;
}

.video .card.texto p {
  color: #363636;
  font-family: Arapey, Georgia, serif;
  font-size: 1.4em;
  font-style: italic;
  line-height: 1.5em;
  padding-right: 0;
}

.video .card.texto .link a {
  color: #ab7857;
  font-family: Arapey, Georgia, serif;
  font-size: 1.7em;
  letter-spacing: 0.4em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.video .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 728px) {
  .video .row {
    flex-direction: row;
  }
}
