#quem-somos {
    background-color: rgb(1, 69, 101);
    height: 20em;
}

.container-quem-somos{ 
    display: flex;

}

.img-quem-somos {
    width: 30em;
    height: 20em;
}

.text-quem-somos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-around;
    margin: 5em;
}

.risco {
    height: 1px;
    width: 150px;
    background-image: linear-gradient(to right, white, green);
}

.text-quem-somos h1 {
    color: white;
}

.text-quem-somos h3 {
    color: white;
    font-size: 1.1em;
    font-weight: 500;
}


@media screen and (max-width: 600px) {
    #como-atuamos {
        width: auto;
    }

    .text-quem-somos {
        text-align: center;
    }

    .text-quem-somos h1 {
        margin-bottom: 20px;
    }

    .risco {
        display: none;
    }

    .img-quem-somos {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #como-atuamos {
        width: auto;
    }


    .text-quem-somos {
        margin: 10px;
        text-align: center;
    }

    .text-quem-somos h1 {
        margin-bottom: 20px;
    }

    .risco {
        display: none;
    }

    .img-quem-somos {
        width: 300px;
    }
}