.redirect-container {
    width: 100%;
    height: 96.3vh;
    background-size: cover;
    font-family: source-sans-3,Sans-serif;
    position: fixed;
    overflow-y: scroll;
    width: 100%;
    left: 0;
    top: 0;
}

.redirect-middle-text {
    width: 100%;
    /* display: block; */
    text-align: center;
    /* position: absolute; */
    /* top: 60%; */
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.redirect-texts {
    font-weight: 500;
    color: #54595F;
}

.redirect-box {
    background-color: white;
    max-width: 650px;
    min-width: 500px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px lightgrey;
}

.redirect-mail {
    /* text-decoration:none;  */
    color: #54595F;
}

.redirect-mail:hover {
    color: #f0698f;
}

.redirect-box-content {
    padding: 7px 10px;
}

.redirect-title {
    width: 100%;
    text-align: center;
    color: #282828;
    font-weight: 600;
    font-size: 20px;
    display: block;
}

.redirect-title-2 {
    width: 100%;
    text-align: center;
    color: #282828;
    font-weight: 600;
    display: block;
}

.redirect-table {
    display: flex;
    width: 100%;
    text-align: center;
    margin: 60px 0px;
}

.redirect-left {
    width: 33%;
}

.redirect-left-image {
    width: 150px;
}

.redirect-center {
    width: 33%;
    margin-top: -4px;
}

.redirect-center-image {
    width: 53px;
}

.redirect-right {
    width: 33%;
}

.redirect-right-image {
    width: 135px;
}

@media screen and (max-width: 1000px) {
    
}

@media screen and (max-width: 480px) {
    /* .redirect-container {
        width: 100%;
    } */

    .redirect-middle-text {
        width: 80%;
        font-size: 18px;
        bottom: 250px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .redirect-box {
        background-color: white;
        max-width: 80%;
        min-width: 350px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        border: solid 1px lightgrey;
    }

    .redirect-left-image {
        width: 110px;
    }

    .redirect-center-image {
        width: 45px;
    }

    .redirect-right-image {
        width: 98px;
    }
}

/* Loading animation */
.progress{
    position: relative;
    height: 10px;
    width: 99.7%;
    border: none;
}
.progress .progress-color{
    position: absolute;
    background-color: #1DBBA0;
    border: 1px solid #1DBBA0;
    width: 0px;
    height: 4px;
    animation: progres 4s;    
    animation-fill-mode: forwards;
}
@keyframes progres{
    0%{
      width: 0%;
    }
    25%{
        width: 50%;
    }
    50%{
        width: 75%;
    }
    75%{
        width: 85%;
    }
    100%{
        width: 100%;
    }
};

