.header {
    background: #161616;
}
.header>header {

    /* Changeable */
    font-size: 13px;
    font-weight: bold;
    color: #fff;
} .header>header>section {
    display: flex;
    margin: auto;
    height: 120px;
    width: 385px;
    font-weight: 500;
    /* Changeable */
} .header>header>section>div.vert {
    text-align: right;
    text-align: center;
    margin: auto;

    /* Changeable */
    width: 500px;
}.header>header>section>div.vert a {
    display: block;

    /* Changeable */
    padding: 2px;
    text-decoration: none;
}
nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    text-align: center;
    z-index: 4;

    /* Changeable */
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
    color: #fff;
    height: 62px;
}nav>span>* {
    flex-grow: 1;
    font-size: .875em;
    color: #fff;
    padding: 10px 0;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 5vw;
    transition: color .2s, border .2s, background .2s, margin .2s;
}nav>span>*:hover {
    color: #fff8;
    border-bottom: 2px solid;
}nav>span>:last-child {
    border: 2px solid #fff;
    border-radius: 2px;
    margin: 0;
    background: #fff;
    color: #194FA3;
    font-weight: 600;
    padding: 10px 15px;
}nav>span>:last-child:hover {
    background: #194FA3;
    border: 1px solid;
    margin-left: 2px;
    color: #fff;
}