[role="tablist"] {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 3rem;
}
[role="tablist"] > li {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    width: 50%;
}
[role="tablist"] > li > a {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 4rem 2rem 3.6rem;
    font-family: Arial,sans-serif;
    font-size: 2rem;
    text-align: center;
    text-decoration: none;
    color: #595c5f;
    background-color: #f7f7f8;
    border-bottom: 0.4rem solid #1e296e;
}
[role="tablist"] > li > a:hover {
    z-index: 7;
    color: #fff;
    background-color: #1e296e;
}
[role="tablist"] > li > a:active,
[role="tablist"] > li > a:focus {
    z-index: 9;
}
[role="tablist"] > li > a[aria-selected="true"] {
    z-index: 9;
    color: #1e296e;
    background-color: #fff;
}
[role="tablist"] > li > a[aria-selected="true"]:after {
    content: '';
    position: absolute;
    bottom: -1.7rem;
    left: 50%;
    margin-left: -1rem;
    width: 0;
    height: 0;
    border-top: 1.3rem solid #1e296e;
    border-left: 1rem solid #fff;
    border-right: 1rem solid #fff;
}
@media screen and (min-width: 951px) {
    .tab-container {
        max-width: 80%;
        margin: 0 auto;
    }
}
