.video {
  width: 100%;
  background: #f3f4f9;
}
.video .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.video .inner .item {
  width: calc((100% - 20px) / 2) !important;
  border-radius: 12px;
  background: #bbbbbb;
  width: 450px;
  margin-bottom: 27px;
  aspect-ratio: 1.77695167;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-self: center;
  position: relative;
}
.video .inner .item video {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.video .inner .item .img-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.video .inner .item .img-inner .img-poster {
  width: 100%;
  height: 100%;
}
.video .inner .item .img-inner .img-poster img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.video .inner .item .img-inner .img-poster .mask {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video .inner .item .img-inner .img-poster .mask .play {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.video .inner .item .img-inner .img-poster .mask .play svg {
  width: 40%;
  height: 40%;
  cursor: pointer;
  position: relative;
  left: 4px;
}
.video .inner .item .img-inner .img-poster .mask .play:hover {
  transform: scale(1.05);
}
.video .inner .item:hover video {
  transform: scale(1.05);
}
.video video {
  width: 100%;
}
@media (max-width: 900px) {
  .video .inner .item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .video .inner .item {
    width: 100%;
  }
}
