.experience-container {
    width: 80%;
    margin: auto;
}

.title {
    text-align: center;
    margin: 38px 0px;
    font-size: 2em;
    /* text-transform: uppercase; */
}

.offers .list-offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    margin-bottom: 50px;
    padding: 0;
}

.offers .list-offers li {
    margin: 0px 12px;
    margin-bottom: 15px;
}

.offers .list-offers i {
    margin-right: 5px;
    font-size: 1.4em;
    color: #000000;
}

.incluse .itens-incluse {
    width: 660px;
    margin: auto;
    columns: 2;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    margin-bottom: 50px;
}

@media screen and (max-width: 725px) {
    .incluse .itens-incluse {
        width: 400px
    }
}

@media screen and (max-width: 570px) {
    .incluse .itens-incluse {
        columns: 1;
        width: 90%;
        font-size: 1em;
    }
}

@media screen and (max-width: 409px) {
    .experience-container {
        width: 100%;
    }
    
    .title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .offers .list-offers {
        display: block;
        text-align: center;
    }

    .incluse .itens-incluse {
        width: 80%;
    }
}

