.simple-video {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1280px) {
  .simple-video {
      padding: 0;
  }
}

.simple-video--video-container {
  height: 310px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .simple-video--video-container {
      height: 460px;
  }
}

.simple-video--video-container:hover .simple-video--btn {
  scale: 1.3;
  transform-origin: left bottom;
}

.simple-video img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.simple-video .legend {
  font-family: var(--lato);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  display: block;
  margin-top: 16px;
}

.simple-video--btn {
  height: 152px;
  width: 152px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .6s;
  transform-origin: bottom left;
}

.simple-video--btn::before {
  content: '';
  width: 56px;
  height: 56px;
  background: url(../images/icon-play.svg) no-repeat center;
  background-size: contain;
}

.simple-video .full {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}