.loading-container {
    background: #000;
    z-index: 9999;
}
.container {
    overflow: hidden;
    position: relative;
    width: 50%;
    margin: 0 auto;
}
.cls-1 {
    fill: #fff;
}
.cls-1,
.cls-2 {
    stroke-width: 0px;
}
.cls-2 {
    fill: #e60000;
}
#svg {
    transform-origin: center;
    animation: anim_zoom 1.5s linear 0.2s;
}

@keyframes anim_zoom {
    0% {
        transform: scale(1, 1);
    }
    20% {
        transform: scale(0, 0);
    }
    100% {
        transform: scale(1, 1);
    }
}