/**
 *  How To Keep Footer At Bottom of Page with CSS
  * Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */
html,
body.main {
    background-image: url('../../images/bmlsite.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /*
    font-family: 'SHARP GROTESK BOLD 09', 'GOTHAM MEDIUM', sans-serif;
    */

}

@media only screen and (min-width: 768px) {
    .container.login {
        width: 500px !important;
    }
    .container-fluid.header {
        height: 70px;
    }
    .headerNameValue {
        font-size:3vh !important;
    }
    img {
        height: 50px !important;
    }
    .headerLogo {
        flex: 1 0 0;
    }
}

@media only screen and (min-width: 960px) {
    .container-fluid.header {
        height: 110px;
    }
    .headerNameValue {
        font-size:4vh !important;
    }
    img {
        height: 90px !important;
    }
    .headerName {
        flex: 2 0px;
    }
}

.container-fluid.header {
    display: flex;
    flex-flow: row wrap;
}

.container-fluid.header > * {
    padding: 10px;
    flex: 1 100%;
}

img {
  object-fit: contain;
  height: 70px;
}

.btn-success {
    background-color: #fff !important;
    border-color: #004BFF !important;
    color: #004BFF !important;
}