.site-footer {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;

  margin-top: 54px;
  background: var(--gray-bg);
  border-radius: 32px 32px 0 0;
  padding: 74px 70px 32px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(180px, 0.72fr) minmax(420px, 1.75fr);
  gap: 32px;
}

.site-footer__logo {
  margin-bottom: 30px;
}

.site-footer__brand-col .site-logo__text {
  color: #ffffff;
}

.site-footer__contacts + .site-footer__contacts {
  margin-top: 18px;
}

.site-footer__label {
  margin: 0 0 6px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__line {
  margin: 0 0 4px;
  color: #ffffff;
}


.site-footer__line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__socials {
  margin-top: 20px;
  display: flex;
  gap: 11px;
}

.site-footer__social {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__title {
  margin: 2px 0 14px;
  text-transform: uppercase;
  color: var(--brand-green);
}

.site-footer__title--line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__title--line::after {
  content: "";
  height: 2px;
  background: var(--brand-green);
  flex: 1;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li,
.site-footer__list a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
}


.site-footer__list a:hover {
  text-decoration: underline;
}

.site-footer__services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.site-footer__bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 2px solid var(--brand-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer__bottom small,
.site-footer__legal a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}


.site-footer__legal {
  display: flex;
  gap: 36px;
}

.site-footer__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1160px) {
  .site-footer__shell {
    padding: 46px 24px 26px;
    border-radius: 0 24px 0 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}
