@media (max-width: 600px) {
    .container {
        height: fit-content;
    }
    .presentation {
        height: unset;
    }
    .items {
        flex-direction: column;
    }
    .items > .text-portones {
        padding: 1rem;
    }
    ol.two-columns {
        column-gap: unset;
        background-color: unset;
        list-style: decimal;
        counter-reset: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .7rem;
        width: 100%;
        row-gap: .2rem;        
        min-width: unset;
        padding:unset;
        justify-content: center;
    }
    ol.two-columns > li {       
        font-size: 8px;
        counter-increment: item;
    }
    ol.two-columns > li:after {
        display: none;
    }
}