.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  transition: 0.2s;
  width: 708px;
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 400px;
  width: 708px;
}

.video-thumb:hover {
  transform: scale(1);
  opacity: 1;
}

.video-thumb:before {
  content: "";
  position: absolute;
  background: url("../../assets/img/play.svg") no-repeat center center;
  background-size: 6%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  background-color: rgba(5,4,47,0.5);
}

.video-thumb:hover:before {
  opacity: 1;
}

