.transition{
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition svg{
    width: 240px !important;
}


.transition-1{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 101;
    background-color: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}

.transition-1.is-active{
    opacity: 1;
    pointer-events: all;
}


.transition-2{
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    background-color: #080d14;
    pointer-events: none;
    transition:  0.5s ease-out;
}


.transition-2.is-active{
    top: 0;
    pointer-events: all;
}