      html, body{
        margin: 0;
      }
      .video-intro-wrapper{
        opacity: 1;
        width: 100dvw;
        height: 100dvh;
        overflow: hidden;
        transition: opacity 0.5s ease-in-out;
        position: fixed;
        z-index: 1000000;
        display: block;
      }
      .video-intro-wrapper.fade-out{
        opacity: 0;
      }

      .video-intro{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .video-intro-overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100dvw;
        height: 100dvh;
        display: flex;
        gap: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000001;
      }

      .video-intro-text{
        display: flex;
        justify-content: center;
        text-align: center;
      }

      .video-intro-text span{
        width: 80%;
        text-align: center;
        font-size: 32px;
        transition: opacity 0.5s ease-in-out, translate 0.5s ease-in-out;
      }

      .video-intro-button{
        display: flex;
        height: 40px;
        width: fit-content;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        border-radius: 56px;
        padding: 4px 16px 4px 12px;
        gap: 4px;
        background: #188E07;
        border-style: none;
        border-color: none;
        opacity: 1;
        transition: transform 0.2s ease-in-out, opacity 0.5s ease-in-out, translate 0.5s ease-in-out;
      }

      .video-intro.hidden{
        opacity: 0;
      }

      .video-intro-button:hover{
        transform: scale(1.05);
      }

      .video-logo{
        position: absolute;
        top: 20%;
        width: 50%;
        transition: opacity 0.5s ease-in-out, translate 0.5s ease-in-out;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .video-logo img{
        width: 100%;
        margin-bottom: 16px;
      }

      @media (min-width: 768px){
        .video-logo{
          width: 15%;
          top: 30%;
        }

        .video-intro-text span{
          font-size: 48px;
        }
      }