* {
    box-sizing: border-box;
}

#gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f1f1f1;
    border-bottom: 1px solid #d9d9d9;
}

#gnav ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 2.5rem;
}

#gnav li {
    min-width: 0;
    flex: 0 0 auto;
}

#gnav a {
    display: block;
    padding: 0.5rem 1.4rem;
    color: #013a84;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

#gnav a:hover {
    opacity: 0.7;
}

body {
    margin-top: 2.5rem;
}

#gnav .app-title {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1rem;
    transform: translate(-22rem, -45%);
    z-index: 2;
}

#gnav .app-title .service-title {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

#gnav .app-title svg {
    display: block;
    width: 8rem;
    height: 2.5rem;
}

@media (max-width: 600px) {
    #gnav ul {
        min-height: 2.2rem;
    }

    #gnav a {
        padding: 0.35rem 0.35rem;
        font-size: 0.8rem;
        border-right: 1px solid #ccc;
    }

    #gnav li:last-child a {
        border-right: none;
    }

    #gnav .app-title {
        font-size: 1rem;
        transform: translate(-14rem, -45%);
    }

    #gnav .app-title svg {
        width: 6rem;
        height: 1.8rem;
    }
}