@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


body {
    width: 100%;
    height: 100vh;
    background-color: white;
    /*   background-image: url(/Assets/img/26577.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    user-select: none !important;
}




.left_img {
    width: 100%;
    height: 100%;
    border: none;
    padding: 10px 1px;
    padding-left: 20px;
    border-radius: 50%;
    background-color: black;
}

.logo_img {
    display: block;
    text-align: center;

}

.logo_img img {
    background-color: black;
    width: 100px;
    padding: 10px 10px;

}



.title_txt {
    background-color: transparent;
    text-align: center;
    font-family: 'Major Mono Display', monospace;

}

.txt_1 {
    color: black;
    font-size: 80px;
    position: relative;
    margin-bottom: 40px;
    background-color: transparent;
    display: inline-block;

}


.txt_1::after {
    content: '';
    position: absolute;
    background-color: black;
    width: 3px;
    height: 70px;
    right: 165px;
    bottom: -50px;
}

.txt_2 {
    background-color: black;
    color: white;
    display: inline-block;
    padding: 5px 30px;
    font-size: 50px;
    position: relative;
    margin-bottom: 40px;
}

.txt_2::after {
    content: '';
    position: absolute;
    background-color: black;
    width: 3px;
    top: 70px;
    height: 40px;
    left: 90px;

}

.progress {
    background: black;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 10px;
    width: 60%;
}

.progress-value {
    animation: load 3s linear forwards;
    box-shadow: 0 10px 40px -10px #fff;
    border-radius: 100px;
    background: #fff;
    height: 5px;
    width: 0;
}

@keyframes load {
    0% {
        width: 0%;
    }

    25% {
        width: 20%;
    }


    50% {
        width: 40%;
    }

    75% {
        width: 60%;
    }

    100% {
        width: 80%;
    }
}

p {
    font-family: 'Open Sans', sans-serif;
}



/* Media Query */


@media only screen and (max-width:575.98px) {
    .left_img {
        width: 300px;
        height: 290px;
        border: none;
        padding: 10px 1px;
        padding-left: 10px;
        border-radius: 50%;
        background-color: black;
    }

    .title_txt {
        background-color: transparent;
        text-align: center;
        font-family: 'Major Mono Display', monospace;
    }

    .txt_1 {
        color: black;
        font-size: 50px;
        position: relative;
        margin-bottom: 40px;
        background-color: transparent;
        display: inline-block;

    }


    .txt_1::after {
        content: '';
        position: absolute;
        background-color: black;
        width: 3px;
        height: 60px;
        right: 165px;
        bottom: -50px;
    }

    .txt_2 {
        padding: 5px 30px;
        font-size: 40px;
    }

    .txt_2::after {
        content: '';
        position: absolute;
        background-color: black;
        width: 3px;
        top: 50px;
        height: 50px;
        left: 120px;

    }

}

@media only screen and (max-width:350.98px) {
    .left_img {
        width: 200px;
        height: 190px;
    }
}