.all-content {
    display: none;
    overflow: hidden;
}
.loading-page {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    z-index: 999999999;
    overflow: hidden;
}
@media (min-width: 700px) {
    .loading-page {
        background: url('../images/background.webp');
        background-size: cover;
        background-repeat: no-repeat;
    }
}
.loading-container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    animation: scale 1.3s linear forwards ;
    animation-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    animation-delay: 6.3s;
}
@keyframes scale {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.1;
    }
    100% {
        scale: .7;
    }
}
.loading-page .loading-icon {
    width: 120px;
}
.loading-page .loading-icon path {
    fill: transparent;
    stroke-width: 10;
    stroke: #00eeff;
    stroke-dasharray: 19500;
    stroke-dashoffset: 19500;
    animation: loading-animation 5.5s linear forwards ;
    -webkit-animation: loading-animation 5.5s linear forwards ;
}
@keyframes loading-animation{
    0% {
        stroke-dashoffset: 0;
    }
    40% {
        stroke-dashoffset: 19500;
    }
    50% {
        stroke-dashoffset: 19000;
        fill: transparent;
    }
    100% {
        stroke-dashoffset: 17000;
        fill: var(--blur-color);
    }
}
.loading-page .text-container {
    margin-left: -16px;
    overflow: hidden;
    padding: 20px 0;
}
.loading-page .text {
    position: relative;
    font-size: 60px;
    color: var(--text-color);
    opacity: 4;
    transform: translateX(-280PX);
    animation: text-animation 3.5s linear forwards;
    animation-delay: 1s;
    z-index: 99999;
    display: flex;
}
.loading-page .text .i {
    transform: scaleY(0.8);
    margin-bottom: -50px;
}
@keyframes text-animation {
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
.dot {
    color: var(--blur-color);
    font-size: 30px;
    position: absolute;
    top: -8px;
    left: 46.6%;
    animation: bounce .6s infinite alternate;
    animation-delay: 4s;
    height: 45px;
}

@keyframes bounce {
    0% { 
        transform: translateY(0); 
    }
    100% { 
        transform: translateY(-4px);
    }
}
@media (max-width: 700px) {
    .loading-pag {
        background-color: black;
    }
    .loading-page .loading-icon  {
        width: 100px;
        height: 100px;
    }
    .loading-page .text {
        font-size: 50px;
    }
    .dot {
        left: 46.3%;
        top: -10px;
    }
    .loading-page .text .i {
        margin-bottom: -40px;
    }
}