#services_section{
    padding: 3rem 0.4rem 10rem 0.4rem;
    background-color: var(--primary-color);
}
#services_section h1, h3{
    text-align: center;
}
#services_section p{
    text-align: center;
}
.flex_container{
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.card{
    width: 350px;
    max-width: 80%;
    background-color: var(--secondary-color);
    border-radius: 4rem;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    gap: 3rem;
}
.card a{
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--main-brand-color);
    border: 4px solid var(--main-brand-color);
    transition: 150ms ease-in-out;
}
.card a:hover{
    background: transparent;
}
@media (max-width: 800px){
    #services_section{
        padding: 4rem 0rem;
        background-color: var(--primary-color);
    }
    #services_section h1{
        text-align: center;
    }
    .card{
        width: 100%;
        max-width: 80%;
        background-color: var(--secondary-color);
        border-radius: 3rem;
        padding: 1rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        gap: 20px;
    }
}