.site-footer {
  color: #c8d3e2;
  background: #06172f;
  font-family: "Inter", sans-serif;
}

.site-footer__main {
  padding: 68px 24px 54px;
}

.site-footer__container {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 55px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.site-footer__logo img {
  width: auto;
  max-width: 230px;
  height: 58px;
  object-fit: contain;
}

.site-footer__description {
  max-width: 340px;
  margin: 0;
  color: #98a8bd;
  font-size: 13px;
  line-height: 1.75;
}

.site-footer__event {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #9baac0;
  font-size: 12px;
}

.site-footer__event strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__column h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__column nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__column a {
  width: max-content;
  max-width: 100%;
  color: #9eacc0;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__column nav a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #9eacc0;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer__contact a {
  color: #d9e2ee;
}

.site-footer__contact a:hover {
  color: #ffffff;
}

.site-footer__button {
  min-height: 44px;
  margin-top: 22px;
  padding: 0 19px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: #147cc4;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__button:hover {
  background: #198bd8;
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #041226;
}

.site-footer__bottom-container {
  width: min(100%, 1160px);
  min-height: 72px;
  margin: 0 auto;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer__bottom p {
  margin: 0;
  color: #7c8ba1;
  font-size: 11px;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__bottom a {
  color: #8e9db2;
  font-size: 11px;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #ffffff;
}

@media (max-width: 950px) {
  .site-footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer__main {
    padding: 52px 20px 43px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom-container {
    padding-right: 20px;
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
