#meent {
    height: 325px;
}

#idiomas {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin-top: 20px;
}

#idiomas li {
    flex: auto;
    flex-basis: 16%;
    height: 165px;
}

#idiomas li a {
    color: #191919;
    display: block;
    height: 165px;
    line-height: 165px;
    transition: all 0.6s ease-in-out;
}

#idiomas li a:hover {
    background-color: #0088AA;
    color: #FFFFFF;
    text-decoration: none;
}

#idiomas li a p {
    text-align: center;
}

#idiomas li a p:first-of-type {
    font-size: 50pt;
    height: 100px;
    line-height: 100px;
}

#idiomas li a p:last-of-type {
    font-size: 20pt;
    height: 65px;
    line-height: 65px;
}

@media screen and (max-width: 1023px) {

    #idiomas {
        flex-direction: column;
    }

}