.section-nav {
    margin: 1rem 0 0 0;
    background-color: #fff;
    padding: 10px;
}

.section-nav .section-nav-heading {
    color: #011f5b;
    font-size: 1rem;
}

.section-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    margin: 0;
}

.section-nav .button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    font-size: 1rem !important;
    font-weight: 800;
    line-height: 1.5;
    color: #900;
    background-color: #fff;
    border: 1px solid;
    
        &:hover {
            color: #011f5b;
            background-color: #fff;
            text-decoration: underline;
            border: 1px solid;
        }
}

.section-nav .current .button {
    color: #fff;
    background-color: #900;
    pointer-events: none;
}

.section-nav .button::after {
    content: none;
}

@media screen and (max-width: 1180px) {
    .section-nav ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .section-nav ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 568px) {
    .section-nav ul {
        grid-template-columns: repeat(2, 1fr);
    }
}