.site-footer {
  padding: 70px 0 30px;
  color: #c6d3df;
  background: #07111f;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer .shell {
  display: block;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 40px;
}

.site-footer .footer-brand img {
  display: block;
  width: 170px;
  filter: brightness(0) invert(1);
}

.site-footer .footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #91a5b9;
  font-size: 13px;
  line-height: 1.65;
}

.site-footer .footer-column strong {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: #aebfd0;
  font-size: 12px;
  text-decoration: none;
}

.site-footer .footer-column a:hover {
  color: #45e0cb;
}

.site-footer .footer-column .footer-portal {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(69, 224, 203, .35);
  border-radius: 10px;
  color: #45e0cb;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: auto;
  margin: 52px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #71879b;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer .shell {
    width: min(1180px, calc(100% - 28px));
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-brand {
    grid-column: auto;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
  }
}
