.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background: var(--bs-gray-100);
}

.container-footer {
  max-width: 1480px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-content {
  max-width: 33%;
  display: flex;
  flex-direction: column;
}

.desc {
  max-width: 200px;
  margin-top: 10px;
}
.desc p {
  font-weight: 300;
  line-height: 1.3;
}

.contacts {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.contacts__item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contacts__item_tel::before {
  content: url(../../img/footer/phone.svg);
  margin-right: 5px;
}
.contacts__item_mail::before {
  content: url(../../img/footer/mail.svg);
  margin-right: 5px;
}
.contacts__item a {
  color: var(--light-green);
  font-size: 14px;
}

.footer-links {
  max-width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-links h4 {
  color: var(--bs-gray-900);
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-links-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.links-items {
  margin: 5px 10px;
}

.footer_item {
  padding: 3px;
}
.footer_item a span {
  text-transform: lowercase;
  color: var(--light-green);
  font-weight: 300;
}
.footer_item:hover a span {
  color: var(--bs-gray-900);
}

.footer-description {
  width: 33%;
  display: flex;
  flex-direction: column;
}
.footer-description h4 {
  color: var(--bs-gray-900);
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-description p {
  font-weight: 300;
  line-height: 1.3;
  margin-top: 10px;
}

@media (max-width: 762px) {
  .footer-description {
    display: none;
  }
  .footer-content {
    max-width: 100%;
  }
  .footer-links {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .footer-links-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*# sourceMappingURL=footer.css.map */
