#founders {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(1, 69, 101);
}


.container-founders {   
    display: flex; 
    justify-content: center;
    width: auto;
    height: auto;
}

.box-founders {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 250px;
    margin: 3em;
    text-align: center;
}

.box-founders p {
    text-align: left;
    color: white;
}

.founders-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 20px;
    font-size: 2.1em;
    font-weight: 500;
    color: white
}

.box-founders img {
    width: 250px;
}

.teste {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teste h1 {
    text-align: start;
    font-size: 1.35em;
    color: white;
}

.teste img {
    width: 2em;
}


.risco4 {
    height: .2em;
    width: 150px;
    border-radius: 1em;
    background-image: linear-gradient(to right, rgb(185, 188, 188), rgb(0, 146, 90));
}

.nome {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: left;
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
    #founders {
        width: auto;
    }

    .container-founders {
        display: flex;
        flex-wrap: wrap;
    }

    .teste {
        display: flex;
        justify-content: left;
    }

    .teste img{
        display: none;
    }

    .nome {
        display: flex;
        flex-direction: column;
        color: white;
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    #founders {
        width: auto;
    }

    .container-founders {
        display: flex;
        flex-wrap: wrap;
    }

    .teste {
        display: flex;
        justify-content: left;
    }

    .teste img{
        display: none;
    }

    .nome {
        display: flex;
        flex-direction: column;
        color: white;
        text-align: left;
    }
}

@media screen and (max-width: 600px) {
    #founders {
        width: auto;
    }

    .container-founders {
        display: flex;
        flex-wrap: wrap;
        width: 300px;
    }

    .teste {
        display: flex;
        justify-content: left;
    }

    .teste img{
        display: none;
    }

    .nome {
        display: flex;
        flex-direction: column;
        color: white;
        text-align: left;
    }
    
}