.backgroundMask{
    position: fixed;
    top: 0;
    left: 0;
    background:#f5f5f5;
    z-index: 999;
    padding:1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    row-gap: 1.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    mask-image: url(/images/lotusintro.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 50px;
    animation: lock-reveal 2700ms forwards ease-in-out;
}

.backgroundMask.hide{
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    top: 100%;
}

@keyframes lock-reveal{
    0%{
        mask-size: 50px;
    }

    100%{
        mask-size: 1000vh;
    }
}

.blackBG{
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 300;
    visibility: visible;
    opacity: 1;
}

.blackBG.hide{
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    bottom: -100%;
}




.backgroundMask img{
    width: calc(100% - 60%);
    z-index: 15;
}


.backgroundMask h1{
    font-size: clamp(.9rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #444;
    z-index: 15;
}
.backgroundMask .listTer{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11.7rem, 1fr));
    gap: .3rem;
    width: 100%;
    z-index: 15;
}
.backgroundMask .listTer span{
    background: #fff;
    padding: .3rem .7rem;
    border-radius: 3rem;
    border: 1px solid #eee;
    box-shadow: 0 3px 8px rgba(0,0,0, .080);
    font-size: clamp(.5rem, 1vw, .8rem);
    text-align: center;
    color: #444;
}

.backgroundMask .introSocial{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}
.backgroundMask .introSocial .item a{
    height: 2.2rem;
    width: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0, #333, #555);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
}

.backgroundMask .getIn{
    padding: .5rem 4rem;
    background: #fff;
    border: none;
    outline: none;
    color: #333;
    font-weight: 700;
    border-radius: 3rem;
    border: 1px solid #aaa;
    margin-top: auto;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}










@media(max-width:920px){
    .backgroundMask img{
        width: 100%;
    }
    .backgroundMask .listTer{
        grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));

    }
}