.footer {
  background-color: #101010
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding-top: 80px;
  padding-bottom: 52px
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 23px
}
.footer__logo {
  margin-right: auto
}
.footer__social-text {
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  color: #999
}
.footer__social-list {
  display: flex
}
.footer__social-item {
  padding: 10px;
  line-height: 0
}
.footer__social-item svg {
  width: 20px;
  height: 20px;
  fill: #999;
  color: #999
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px
}
.footer__text {
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #999
}
@media (max-width:1400px) {
  .footer__container {
    gap: 50px
  }
}
@media (max-width:768px) {
  .footer__container {
    gap: 31px;
    padding-top: 38px;
    padding-bottom: 70px
  }
  .footer__top {
    flex-direction: column
  }
  .footer__logo {
    display: none
  }
  .footer__social-text {
    font-size: 14px
  }
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center
  }
  .footer__text:nth-child(1) {
    max-width: 135px;
    text-align: center
  }
}