.footer {
  background-color: #161616;
  color: #fff;
}
.footer__wrap1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #353535;
  padding-top: 50px;
  padding-bottom: 25px;
  gap: 30px 15px;
}
.footer__title {
  font-size: 14px;
  letter-spacing: 0.01em;
  margin-bottom: 13px;
}
.footer__apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.footer__app {
  max-width: 126px;
}
.footer__app-link {
  display: block;
  transition: transform 0.3s;
}
@media (hover) {
  .footer__app-link:hover {
    transform: translateY(1px);
  }
}
.footer__socs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.footer__soc-link {
  display: block;
  transition: transform 0.3s;
}
@media (hover) {
  .footer__soc-link:hover {
    transform: translateY(1px);
  }
}
.footer__soc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.footer__soc-icon svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}
.footer__wrap2 {
  padding-top: 27px;
  padding-bottom: 51px;
}
.footer__copy {
  font-size: 14px;
}