.b-hero-overlay {
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: linear-gradient(
            338deg,
            #006246 -22.5%,
            #01b27f 27.02%,
            #00d799 40.75%,
            #00a273 63.51%,
            #004531 95.96%
        ),
        linear-gradient(180deg, #00996d 0%, #008860 100%),
        #003828;
    
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.b-hero-overlay.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
}

.b-hero-overlay .width-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.b-hero-overlay .width-wrapper .overlay-cross {
    cursor: pointer;
    position: absolute;
    top: 48px;
    right: 48px;
    @media screen and (max-width: 1024px) {
        top: 20px;
        right: 20px;
        height: 30px;
        width: 30px;
    }
}
.b-hero-overlay .width-wrapper .overlay-cross svg {
    height: 100%;
    width: 100%;
}
