.site-footer,
header nav a,
header .dropdown-menu a,
header .nav-dropdown a,
header .mobile-menu a {
  font-size: 15px !important;
}

.site-footer {
  width: 100%;
  padding: 56px 0 20px;
  background: #292b61;
  color: #fff;
}

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

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .9fr .65fr .65fr;
  gap: 40px;
}

.site-footer__logo {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 32px;
  object-fit: contain;
}

.site-footer__contact {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer__contact p {
  margin: 0;
}

.site-footer__contact-group {
  padding-top: 20px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.site-footer__social-link {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  transition: background-color .2s ease;
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, .1);
}

.site-footer__social-link .material-symbols-outlined {
  font-size: 20px;
}

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

.site-footer__heading {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  font-weight: 600;
}

.site-footer__links a {
  transition: color .2s ease;
}

.site-footer__links a:hover {
  color: #2dd4bf;
}

.site-footer__follow {
  width: 156px;
  max-width: 100%;
  text-align: center;
}

.site-footer__follow .site-footer__heading {
  margin-bottom: 16px;
  border-bottom: 0;
  padding-bottom: 0;
  text-transform: none;
}

.site-footer__qr {
  display: block;
  width: 156px;
  max-width: 100%;
  height: auto;
  padding: 4px;
  border-radius: 6px;
  background: #fff;
}

.site-footer__copyright {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer__container {
    padding: 0 20px;
  }

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