.video-thumbnail {
  position: relative;
  cursor: pointer;
  align-items: center;
}

.video-thumbnail img {
  width: 300px !important;
  height: auto;
  position: relative;
  display: inline-block;
}


.video-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: white;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.video-modal video {
  width: 80%;
  height: auto;
  max-width: 800px;
  max-height: 80vh;
  border-radius: 5px;
}

.video-modal .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
}

/* .play-icon {
  position: relative;
  margin-top: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  color: white;
  cursor: pointer;
  text-shadow: 8px 5px 4px #000000;
} */

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  color: white;
  cursor: pointer;
  z-index: 5;
  text-shadow: 8px 5px 4px #000000;
  pointer-events: none;
}