.homeAlert{
    position: fixed;
    z-index: 999;
    font-size: 16px;
    font-family: 'overpass-variable', sans-serif;
    line-height: 24px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #8E8B8B 0%, #D3D3D3 100%);
    padding: 20px;
    max-width: calc(80vw - 20px);
    color:#fff;
}
.homeAlert .btnClose{
    cursor: pointer;
}
.homeAlertBG {
    position: fixed;
    z-index: 998;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
    .homeAlert{
        width: 100%;
        max-width: calc(100vw - 80px);
        font-size: 4vw;
        line-height: 6vw;
    }
}