/*
  Footer v 1.1;
  11/2023;
  João Diogo Pereira;
*/

.bg--footer{
  border-radius: 36px;
  background-color: #fffdfe;
}

.footer__logo{
  width:25%;
  /* aspect-ratio: 1; */
}

.footer__logo img{
  width:100%;
  height:100%;
  object-fit: scale-down;
}

.footer__morada{
  font-family: 'NotoSerif';
  font-size: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #29313e;
}

.footer__menu-item{
  font-family: 'OpenSans';
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #29313e;
  transition: all .3s ease-in-out;
}

.footer__menu-item:hover{
  color: var(--primaryColor);
}

.footer__socials svg{
  fill: var(--primaryColor);
  transition: all .3s ease-in-out;
}

.footer__socials svg:hover{
  fill: #29313e;
}

@media only screen and (max-width: 767px){
  .footer__logo{
    width:100%;
    aspect-ratio: unset;
  }

  .footer__logo img{
    width: 50%;
    aspect-ratio: 1;
  }
}