.landing-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all .75s linear;
}

.landing-bricks{
    width: 250px;
    margin: 0 auto;
    transition: all .5s linear;
}

.landing-bricks rect{
    opacity: 0;
    animation: collide 1.5s ease forwards 1s;
}

#brick1{
    transform: translateX(20px);
}
#brick2{
    transform: translateX(-20px);
}

@keyframes collide{
    100%{transform: translateX(0px); opacity: 1;}
}

.landing-logo{
    width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 2s ease;
    clip-path: circle(0% at 50% 50%);
}

.landing-logo.show{
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
}