footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 2rem 1rem;
}

.logo-footer {
    width: 50%;
}
.logo-footer img{
    width: 100%;
}

#menu-footer ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
    list-style: none;
    padding: 0;
}

#menu-footer ul li{
    margin: 1rem 0.5rem 0;
}

#menu-footer ul a{
    text-decoration: none;
    color: #000000;
    font-family: "Ubuntu-medium";
    font-size: 0.9rem;
}
#menu-footer ul a:hover{
    text-decoration: none;
    color: var(--blue-color);
}

footer p {
    text-align: center;
    font-size: 0.7rem;
}

@media screen and (min-width : 768px){
    footer{
        margin: 5rem 2rem 1rem;
    }
    .logo-footer {
        width: 20%;
    }
    .logo-footer img{
        width: 100%;
    }
    #menu-footer{
      font-size: 0.8rem;
    }
}

@media screen and (min-width : 1050px){

}

@media screen and (min-width : 1300px){
  footer{
      margin: 8rem 2rem 1rem;
  }
  footer p{
    font-size: 1.125rem;
  }
}
@media screen and (min-width : 1920px){
  .logo-footer{
    width: 15%;
  }
  #menu-footer ul a{
    font-size: 1.2rem;
  }
}
