.intro {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease 400ms;
}

.intro.no-transition {
    transition: none;
}

.intro.active {
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

.intro, .intro--wrapper, .intro--image {
    width: 100vw;
    height: 100vh;
}

.intro--image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro--image img {
    width: 0;
    height: 0;
    transition: all ease 700ms;
}

.intro--image.active img {
    width: 300px;
    height: 321px;
}