
#tecnologie_tab { 
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-top: 60px;
}

    .tecnologie_item {
        width: 100%;
        background-color: var(--fourth_color);
    }

        .tecnologie_item img {
            width: 100%;
        }

        .tecnologie_text {
            padding: 20px;
        }

    @media screen and (min-width : 992px) {
        #tecnologie_tab { flex-direction: row; flex-wrap: wrap; column-gap: 30px; }
        .tecnologie_item { width: calc(50% - 30px); }
    }