.contanier-academy {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 15%;
}


.contanier-academy-small{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
}

.contanier-single img{
    border-radius: 8px;
    margin: 20px 0;
}

/* RESPONSIVIDADE*/
@media (max-width: 1000px) {
    .contanier-experience{
        flex-direction: column;
        justify-content:space-around;
        align-items:center;
        height: auto;
    }
    .contanier-academy-small{
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        margin-left: 0%;
        margin-top: 15%;
    }

    .contanier-academy > p{
        top: 8%;
        bottom: 8%;
    }

    .contanier-single{
        align-items: center;
        justify-content: center;
        margin-top: 15%;
    }
}