body{
    font-family: "HR";
    scroll-behavior: smooth;
}
#topbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 900;
    transition: 0.4s;
}
#tb_menubutton{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 85px;
    background: url('/img/ui/menu.png');
    background-size: 50px 50px;
    background-position: center 40%;
    background-repeat: no-repeat;
    filter: invert(1);
}
#tb_logo{
    float: left;
    width: 300px;
    height: 120px;
    background: url("/img/logo/cropped.png");
    background-position: center bottom;
    background-size: 220px;
    background-repeat: no-repeat;
    transition: 0.3s;
    filter: drop-shadow(0px 0px 2px);
    transition-delay: 0.5s;
}
#tb_menu{
    width: calc(100% - 300px);
    float: left;
    height: 120px;
    text-align: right;
}
.tb_option{
    display: inline-block;
    height: 120px;
    line-height: 200px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    position: relative;
    text-decoration: none;
    
    text-shadow: 0px 0px 2px #000;
}
.tb_optionnohover{
    display: inline-block;
    height: 120px;
    line-height: 200px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    position: relative;
    text-decoration: none;
    
    text-shadow: 0px 0px 2px #000;
}
.tb_option:after{
    content: '';
    height: 1px;
    width: 0%;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 0px;
    opacity: 1;
    transition: 0.2s;
    transform: translate(-50%, 0);
}
.tb_option:hover:after{
    width: 90%;
}
.smalltopbar{
    background: #000!important;
    color: #000!important;
    min-height: 80px!important;
    filter: invert();
}
.smalltopbar #tb_logo{
    height: 80px!important;
    background-size: 160px !important;
    background-position: center center;
}
.smalltopbar #tb_menu{
    height: 80px;
}
.smalltopbar .tb_option{
    color: #fff;
    height: 60px!important;
    line-height: 80px!important;
}
.social_logos{
    width: 28px;
    position: absolute;
    bottom: 0; 
    left: 0; 
    transform: translate(0px, 4px);
}
.doubleInvert{
    filter: invert();
    transition-delay: 0s;
    transition: 0s;
}
.noafter:after{
    content: '';
    height: 0px;
    width: 0px;
    opacity: 0;
    display: none;
}
@media only screen and (max-width: 1220px) {
    #tb_menu{
        width: 100%;
        text-align: center;
        display: none;
    }
    #tb_menubutton{
        display: block;
    }
    .smalltopbar #tb_menu{
        background: #000;
    }
}

#tb_mobileMenu{
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
    background: #fff;
    z-index: 900;
}
#tb_mmCenter{
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}
.tb_mmOptions{
    display: block;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    font-size: 26px;
    text-decoration: none;
    text-shadow: 0px 0px 1px #000;
    padding-top: 10px;
    padding-bottom: 10px;
}