#popup{
    display: none;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: url("../assets/red_bg.jpg") no-repeat center center fixed;
    background-size: cover;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.8s ease;
    position: relative;
}

#popup.fixed{
    position: fixed;
}

#popup.popup-hide{
    position: fixed;
    height: 0!important;
    font-size: 0!important;
    top: 60px; /*to fit the h2 for the animation*/
    opacity: 0!important;
}

#popup h2{
    font-size: 158px;
    font-family: 'Roobert', sans-serif;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.8s ease;
}

#popup.popup-hide h2{
    font-size: 0!important;
}

#popup a{
    position: absolute;
    top: 20px;
    left: 20px;
}

#popup .scroll-section{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}