.footer {
  display: block;
  position: relative;
  padding: 48px 0 24px;
  width: 100%;
  background-color: #192a6b;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social__link .social-icon {
  height: 24px;
  width: 24px;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
