.footer {
  background: #020408;
  padding: 48px 16px 32px;
  color: #c7cad1;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.footer__nav-item {
  font-family: "Proxima Nova Regular";
  border: 1px solid rgba(148, 190, 240, 0.13);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(147, 174, 206, 1);
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer__nav-item:hover {
  border-color: rgba(148, 190, 240, 0.28);
  color: #edf4fc;
}

.footer__description {
  font-family: "Proxima Nova Regular";
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(107, 135, 171, 1);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.footer__social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Proxima Nova Regular";
  border: 1px solid rgba(148, 190, 240, 0.13);
  border-radius: 999px;
  color: rgba(147, 174, 206, 1);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer__social-item--icon-only {
  width: 52px;
  height: 52px;
  padding: 0;
}

.footer__social-item--labeled {
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
}

.footer__social-item:hover {
  border-color: rgba(148, 190, 240, 0.28);
  color: #edf4fc;
}

.footer__social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer__divider {
  max-width: 1200px;
  height: 1px;
  background: rgba(148, 190, 240, 0.13);
  margin: 0 auto 24px;
}

.footer__bottom {
  text-align: center;
}

.footer__copyright {
  font-family: "Proxima Nova Regular";
  font-weight: 400;
  font-size: 14px;
  color: rgba(107, 135, 171, 1);
  margin: 0 0 8px;
}

.footer__slogan {
  font-family: "Proxima Nova Regular";
  font-weight: 400;
  font-size: 14px;
  color: rgba(107, 135, 171, 1);
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 16px 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    -webkit-overflow-scrolling: auto;
    padding-bottom: 0;
    margin-bottom: 32px;
  }

  .footer__nav-item {
    padding: 10px 18px;
    font-size: 14px;
  }

  .footer__description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .footer__social {
    margin-bottom: 32px;
  }
}
