.site-footer {
  background: #35393C;
  width: 100%;
  border-top: 1px solid #dde6ee;
  margin: 0;
  padding: 38px 0 30px 0;
  font-family: 'Montserrat', 'Jost', Arial, sans-serif;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo-img {
  width: 95px;
  height: 95px;
  margin-right: 18px;
}

.footer-company {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.footer-copyright {
  color: #b6bac0;
  font-size: 1.14rem;
  margin-left: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-social:hover {
  color: #1ed760;
  transform: scale(1.14);
  transition: color 0.18s, transform 0.18s;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-follow-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.09rem;
  margin-right: 9px;
  letter-spacing: 0.01em;
}

.footer-social {
  color: #0a66c2;
  font-size: 2.14rem;
  margin-right: 0;
  transition: color 0.16s;
  vertical-align: middle;
}

.footer-social:hover,
.footer-social:focus {
  color: #56d364;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0 20px;
  }
  .footer-right {
    margin-top: 15px;
    gap: 18px;
  }
  .footer-logo-img {
    width: 38px;
    height: 38px;
  }
  .footer-company {
    font-size: 1.11rem;
  }
  .footer-copyright {
    font-size: 0.99rem;
  }
}
