#services_section {
    padding: 70px 0;
    background-color: var(--primary-color);
}

#services_section h2 {
    font-size: 50px;
    color: red;
    text-align: center;
}

#services_section p {
    font-size: 16px;
    text-align: center;
}

.flex_container {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.services_card {
    width: 350px;
    max-width: calc(90% - 40px);
    background-color: var(--light-secondary-color);
    border-radius: 10%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    gap: 10px;
}

.services_card * {
    text-align: center;
}

.services_card a {
    background-color: var(--main-brand-color);
    width: min-content;
    padding: 15px 40px;
    border-radius: 10%;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-color);
    border: 4px solid var(--main-brand-color);
    transition: 150ms ease-in-out;
}

.services_card a:hover {
    background: transparent;
}

@media(max-width:500px) {
    #services_section h2 {
        font-size: 12vw;
    }
}