﻿


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
.parent {
    background: #f9f9f9;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    flex-direction: column;
}

.preloader {
    font-family: "Russo One", sans-serif;
    position: absolute;
    width: 548px;
    height: 121px;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#text {
    text-transform: uppercase;
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: #42a5f5;
    font-size: 140px;
}
h1.brand1 {
    font-size: 40px;
}

    h1.brand1 span:nth-child(1) {
        background-color: transparent;
        color: #202658;
    }

    h1.brand1 span:nth-child(2) {
        background-color: #202658;
        color: #f3f2ef;
        padding: 0px 6px;
        margin-left: -6px;
        border-radius: 2px;
    }

div.loading-bar {
    width: 100px;
    height: 2px;
    background-color: #d6cec2;
    border-radius: 10px;
    margin-top: 25px;
    overflow: hidden;
    position: relative;
}

    div.loading-bar::after {
        content: '';
        width: 50px;
        height: 2px;
        position: absolute;
        background-color: #202658;
        transform: translateX(-20px);
        animation: loop 2s ease infinite;
    }

@keyframes loop {
    0%,100% {
        transform: translateX(-28px);
    }

    50% {
        transform: translateX(78px)
    }
}

@keyframes stroke {
    0% {
        fill: rgba(72, 138, 20, 0);
        stroke: #42A5F5;
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    70% {
        fill: rgba(72, 138, 20, 0);
        stroke: #42A5F5;
    }

    80% {
        fill: rgba(72, 138, 20, 0);
        stroke: #42A5F5;
        stroke-width: 2;
    }

    100% {
        fill: #42A5F5;
        stroke: #42A5F5;
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }


}
