.video-section {
  height: 100dvh;
  position: relative;
  background-color: black;
}

.video-section .video-blured {
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;

  width: 100%;
  height: 100%;
}

.video-blured video {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  object-fit: cover;
  border-radius: 8px;
  filter: blur(2rem) contrast(1.9);
}

.video-section .video-fordward {
  top: 0;
  left: 0;
  z-index: 4;
  position: absolute;

  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section .video-fordward>div {
  width: 85%;
  aspect-ratio: 16 / 9;
  height: auto;

  border-radius: 24px;
  border: 1px solid #434343;

  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.35),
    0 8px 24px -6px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 -1px 0 0 rgba(255, 255, 255, 0.05) inset;
}

.video-section .video-fordward>div>video {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 16px;
  /* filter: contrast(0.9); */
}

.video-section .video-fordward>div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
}

.video-section .video-fordward>div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.66) 100%);
  pointer-events: none;
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .video-section .video-fordward>div {
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .video-section .video-fordward>div {
    width: 95%;
  }
}

@media (max-width: 480px) {

  .video-section .video-fordward>div,
  .video-section .video-fordward>video {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .video-section {
    height: 81.8dvh;
  }
}