#services {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}

h1 {
    color: var(--black);
}

#description {
    width: 50%;
}

#service-options {
    display: flex;
    flex-direction: column;
    width: auto;
}

#navigation {
    display: flex;
    width: 100%;
}

.navigation-button {
    border-radius: 0;
    background-color: var(--lightGray);
    color: var(--black);
    flex: auto;
    cursor: pointer;
}

.navigation-button:hover {
    background-color: var(--white);
    color: var(--black);
}

.active, .active:hover {
    background-color: var(--secondary);
    color: var(--white);
    cursor: default;
}

.service-content {
    background-color: var(--tertiary);
    box-sizing: border-box;
    padding: 0 2vw 2vw 2vw;
    display: none;
}

.service-content li {
    color: var(--white);
    font-size: 1.1rem;
}

.service-content li::before {
    background-color: var(--white);
}

.service-content button {
    background-color: var(--white);
    padding: .5vh 1vh;
    color: var(--tertiary);
    cursor: pointer;
}

.active-content {
    display: block;
}

@media only screen and (max-width: 1000px) {  
    #services {
        flex-direction: column;
    }

    #description {
        width: 100%;
    }

    .navigation-button {
        line-height: 1.2rem;
    }
}