/* footer {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: 5% 5%;
  justify-content: center;
}

footer div {
  display: flex;
  flex: 1;
  justify-content: center;
  margin-right: 5%;
}

footer div:nth-child(1) img{
  transition: 0.3s;
}

@media (min-width: 1024px) {

  footer div {
    flex-direction: column;
  }

  footer div:nth-child(1) {
    max-width: 400px;
  }

  footer div:nth-child(1) img {
    width: 100%;
    height: auto;
  }

  footer div:nth-child(2) {
    max-width: 400px;
  }

  footer div:nth-child(2)>p {
    font-size: 17px;
  }
} */