.footer {
  padding-top: 80px;
  background: #eee;
  margin-top: auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer__container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav-block {
  width: 28%;
}

.list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-unstyled a {
  color: #333;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__nav-right {
  width: 40%;
}

.footer__contact {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #333;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__contact span {
  color: #999;
  font-weight: 400;
}

.footer__contact a {
  color: #333;
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 58px 0 30px;
}

.footer__bottom-left {
  width: 28%;
}

.footer__bottom-left a {
  padding: 12px 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}

#social-buttons {
  display: flex;
  gap: 8px;
}

#social-buttons a {
  color: #fff;
  background: #337ab7;
  width: 32px;
  min-width: 32px;
  height: 32px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__bottom-center {
  width: 28%;
}

.footer__bottom-right {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-right p {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__bottom-right address {
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.footer__contact a:hover,
.list-unstyled a:hover {
  color: #337ab7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#social-buttons a:hover {
  background: #23527c;
}

.footer__logo:hover {
  opacity: 0.7;
}

@media (max-width: 1190px) {

  .footer__bottom-right,
  .footer__nav-right {
    width: 35%;
  }
}

@media (max-width: 767px) {

  .footer__nav,
  .footer__bottom {
    flex-direction: column;
  }

  .footer__bottom {
    padding: 40px 0 20px;
    gap: 20px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__bottom-center,
  .footer__bottom-left,
  .footer__bottom-right,
  .footer__nav-right,
  .footer__nav-block {
    width: 100%;
  }
}