.video_slider {
  width: 100%;
}

.video_slider .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video_swiper {
  margin-top: 36px;
  width: 100%;
}

.video_swiper_slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video_wrap {
  position: relative;
  aspect-ratio: 407 / 275;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
  cursor: pointer;
}

.video_wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 0;
}

.video_wrap img {
  position: relative;
  z-index: 1;
}

.video_slide_play {
  border: none;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1.5358332395553589px);
  transition: var(--TransitionStatic);
  z-index: 2;
}

.video_wrap.is-playing .video_slide_play {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
  pointer-events: none;
}

.video_wrap:not(.is-playing):hover .video_slide_play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video_slide_play:not(.is-playing):hover {
  opacity: 0.8;
}

.video_slide_play::before {
  content: "";
  position: absolute;
  right: 32%;
  top: 33%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 9px 0 9px 13px;
  border-color: transparent transparent transparent var(--Blue);
}

.video_row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Blue);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.video_row .lozad {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.video_slide_desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.video_swiper_pagination .swiper-pagination-bullet-active {
  background: var(--Blue);
}

@media (max-width: 992px) {
  .video_swiper {
    margin-top: 16px;
  }
}
