.footer {
  color: #fff;
  display: flex;
  margin-top: 132px;
  margin-bottom: 42px;
}

.footer_type_about {
  display: flex;
  justify-content: space-between;
  color: #fff;
  box-sizing: border-box;
  padding-top: 30px;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.footer__title {
  width: calc((100% + 30px)/2 - 30px);
  font-size: 12px;
  font-weight: normal;
}

.footer__nav {
  width: calc((100% + 30px)/6 - 30px);
  /* margin компенсирует по 30px отступов */
  margin: 0 30px;
  text-align: right;
}

.footer__nav a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
}

.footer__description {
  width: calc((100% + 30px)/3 - 30px);
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1180px) {
  .footer__description {
    width: 60%;
  }
}

@media screen and (max-width: 960px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 72px;
    padding: 0 25px;
  }

  .footer__title {
    order: 3;
  }

  .footer__nav {
    width: 100%;
    text-align: center;
    order: -1;
    margin-bottom: 30px;
  }

  .footer__description {
    width: 70%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .footer__description {
    width: 100%;
  }
}
