.video-play-container .video-play.show-mobile {
    display: none; 
}
.video-play-container .video-play.show-desktop {
    display: block; 
}
.video-play-container .video-play img {
    width: 100%;
    border-radius: 25px;
    border: 5px solid white;
    box-shadow: 2px 2px 10px #999999;
  cursor: pointer;
}
.hero-video-container.video-play.hideplaybutton:after {
    display:none; 
}
#video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10000;
  box-shadow: 0 0 500px black;
  border-radius: 25px;
  border: 5px solid white;
}
#video video {
  border-radius: 25px;
}
#close{
  font-size: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #ffffff;
  border-radius: 100%;
  font-weight: bold;
  color: #000000;
  position: absolute;
  top: -25px;
  right: -25px;
  display: none
    z-index: 10001;
}
@media only screen and (max-width: 480px) {
  .hero-video-container .video-play,
  .video-play-container {
    width: 100% !important; 
  }
  .benefits-hero .video-play.show-mobile {
      display: block; 
      margin-bottom: 30px;
  }
  .benefits-hero .video-play.show-desktop {
      display: none; 
  }
  .benefits-hero .bgWhiteOpx .h-full.flex.w-full {
    flex-direction: column;  
  }
  .benefits-hero .bgWhiteOpx .video-play {
    width: 100%; 
  }
}