footer{
  position: relative;
  /* background-image: url('/wp-content/uploads/2023/07/footer-bg-scaled.webp'); */
  background-size: cover;
}

footer .footer-wraper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  /* max-width: 1200px; */
  margin: auto;
}

footer .footer-wraper .custom-logo-link{
  width: 2.5rem;
  display: block;
}

footer .footer-wraper .menu{
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  text-transform: capitalize;
}

footer .footer-wraper .menu:last-child{ /* this is for the social media menu */
  font-size: 1.3rem;
}

footer .footer-wraper button{
  display: none;
}

@media screen and (max-width: 640px) { 
  footer{
    position: relative;
  }

  footer .footer-wraper{
    flex-direction: column;
    gap: 0.5rem;
  }

  /* footer .footer-wraper .custom-logo-link{
    display: none;
  } */
  
  footer .footer-wraper .menu{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.7rem;
    text-align: center;
  }
}