.video {
  height: 700px;
  position: relative;
  background-image: url("/image/videoimg.png.webp");
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video .play {
  font-size: 30px;
  color: white;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.video .play:hover {
  color: red;
  background-color: white;
}
.video .next {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 60px;
  background-color: red;
  display: flex;
  gap: 40px;
  align-items: center;
  color: white;
  cursor: pointer;
}
.video .next a {
  color: white;
  font-size: 26px;
}

@media (max-width: 1200px) {
  .video {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .video {
    height: 350px;
  }
  .video .play {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .video .next {
    padding: 15px 25px;
  }
}/*# sourceMappingURL=video.css.map */