.footer-totop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 0;
  background-color: var(--c-main);
  color: var(--c-white);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.footer-totop svg {
  display: block;
}

.footer {
  margin-top: 0;
  padding: 3.125rem 0 3.75rem;
  background-color: #152238;
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.footer__logo {
  text-align: center;
}

.footer__logo a {
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.4;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer__social-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social-item img {
  width: auto;
  height: 1.25rem;
}

.footer__nav {
  width: 100%;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav-item a {
  display: block;
  padding: 0.625rem 1.125rem;
  color: var(--c-white);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  transition: color var(--duration-base) var(--ease-out);
}

.footer__nav-item a:hover {
  color: #c5a059;
}

.footer__copyright {
  padding-top: 0.5rem;
  color: var(--c-white);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__logo a {
    font-size: 1.75rem;
  }
}
