@charset "utf-8";
/* CSS Document */

.content {
    display: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 100000;
}

.background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002c5e;
    animation: fillUp 4s ease-out;
}

.logo-container {
    z-index: 99;
    width: 35%;
    height: auto;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
}

@keyframes fillUp {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@media screen and (max-width:1024px) and (orientation:portrait) {
    .logo-container {
        width: 80%;
    }
}

@media screen and (max-width:600px) and (orientation:portrait) {
    .logo-container {
        width: 90%;
    }
}