body {
    min-height: 100%;
    font-size: 1.125rem;
    text-anchor: middle;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
}

a {
    outline: 0
}

main a {
    color: #000080;
    transition: all .4s ease-out
}

main a:hover {
    color: #0000CC;
}

.blur-filter {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.overlay {
    position: fixed;
    /* Sit on top of the page content */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}


/*
    * Nav
*/

.bg-mediumblue {
    background-color: #0000CC
}

nav .btn {
    background-color: #0000CC
}

nav .btn:hover {
    background-color: #000080;
    opacity: .6
}

.navbar-collapse {
    font-size: .8em;
    vertical-align: top;
}


/*
    * Custom alert
*/

#g_alert_info,
#g_alert_success,
#g_alert_error,
#g_alert_loading {
    z-index: 10;
    display: none;
    margin: .5rem auto;
    vertical-align: middle;
    position: fixed;
    bottom: 2%;
    width: 70%;
    font-weight: 600;
    box-shadow: 10px -1px 15px rgba(0, 0, 0, .3);
}


/*
    * Icons
*/

i {
    padding: 0 .4em;
    color: #000;
}

.fa-facebook-f:hover {
    color: #3b5998
}

.fa-linkedin-in:hover {
    color: #0077B5;
}

.fa-youtube:hover {
    color: #c4302b;
}

.fa-twitter:hover {
    color: #38A1F3;
}

.fa-times {
    opacity: .4
}


/*
    * Footer
*/

.footer {
    background-color: #f5f5f5;
    font-size: .8em;
}

@media (max-width: 576px) {
    #g_alert_info,
    #g_alert_success,
    #g_alert_error,
    #g_alert_loading {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        margin: auto 0 !important;
        left: 0;
    }
}