* {
    box-sizing: border-box !important;
}

html, body {
    overflow: hidden;
    margin: 0;
}

[class*="primary"] {
    background-color: #003366 !important;
    border-color: #034383 !important;
}

[class*="primary"]:hover {
    opacity: .9;
}

main {
    min-height: 100vh;
}

.bg-light {
    background-color: rgba(0, 51, 102, .8) !important;
}

.logo {
    width: 15rem;
}

#login-section {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.navbar {
    min-height: 10vh;
    border: none !important;
}

.nav-link.active {
    color: #003366 !important;
}

.nav-link.active .border-bottom {
    display: block;
}

.nav-link .border-bottom {
    display: none;
}

.nav-link:hover{
    color: #003366 !important;
}

.nav-link:hover .border-bottom {
    display: block;
}

.menu-icon-box {
    height: 1.5rem;
}

.menu-icon {
    width: 1.3rem;
    height: 1.3rem;
}

.link {
    text-decoration: none;
    color: #003366;
}

.link > i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    border-radius: 50%;
    transition: color 1s ease;
}

.link:hover > i {
    background-color: #003366;
    color: #fff;
}

@media only screen and (max-width: 998px) {
    html, body {
        font-size: 90% !important;
        overflow-y: scroll;
    }
}

@media only screen and (min-width: 767px){
    #title-section, #login-section {
        min-height: 90vh;
    }

    html, body {
        height: 100%;
    }

    .bg-cover {
        background: linear-gradient(#003366, #0033668f), url("../images/usindh-cover.png") no-repeat;
        background-size: 70% 100%;
        background-position: left;
    }

    .nav-link {
        font-size: .8em !important;
    }
}

@media only screen and (max-width: 767px){
    .bg-cover {
        background: transparent;
    }
    .bg-cover-mobile {
        background: url('../images/bg_cover_mobile.jpg') no-repeat;
        background-size: cover;
    }
    #title-section {
        min-height: 30vh;
    }
}

@media only screen and (min-width: 600px) and (max-width: 768px){
    html {
        font-size: .7em;
    }
    
    #title-section {
        min-height: 30vh;
    }

    #login-section {
        height: 60vh;
    }
}

@media only screen and (max-width: 600px){
    .nav-link {
        font-size: .6em !important;
    }
    
    #title-section {
        min-height: 30vh;
    }

    #login-section {
        height: 60vh;
        background-color: #fff !important;
    }

    .logo-text {   
        font-size: 80%;
    }
}