.footer {
  padding: 70px 0 40px 0;
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1f21;
}

.footer__item {
  margin-bottom: 12px;
}

.footer__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .3s;
}

.footer__link:hover {
  border-color: initial;
  opacity: 0.7;
}

.footer__separator {
  margin: 38px 0 50px 0;
  height: 2px;
  width: 100%;
  background: #ddd;
}

.footer__middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  color: inherit;
  text-decoration: none;
}

.footer__social-link i {
  font-size: 24px;
}

.footer__payments img {
  border: 1px solid #DAD9D7;
  border-radius: 10px;
}

.footer__payments img:first-child {
  margin-right: 25px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.footer__logo {
  max-width: 130px;
  margin-right: 25px;
}

@media screen and (max-width: 480px) {
  .footer__payments img {
    max-height: 50px;
  }
}