.social {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.social>div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;

}

.iconesSocial {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    /* align-content: center; */
    /* justify-content: baseline; */
    padding: 40px 0px;
}


.social>div>a {
    padding: 20px 40px;
    background: none;
    margin: 0px 5px;
    border-bottom: solid 4px white;
    text-decoration: none;
    color: black;
    transition: all 0.3s linear;
    opacity: 0.6;
    border-radius: 3px;
}

.social>div>a>img {
    width: 30px;
}

#imgFacebook {
    width: 15px;
}

.social>div>a:hover {
    border-bottom: solid 4px rgb(3, 39, 158);
    transition: all 0.3s linear;
    opacity: 1;
}