.video-grid .video-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px;
}
@media (max-width: 575px) {
  .video-grid .video-container {
    grid-template-columns: 1fr;
  }
}
.video-grid .video-container .video {
  position: relative;
}
.video-grid .video-container .video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-grid .video-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 15px;
  text-align: center;
  font-family: sans-serif;
  box-sizing: border-box;
}
.video-grid .video:hover .video-info-overlay {
  opacity: 1;
}
.video-grid .video-info-overlay h3 {
  margin: 5px 0;
  font-size: 16px;
}
.video-grid .video-info-overlay p {
  margin: 3px 0;
  font-size: 13px;
}
.video-grid .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.video-grid .owl-theme .owl-nav .owl-prev,
.video-grid .owl-theme .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.568627451);
  margin: 0;
  font-size: 20px;
  border-radius: 50%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}
.video-grid .owl-theme .owl-nav .owl-prev:hover,
.video-grid .owl-theme .owl-nav .owl-next:hover {
  background: #fff;
}
.video-grid .owl-theme .owl-nav .owl-prev {
  margin-right: auto;
}
.video-grid .owl-theme .owl-nav .owl-next {
  margin-left: auto;
}
.video-grid .owl-theme .owl-dots {
  margin-top: 20px;
}
.video-grid .owl-theme .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.2);
}
.video-grid .owl-theme .owl-dots .owl-dot.active span {
  background: rgba(0, 0, 0, 0.8);
}/*# sourceMappingURL=video-grid.css.map */