.contenedor-servicios {
    padding-top: 120px;
    padding-bottom: 140px;
    padding-left: 50px;
    padding-right: 50px;
    /* background-color: #fff; */
}

.flex-servicios {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
    align-content:flex-start;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-style: none;
}

.contenedor-servicios h1 {
    font-size: 4rem;
    text-align: center;
    font-weight: 700;
    font-family: "Space Grotesk";
}

.contenedor-servicios h2 {
    font-size: 4rem;
    text-align: center;
    font-weight: 700;
    font-family: "Space Grotesk";
    color: #8294A6;
}

.contenedor-servicios .bajada {
    width: 60%;
    padding-top: 15px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 300;
    font-family: "Space Grotesk";
    color: #123354;
}

.contenedor-servicios .servicio {
    margin-top: 5px;
    width: 100%;
    padding: 6px 10px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 300;
    font-family: "Space Grotesk";
    color: #8294A6;
    border-style: solid;
    border-width: 1px;
    border-radius: 15px;
    border-color: #8294A6;
    background-color: #eee;
}

.contenedor-servicios .imagen {
    margin-top: 20px;
    text-align: center;
}

.contenedor-servicios img {
    width: 64%;
    text-align: center;
}

@media(width < 750px) {
    .contenedor-servicios {
        padding-top: 100px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .contenedor-servicios h1 {
        font-size: 3.5rem;
    }

    .contenedor-servicios h2 {
        font-size: 3.5rem;
    }

    .contenedor-servicios img {
        width: 90%;
    }

    .contenedor-servicios .servicio {
        width: 100%;
    }

    .contenedor-servicios .bajada {
        width: 90%;
    }
}