

a{
    text-decoration: none;
    color: white;
}
.icone{
    width: 2rem;
}
.grid{
    display: grid;

}

.logoFooter img{
    margin: 10px 0 0 0;
}


/* mobile */
@media (max-width: 767px) {
    footer{
        margin-left: 2rem;
    
    }
    .spaceFooter{
        margin-bottom: 2rem;
    }
    .flex{
        display:grid;
    }
    .albertLogo img{
        width: 120px;
    }
    
    .xploriaLogo img{
        width: 150px;
    }

}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    footer{
        margin: 2rem;
    
    }

    .spaceFooter{
        margin-bottom: 2rem;
    }
    .flex{
        display:grid;
    }
    .albertLogo img{
        width: 130px;
    }
    
    .xploriaLogo img{
        width: 170px;
    }
}

/* desktop */
@media (min-width: 1024px) {
    footer{
        margin: 2rem;
        color: white;
    
    }
    .flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .albertLogo img{
        width: 8vw;
        min-width: 120px;
    }
    
    .xploriaLogo img{
        width: 10vw;
        min-width: 150px;
    }
}