.video_wrapper {
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video_wrapper img {
  display: block;
}

.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.video_cover {
  position: absolute;
  inset: 0;
  display: flex;
  /* align-items: center;
        justify-content: center; */
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 2;
}

.video_cover img {
  width: 100%;
  height: 100%;
}

.play_btn {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border: none;
  background: rgba(224, 227, 234, 0.64);
  -webkit-backdrop-filter: blur(7.599999904632568px);
  backdrop-filter: blur(7.599999904632568px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 1.5rem;
  right: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.play_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.play_icon {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ff4900;
  margin-left: 4px;
}

.video_cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video_el {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
