footer{
    display: block;
    width: 100%;
    margin-top: 10%;
    background-color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
.footer__info{
    display: grid;
    grid-template-columns: 20% 50% 30%;
    padding-top: 4%;
    margin-top: 30vh;

}
.footer__logo{
    width: 165px;
    height: 107px;
    margin: auto;
    margin-top: 3%;
    background: white;
}
.footer__logo img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.footer__info .description{
    width: 50%;
    margin: auto;
}
.footer__info .description strong{
    font-size: 25px;
}
.footer__info .description p {
    color: #a5a5a5; 
}
.footer__info .contact{
    display: block;
    width: 100%;
}
    
.footer__info .contact strong{
    font-size: 25px;
    letter-spacing: 2px;
}
.footer__info .contact .wsp , .ubication , .mail{
    display: flex;
    align-items: center;
    margin-top: 2%;
}

.footer__info .contact .wsp img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.ubication{
    width: 100%;
    align-items: center;
}
.ubication p {
    display: block;
    width: 76%;
}
.ubication img{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    padding: 2%;
    background-color: white;
}
.footer__info .contact p {
   color: #a5a5a5 ;
   transition: all 100ms;
   padding: 0 1em;
}
.footer__info .contact p:hover{
    color: white;
    cursor: pointer;
}

.mail img {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 100%;
    padding: 5px;
}
@media (max-width:1300px){
    .footer__info .description {
        width: 95%;
    }
    .footer__info .description strong {
        font-size: 23px;
    }
    .footer__logo {
        width: 120px;
        height: 120px;
    }
    .footer__info {
        grid-template-columns: 17% 43% 33%;
        padding-top: 1%;
    }
}
@media(max-width:1024px){
    .footer__info .description p {
        font-size: 11px;
    }
    .footer__info .contact p {
        font-size: 11px;
        padding: 0 1em;
    }
    .footer__info {
        grid-template-columns: 22% 39% 33%;
    }
}

@media(max-width:1000px){
    .footer__info {
        display: block;
    }
    .footer__info .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 119%;
        margin-top: 11vh;
        width: 90%;
    }
    .footer__info .description p {
        font-size: 21px;
    }
    .footer__logo {
        margin: auto;
    }
}
@media(max-width:500px){

    .footer__logo{
        margin: unset;
        margin-left:1em;
    }
    .footer__info .description p {
        font-size: 17px;
    }
    .footer__info .contact {
        margin-left: 1em;
        padding-bottom: 1em;
        margin-top: 6vh;
    }
    .footer__info .contact .wsp img {
        width: 38px;
        height: 37px;
    }
    .mail img {
        width: 39px;
        height: auto;
    }
    .contact img {
        margin-right: 1em;
    }
}