.footer{
    display: flex;
	text-align: center;
    justify-content: center;
	align-items: center;
	font-family: 'Montserrat';
	font-weight: bold;
	font-size: 13px;
    background-color: rgb(31, 31, 31);
    width: 100%;
    height: 80px;
    bottom: 0px;
}

.RedesSociales{
    width: 70%;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2, 15% 35%);
    font-family: 'Montserrat';
    font-size: 15px;
    color: white;
    text-align: justify;
}


.IconRS > img{
    max-height: 50px;
}

/*Medias*/
@media (max-width: 560px){
    .RedesSociales{
        display: flex;
	    text-align: center;
        justify-content: center;
	    align-items: center;
    }

    .IconRS{
        width: 48%;
        display: flex;
	    text-align: center;
        justify-content: center;
	    align-items: center;
    }

    .IconRS > img{
        max-height: 65px;
    }

    .TextRS {
        display: none;
    }
}