.nw-site-footer {
  margin: 0;
  background: #1f4b4d;
  color: #d9e1d9;
  font-family: "Montserrat", sans-serif;
}

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

.nw-site-footer__main {
  display: flex;
  width: min(100% - 44px, 1100px);
  min-height: 275px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 54px 0;
}

.nw-site-footer__title {
  margin: 0 0 16px;
  color: #f5f1e8;
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.15;
  text-transform: none;
}

.nw-site-footer__address {
  margin: 0;
  color: #d9e1d9;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.9;
}

.nw-site-footer__address a {
  color: #d9e1d9;
  text-decoration: none;
}

.nw-site-footer__address a:hover,
.nw-site-footer__address a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.nw-site-footer__socials {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.nw-site-footer__socials a {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(134, 173, 137, .2);
  color: #e4e9e4;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nw-site-footer__socials a:hover,
.nw-site-footer__socials a:focus-visible {
  background: #86ad89;
  color: #1f4345;
  transform: translateY(-2px);
  outline: none;
}

.nw-site-footer__copyright {
  padding: 17px 22px 20px;
  border-top: 1px solid rgba(217, 225, 217, .13);
  color: #91b398;
  font-size: .86rem;
  text-align: center;
}

@media (max-width: 700px) {
  .nw-site-footer__main {
    width: min(100% - 40px, 1100px);
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding: 52px 0 44px;
  }

  .nw-site-footer__socials {
    gap: 10px;
  }

  .nw-site-footer__socials a {
    width: 52px;
    height: 52px;
  }
}
