@font-face {
    font-family: RobotoCondensed;
    src: url("../font/Roboto_Condensed/static/RobotoCondensed-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: RobotoCondensed;
    src: url("../font/Roboto_Condensed/static/RobotoCondensed-Thin.ttf");
    font-weight: 200;
}

@font-face {
    font-family: RobotoCondensed;
    src: url("../font/Roboto_Condensed/static/RobotoCondensed-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: RobotoCondensed;
    src: url("../font/Roboto_Condensed/static/RobotoCondensed-Regular.ttf");
    font-weight: 400;

}

@font-face {
    font-family: RobotoCondensed;
    src: url("../font/Roboto_Condensed/static/RobotoCondensed-Medium.ttf");
    font-weight: 500;

}


html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: RobotoCondensed, sans-serif;
}

.gradient-bg {
    width: 100%;
    height: 100%;
    background-image: url("../images/desktop-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 450px;
}

.text-line {

    font-weight: 300;
    color: #ffffff;
    font-size: 32px;

}

.coming-soon {
    padding-top: 100px;
    font-weight: bold;
    color: #ffffff;
    font-size: 35px;
    margin-bottom: -30px;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

.spacer {
    display: inline-block;
    width: 78px;
}

@media screen and (max-width: 900px) {

    .gradient-bg {
        width: auto;
        background-image: url("../images/mobile-bg.png");
        padding: 50px;
    }

    .spacer {
        display: none;
    }

    .logo img {
        width: 100%;
    }
}


@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
