.footer {
  width: 100%;
  height: auto;
  padding: 20px 40px;
  background: #393939;
}

.footer-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.footer-item {
  display: flex;
  flex-direction: column;
}
.footer-item h5 {
  color: #f3f3f3;
  padding: 5px 0 10px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 4px;
}
.footer-item a, .footer-item p {
  color: #fff;
  padding: 7px 0;
  font-weight: 100;
  font-size: 12px;
}

.footer-link {
  padding: 7px 0;
  transform: translate(0);
  transition: all 0.5s;
}
.footer-link:hover {
  transform: translateX(10px);
  transition: all 0.5s;
}

.social-block {
  display: flex;
  padding: 10px 0;
}
.social-block__item {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.social-block__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 790px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer-item {
    text-align: center;
    margin: 10px 0;
  }
  .social-block {
    justify-content: center;
  }
}

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