.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    background: linear-gradient(180deg, rgba(0,0,0,.8), rgba(255,0,0,0) 100%);
    top: 0;
    height: 12vw;
    left: 0;
    right: 0;

    opacity: 1;

    padding-right: 1vw;
    padding-bottom: 3vw;
    margin-top: 0vw;

    transition: top 0.5s, opacity 0.5s;

    z-index: 100;
}

.navbar-scrolled {
    opacity: 0;
    top: -15vw;

    transition: top 2s, opacity 0.5s;
}

.nav_opt {
    flex: 13.5vw;

    color: white;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    border-width: 0;
    font-size: calc(12px + 1.75vw);
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
}

.nav_opt a {
    text-decoration: none;
}

.nav_blank {
    flex: 100;
}

.nav_opt p {
    margin: 0;
    padding: 2vw 1vw;

    transition: opacity 0.25s;
}

.nav_opt p:hover {
    background-color: rgba(255,255,255,0.2);
}

.brand {
    display: flex;
    align-items: center;
    justify-items: left;

    color: white;
    font-style: normal;
    text-decoration: none;
    border-width: 0;
    font-size: 150%;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);

    min-width: 200px;
    min-height: 80px;
    padding-top: 0vw;
    padding-left: 1vw;
}

.brand_box img {
    height: 8vw;
    min-height: 50px;
    object-fit: contain;
    padding-right: 1vw;

    filter: drop-shadow(1px 1px 2px #000000);
}

.brand_box {
    display: flex;
    align-items: center;
    justify-items: left;
    width: 100%;

    padding-top: 1vw;
    padding-left: 1vw;
}

.brand_text {
    height: 100%;
    min-height: 50px;
    min-width: 70px;
}

.brand_box div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav .brand .brand_box .title {
    flex: 1;
    font-weight: 100;
    font-style: normal;
    font-size: calc(10px + 5vw);
    margin: 0% 0%;

    padding-bottom: 0vw;
}

nav .brand .brand_box .tagline {
    flex: 1;
    font-size: calc(3.14px + 1.57vw);
    margin: 0% 0%;
    padding-bottom: 1vw;
}
