.site-footer {
  background-color: #131420;
  padding: 100px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer__logo {
  margin-bottom: 0;
}

.footer__logo .site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo .logo-text {
  display: flex;
  flex-direction: column;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.625px;
  line-height: normal;
}

.footer__logo .logo-title {
  color: #ffffff;
}

.footer__logo .logo-subtitle {
  background: linear-gradient(to right, #99e007, #fff400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer__menu a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  white-space: nowrap;
}

.footer__disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__disclaimer-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.79;
  max-width: 970px;
  text-align: center;
}
.footer__disclaimer-text h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 2;
}

.footer__icons {
  display: flex;
  align-items: center;
  gap: 23px;
}
.footer__icons img {
  max-height: 28px;
}

.footer__copyright {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 16px;
  text-align: center;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 20px;
  }

  .footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }

  .footer__inner {
    gap: 24px;
  }

  .footer__menu {
    flex-direction: column;
    gap: 12px;
  }

  .footer__disclaimer-text {
    font-size: 11px;
    padding: 0 16px;
  }

  .footer__copyright {
    font-size: 10px;
  }
}
