.nav-diagonal {
      background: linear-gradient(
        -45deg,
        white 49.5%,
        #02a1e3 50%
      );
    }
    /* video gallery  */
    .aspect-w-16 {
      position: relative;
      padding-bottom: 56.25%;
    }
    .aspect-w-16 iframe {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }