@font-face {
  font-family: Agency;
  src: url(/global/fonts/agency-fb/agencyfb_reg.ttf);
  font-weight: normal;
}

@font-face {
  font-family: Agency;
  src: url(/global/fonts/agency-fb/agencyfb_bold.ttf);
  font-weight: bold;
}

* {
    font-family: Agency;
    font-weight: normal;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

h1, h2, h3, h4, h5, h6 {
    font-family: Agency;
    font-weight: bold;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #dfdacd;
}

b {
    font-weight: bold;
}

.hint {
    font-size: 16px;
}

.nav {
    min-height: 62px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    font-size: 30px;
    z-index: 9999;
}

.nav > li {
    float: left;
    transition: margin 0.4s ease, padding 0.4s ease;
}

.nav > li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.nav > li:not(#nav_logo):not(#nav_crew_news) a:hover {
    background-color: #ffffff4b;
}

#nav_crew_news {
    background-color: red;
    border-radius: 200px;
    transform: scale(0.7) translateX(-70%);
}

#nav_crew_news a {
    font-family: Helvetica, sans-serif !important;
    padding: 2px 6px;
}

.nav #nav_logo a {
    padding: 11px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav #nav_logo a img {
    height: 42px;
}

.nav > li {
    float: left;
}

@media screen and (max-width: 600px) {
    .nav {
        min-height: 46px;
        font-size: 16px;
    }

    .nav #nav_logo a {
        padding: 10px 10px;
    }

    .nav #nav_logo a img {
        height: 26px;
    }
}

footer {
    width: 100vw;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

footer div {
    padding: 10px;
}

footer a {
    color: #f4a216;
}

a.input-small {
    padding: 4px 6px;
    text-decoration: none;
    color: #131B23;
    border: 2px solid #f4a216;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    background-color: #dfdacd;
    vertical-align: middle;
    font-weight: bold;
}

a.input-small:hover {
    background-color: #f4a216;
    color: #E8F1F2;
    font-style: normal;
}

a.input-small.active {
    padding: 6px 9px;
    background-color: cadetblue;
    text-decoration: none;
    color: #E8F1F2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    vertical-align: middle;
}

a.input-small.active:hover {
    background-color: rgb(64, 110, 111);
    font-style: normal;
}