body {
    margin: 0px;
}

.splash-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    height:511px; /*ie*/
    background: url("images/background/background.jpg") no-repeat;
    background-size: cover;
}

.splash-page .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.splash-page .logo-container {
    height: 292px;
    background-color: #152f54;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
}

.splash-page .logo {
    width: 435px;
}

.splash-page .load-bar {
    position: relative;
    width: 100%;
    max-width: 716px;
    height: 8px;
    background-color: #60ddfd;
}

.splash-page .bar {
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center;
}

.splash-page .bar:first-child {
    background-color: #1f4f77;
    animation: loading 2s linear infinite;
}

.splash-page .bar:nth-child(2) {
    background-color: #60ddfd;
    animation: loading 2s linear 1s infinite;
}

@keyframes loading {
    from {
        left: 50%;
        width: 0;
        z-index: 100;
    }
    33.3333% {
        left: 0;
        width: 100%;
        z-index: 10;
    }
    to {
        left: 0;
        width: 100%;
    }
}

.splash-page .copyright {
    text-align: center;
    font-size: 18px;
    margin-bottom: 72px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue Roman", system-ui !important;
}

@media only screen and (max-width: 1023px) {
    .splash-page {
        background: url("images/background/background_1024.jpg") no-repeat;
        background-size: cover;
        height:453px; /*ie*/
    }
    .splash-page .logo {
        width: 400px;
    }
    .splash-page .logo-container {
        margin-top: 36px;
    }
    .splash-page .copyright {
        font-size: 14px;
        margin-bottom: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .splash-page {
        background: url("images/background/background_768.jpg") no-repeat;
        background-size: cover;
        height:302px;/*ie*/
    }
    .splash-page .logo {
        width: 260px;
    }
    .splash-page .logo-container {
        height: 192px;
    }
    .splash-page .copyright {
        font-size: 12px;
        margin-bottom: 24px;
    }
}