@media screen and (max-width: 1344px)
{
    .navigation ul
    {
        flex-direction: column;
    }

    .navigation
    {
        display: none;
    }

    .tab
    {
        background-color: #00000000;
        display: block !important;
        position: sticky;
        width: 100%;
        top: 0px;
        border-top: 15px solid #121212;
    }


    .responsive-restricted
    {
        display: flex !important;
    }

    .branding-header
    {
        flex-direction: column !important;
    }

    .brand-img
    {
        width: 90% !important;
        height: auto !important;
        overflow: hidden;
        align-self: center;
    }

    .contact-text
    {
        align-items: center;
        padding-right: 0px !important;
    }

    .contact-text span
    {
        font-size: 25px;
    }
}

.branding-header
{
    display: flex;
    flex-direction: row;
}

.responsive-restricted
{
    display: none;
}

ul
{
    list-style: none;
}

nav > ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0;
}

nav > ul > li
{
    text-align: center;
    text-transform: uppercase;
}

.nav-content
{
    padding: 20px 20px 20px 20px;
    min-width: 100px;
    box-sizing: content-box;
    display: block;
}

.navigation
{
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    background-color: #121212;
    white-space: nowrap;
}

.navigation a
{
    color: var(--text-main);
    text-decoration: none;
}

#navigation-button
{
    align-items: center;
    flex-direction: row;
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    background-color: #121212;
    white-space: nowrap;
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    vertical-align: middle;
    padding-right: 15px;
    padding-left: 15px;
}

#navigation-button:hover
{
    color: var(--text-primary);
    transition: 0.3s ease;
}

.navigation ul
{
    padding: 0px 40px 0 40px;
}

.navigation.responsive-toggled
{
    display: flex;
    justify-content: center;
}

.navigation.responsive-toggled nav > ul
{
    flex-direction: column;
}

.navigation a:hover
{
    color: var(--text-primary);
    transition: 0.3s ease;
}

.dropdown-content
{
    display: none;
    position: absolute;
    background-color: #121212;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}

.tab
{
    display: none;
}

.tab-button
{
    background-color: #00000000;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 55px;
    display: block;
    background: #121212;
    font-family: monospace;
    font-size: 40px;
    border-radius: 15px;
    font-weight: 900;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: var(--text-main);
}

.dropdown-hover:hover .dropdown-content
{
    display: block;
}

.nav-header
{
    background-color: #333333;
}

.brand-img
{
    height: 300px;
}

.dropdown-content
{
    font-size: 25px;
}

.contact
{
    vertical-align:baseline;
    display: flex;
    flex-direction: row;
    text-align: end;
    justify-content: center;
}

.contact-text
{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 40px;
}

.contact-text > *
{
    padding-bottom: 10px;
}

.contact small
{
    font-size: 22px;
}

.flex
{
    flex-direction: column;
    display: flex;
}

.invisible
{
    display: none;
}

.responsive-restricted
{
    display: none;
}

.icon
{
    vertical-align: middle;
}