 /*FOOTER*/
.footer{
  display: flex;
  flex-direction: row;
  padding: 30px;
    position: absolute; 
    bottom: 0;
    left: 0; 
    right: 0
}

.footer p,
.footer a{
  margin: 0;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: underline;
}

.footer__links{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}

.footer__links li{
  margin-right: 30px;
}

.footer__links li:last-child{
  margin-right: 0;
}

.footer__links li img{
    width: 10px!important;
    height: auto;
}

/* 2. Footer small */

.footer--small{
  background: #222;
  justify-content: space-between;
}

.footer--small p,
.footer--small a{
  color: white;
}


/* 4. Footer responsive */

@media (max-width: 480px){

  .footer,
  .footer__links{
    align-items: center;
  }

  .footer{
    padding: 15px;
    flex-direction: column;
  }

  .footer__links{
    flex-direction: row;
    margin-top: 15px;
  }

  .footer__links li{
    margin-right: 15px;
  }

}
@media (min-width: 480px) and (max-width: 375Spx) {
    .footer {
        bottom: auto;
    }
}