footer {
  width: 100%;
  background: var(--navy);
  margin-top: 20px;
  padding: 20px 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "nav"
    "info"
    "social";

  gap: 40px;
}
img.footer-logo {
  width: 250px;
  height: 70px;
  object-fit: cover;
  grid-area: logo;
  margin: 0 auto;
}
footer ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
}
footer li,
footer a {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
}
.footer-information {
  grid-area: info;
  padding-left: 50px;
}

.footer-information li,
.footer-information a {
  font-weight: 600;
}
.footer-navigation {
  grid-area: nav;
  display: flex;
  width: 100%;
  padding: 0 20px;
  justify-content: space-between;
}
.footer-navigation nav {
  width: fit-content;
}
.footer-navigation h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-socail {
  grid-area: social;
  display: grid;
  grid-template-columns: repeat(5, 25px);
  gap: 10px;
  justify-self: center;
}
.footer-socail h3 {
  font-size: 1.25rem;
  color: var(--white);
  text-align: center;
  max-width: 200px;
  grid-column: 1 / -1;
}
.footer-socail a {
  display: flex;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.footer-socail a:nth-child(2) {
  grid-column: 2 / 3;
}
.footer-socail a:nth-child(3) {
  grid-column: 4 / 5;
}
.footer-socail a:hover {
  background: rgb(205, 205, 205);
}
.footer-socail img {
  width: 60%;
  height: 60%;
}
@media screen and (min-width: 700px) {
  footer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo nav"
      " info nav"
      "social social";
  }
  img.footer-logo {
    margin: 0;
    margin-left: 50px;
  }
  .footer-navigation {
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    grid-template-columns: 300px 500px 300px;
    grid-template-areas:
      "logo nav social"
      " info nav .";
    justify-content: center;
    padding: 20px;
  }
  .footer-navigation {
    gap: 100px;
  }
}
