/* .transition-1 {
    position: fixed;
    top: 0%;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-out;
}

.transition-1.is-active {
    opacity: 1;
    pointer-events: all;
} */
body {
    overflow: hidden;
}

.outro-transition {
    position: fixed;
    top: 0%;
    right: -100%;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background-color: #222;
    /* background-image: url('images/transition-img.png'); */
    pointer-events: none;
    transition: 0.5s ease-in;
}

.outro-transition.is-active {
    right: 0px;
}

.intro-transition {
    position: fixed;
    top: 0%;
    left: -100%;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background-color: #222;
    /* background-image: url('images/transition-img.png'); */
    pointer-events: none;
    transition: 0.5s ease-out;
}

.intro-transition.is-active {
    left: 0px;
}