footer{
  margin-top:2rem;
  background-color: var(--albastru-inchis);
  height:120px;
  width:100%;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding:0 3rem;
}

.footer-sisc{
  height:85%;
}

footer img{
  height:100%;
  object-fit: contain;
}

.footer-social{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap:1.5rem;
}

.footer-social a{
  font-size: 34px;
  transition: 0.3s;
}

.footer-social a:visited{
  color:white;
}

.footer-social a:hover{
  color:var(--albastru);
}


@media screen and (max-width:450px){

  footer{
    height:110px;
    padding:0 1rem;
  }


  .footer-social a{
    font-size:28px;
  }

}