.custom-footer{
  width: 100%;
}

.custom-footer__wrapper{
  margin: 0 auto;
  display: flex;
  max-width: 800px;
  flex-direction: row;
  justify-content: space-between;
}

.custom-footer__logo-social{
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 250px;
}

.custom-footer__icons-list{
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.custom-footer__icon{
  list-style: none;
  margin: 0;
  width: 40px;
  height: 40px;
}

.custom-footer__icon svg{
  width: 100%;
  height: 100%;
}

.custom-footer__copy-section{
  align-self: end;
}

{#Media Queries#}
@media(max-width: 880px){
  .custom-footer__wrapper{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .custom-footer__copy-section{
    display: flex;
    flex-flow: row nowrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
  }
}