footer {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 3rem 0;

  background: var(--blue9);
}

footer h3, p, a {
  color: var(--white9);
}

footer img {
  width: 100%;
  max-width: 400px;
}

footer > div {
  width: 100%;
  max-width: 1200px;

  display: flex;
  justify-content: center;
}

.footer-top {
  width: 100%;
  max-width: 1050px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-address {
  width: 100%;

  display: flex;
  flex-direction: column;
}
.footer-address span {
  font-size: 1.1rem;
  color: var(--white9);
}
.footer-address span strong {
  font-weight: 600;
}

.footer-follow-container {
  width: 100%;

  display: flex;
  justify-content: space-between;
}

.footer-follow {
  display: flex;
  flex-direction: column;
}

.footer-follow h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-follow div {
  display: flex;
  gap: 1rem;
}

.footer-follow div a {
  transition: .3s ease;
}
.footer-follow div a:hover {
  transform: translateY(-3px);
}

.footer-follow div a img {
  width: 100%;
  max-width: 3rem;
}

.footer-top button {
  width: 100%;
  max-width: 180px;

  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 0;
  border-radius: 0.5rem;

  transition: .3s ease;

  color: var(--blue9);
  background: var(--gray6);
}
.footer-top button:hover {
  background: var(--gray8);
}

footer > img {
  margin-top: 4rem;
}

footer > p {
  font-size: 1.2rem;
  margin-top: 2rem;
}

@media (max-width: 882px) {
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  footer {
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .footer-address span {
    font-size: 0.9rem;
  }
}