.nav-button-group-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-button-group {
    border-radius: 8px;
    border: 1px solid var(--Gray-300, #D0D5DD);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.nav-button-group .cta-button {
    font-family: 'Lato', sans-serif;
    outline: none;
    border: 1px solid var(--gray-300);
    font-size: 0.875rem;
    width: 3rem;
    padding: 0.7375rem 1.75rem;
}

.nav-button-group .cta-button.active {
    z-index: 0;
}

.nav-button-group .cta-button:not(.active) {
    border-right: 1px solid var(--gray-300);
    background: var(--oa-base-white);
    color: var(--gray-700);
    font-weight: 600;
}

/* Desktop */
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 992px) {}

/* Mobile */
@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 320px) {
    .nav-button-group .cta-button {
        width: 2.5125rem;
    }
}