#net-vanta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.dot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.dot-overlay .dot {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1px;
    height: 1px;
    background: #3dcc7799;
    opacity: 0;
    border-radius: 100%;
    transform: translate(-50%,-50%);
    transition: width .8s ease-in-out, height .8s ease-in-out, opacity .8s ease-in-out;
}

.dot-overlay .dot.enlarge {
    width: 49px;
    height: 49px;
    opacity: 1;
}

.dot-overlay .dot-inner {
    width: 1px;
    height: 1px;
    background: #3DCC77;
    opacity: 0;
    border-radius: 100%;
    transition: width .8s ease-in-out, height .8s ease-in-out, opacity .8s ease-in-out;
}
.dot-overlay .dot.enlarge .dot-inner {
    width: 27px;
    height: 27px;
    opacity: 1;
}

@media (max-width: 768px) {
    .dot-overlay {
        display: none;
    }
    #net-vanta {
        display: none;
    }
}