.landing-wrapper{
    position: fixed;
    inset: 0;
    background-color: #fff;
    display: none;
    z-index: 15;
}

.landing-wrapper::before{
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/logo-icon-stroke.svg) -110% 0 / 70% no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.landing-wrapper .inner{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    gap: 1rem;
}

.welcome-landing{
    letter-spacing: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .3s linear;
}

.welcome-landing.active{
    opacity: 1;
    transform: translateY(0px);
}

.landing-logo{
    max-width: 500px;
    width: 84%;
}

.landing-logo #trevoc-icon{
    opacity: 0;
    transition: all 1.5s linear;
}

.landing-logo .logo-letter{
    opacity: 0;
    transition: all .5s linear;
}

.landing-logo #trevoc-icon.active, .landing-logo .logo-letter.active{
    opacity: 1;
}

#logo-text, #trevoc-icon polygon{
    opacity: 0;
    transition: all .3s linear;
    transform: translateY(40px);
}

#logo-text.active, #trevoc-icon polygon.active{
    opacity: 1;
    transform: translateY(0);
}

.wrapper{
    opacity: 0;
    transition: all 400ms ease-in-out;
}

.wrapper.in{
    opacity: 1;
}