.jumplinks {
    display: flex;
    flex-flow: row wrap;
    padding: 15px;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Figtree-Regular";
    background-color: #e9e9e9;
    align-items: center;
    max-width: 2000px;
    margin:0 auto;
}
.jumplinks .jumplink {
    padding: 0px 15px;
    border-left: solid 1px var(--boingo-gray);
    height: auto;
    color: black;
    font-size: 16px;
    line-height: 1.15em;
    text-decoration: none;
}
.jumplinks .jumplink:first-of-type {
    border-left: none;
}
.jumplink:visited,
.jumplink:focus {
    color: #000;
}
@media screen and (max-width:1024px){
    .jumplinks {
        flex-flow:column;
    }

    .jumplinks .jumplink {
        border-left:none;
        padding: 15px 0px;
    }
    .jumplinks .jumplink:after {
        position: absolute;
        border-bottom: 1px solid var(--boingo-gray);
        width: 10%;
        height: 1px;
		padding-top: 30px;
        left: 45%;
        content: '';
    }
    .jumplinks .jumplink:last-of-type:after{
        display:none;
    }

    .jumplinks .jumplink {
		padding: 15px 0px;
	}
}