/*GENERAL*/
html, body {
    height: 100%;
}
html {
    font-size: 26px;
}
body {
    font-family: 'Roboto', sans-serif;
}
/*END GENERAL*/

/*HOME*/
.home-content {
    /*background: #1e7e34 url("../img/bg-atlas-green-energy.jpg") no-repeat center center;*/
    background:  #00a6ff;
    background-size: cover;
    height: 100%;
    color: #ffffff;
}
.home-content .logo {
    animation-duration: 3s;
}
.home-content .list-inline {
    font-size: 2rem;
    margin-top: 60px;
    font-weight: 300;
}
.home-content .list-inline a {
    color: #ffffff;
}
@media (max-width: 1999px) {
    html {
        font-size: 20px;
    }
    .home-content .logo {
        width: 800px;
    }
    .home-content .list-inline {
        margin-top: 40px;
    }
}
@media (max-width: 1280px) {
    html {
        font-size: 19px;
    }
    .home-content .logo {
        width: 770px;
    }
    .home-content .list-inline {
        margin-top: 30px;
    }
}
@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    .home-content .logo {
        width: 600px;
    }
}
@media (max-width: 767.98px) {
    html {
        font-size: 13px;
    }
    .home-content .logo {
        width: 360px;
    }
    .home-content .list-inline {
        margin-top: 50px;
    }
    .home-content .list-inline .list-inline-item {
        display: block;
        margin-bottom: 15px;
    }
    .home-content .list-inline .list-inline-item:nth-child(2) {
        display: none;
    }
}
@media (max-width: 450px) {
    html {
        font-size: 11px;
    }
    .home-content .logo {
        width: 300px;
        max-width: 100%;
        padding: 0 10px;
    }
    .home-content .list-inline {
        margin-top: 50px;
    }
}
/*END HOME*/