#header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    padding-top: 15px;
    z-index: 1000;
    transition: all 1s ease;

}
.headerTop {
    background: none;
}
#logo {
    height: 32px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.headerScrolled {
    background-color: #221b4d;
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
#headerLinks {
    float: right;
    border: 0px solid red;
    display: inline-block;
    margin-right: 10px;
    padding: 0px;
    line-height: 30px;
}
#headerLinks a, #headerLinks a:link, #headerLinks a:hover, #headerLinks a:visited {
    color: #ffffff;
    opacity: 0.8;
    font-size: 16px;
    text-decoration: none;
    margin-right: 20px;
    vertical-align: middle;
}
#headerLinks a:hover {
    opacity: 1.0;
    color: #ffffff;
    text-decoration: underline;
}

.headerLinkButton, .headerLinkButton:link, .headerLinkButton:hover, .headerLinkButton:visited {
    font-weight: bolder;
    color: #f4b266;
}
/*
#header .btn, #header .btn:link, #header .btn:hover, #header .btn:visited  {
    vertical-align: middle;
    text-decoration: none;
    line-height: 30px;
    background-color: #f4b266;
    color: #9b7e46;
    display: inline-block;
    border: none;
    border-bottom: 2px solid #c89152;
    font-size: 16px;
    font-weight: 600; 
    padding-right: 5px;
    padding-left: 5px;
    height: 30px;
    width: 125px;
    border-radius: 5px; 
    transition: all 0.5s ease;
    transform: scale(1.00);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;

}
*/
#headerMainButton {
    color: #ffffff;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    border: 2px solid #ffffff;
}

@media only screen and (max-width: 800px) {
    #logo {
        /*
        display: none;
        height: 20px;
        margin-top: 3px;
        */
    }
    #header {
        /*
        height: 50px;*/
    }

    .hideOnMobile {
        display: none;
    }

}