.jump {
    text-align: center;
}

.jump {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.jump p[class^="h"] {
    margin: 20px 0;
}

.jump img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.jump .logo {
    max-width: 350px;
    margin: 0 auto;
}

.jump .partner-logo {
    max-width: 300px;
    margin: 0 auto;
}

.jump .partner-logo img {
    border-radius: 6px;
}

.jump .progress {
    height: 10px;
    width: 300px;
    margin: 20px auto;
}

.jump .progress .progress-bar {
    width: 100%;
    line-height: 7px;
    animation: load 1.8s ease 1;
    background-color: #34a9df;
    box-shadow: none;
    transition: none;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}