.has-site-footer .footer {
  display: none !important;
}

.site-footer {
  padding: 70px 0 35px;
  color: #5A5366;
  background: #F5F6F8;
  font-family: 'Exo', Arial, sans-serif;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer__shell {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  padding-bottom: 45px;
  border-bottom: 1px solid #E5E2EA;
}

.site-footer__brand img {
  display: block;
  width: 200px;
  max-width: 100%;
}

.site-footer__brand p {
  max-width: 600px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.site-footer__office strong {
  display: block;
  margin-bottom: 8px;
  color: #3A3345;
  font-family: 'ExoBold', 'Exo', Arial, sans-serif;
  font-size: 14px;
}

.site-footer__office span {
  display: block;
  font-size: 12px;
  line-height: 1.55;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  font-size: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #5A45EF;
  outline: none;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(90, 69, 239, .08);
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(37, 2, 130, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.site-footer__social:hover,
a.site-footer__social:focus-visible {
  outline: none;
  box-shadow: 0 8px 20px rgba(90, 69, 239, .16);
  transform: translateY(-2px);
}

.site-footer__social img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.site-footer__social--pending {
  cursor: default;
}

.site-footer__email {
  color: #5A45EF;
  text-decoration: none;
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 55px 0 28px;
  }

  .site-footer__shell {
    width: calc(100% - 28px);
  }

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

  .site-footer__links {
    gap: 12px 16px;
  }
}
