#services_section{
    padding: 70px 0;
    background-color: var(--primary-color);
}

#services_section h2{
    font-size: 50px;
    text-align: center;
    margin-bottom: 50px;
    line-height: 115%;
}

.flex_container{
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    width: 350px;
    max-width: (90% - 40px);
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.card *{
    text-align: center;
}

.card a{
    background-color: var(--secondary-text-color);
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin:  0 auto;
    text-decoration: none;
    color: var(--text-color);
    border: 4px solid var(--main-brand-color);
    transition: 150ms ease-in-out;
}

.card a:hover{
    background: transparent;
}

@media(max-width: 500px){
    #services_section h2{
        font-size: 12vw;
    }
}

/*/-------/*/

#services_section_2{
    padding: 70px 0;
    background-color: var(--secondary-color);
}

#services_section_2 h2{
    font-size: 50px;
    text-align: center;
    margin-bottom: 50px;
}

#services_section_2 h4{
    color: var(--secondary-text-color);
}

.flex_container_2{
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card_2{
    width: 350px;
    max-width: (90% - 40px);
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 30px 30px;

    display: flex;
    flex-direction: column;
    justify-content: top;
    text-align: center;
    gap: 20px;
}

.outro {
    text-align: center;
    font-size: 1.1em;
    margin: 50px 50px;
}

@media(max-width: 500px){
    #services_section_2 h2{
        font-size: 12vw;
    }
}