/** footer **/
.footer {
  padding: 2vw 5vw;

  font-family: Roboto, sans-serif;
  font-size: 0.8vw;
  font-weight: 500;
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}
.footer__wrapper {
}

/** footer-container **/
.footer-container__content {
  margin: 0 auto;
  max-width: 80vw;
}

/** footer-content **/
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content__info {
  margin-right: auto;
}
.footer-content__nav {
  margin: 0 auto;
}
.footer-content__support {
  margin-left: auto;
}


/** footer-info **/
.footer-info__item {
  padding: 0.5vw 0;
}

/** footer-support **/
.footer-support {
  padding: 0 2vw;
  line-height: 1.2vw;
}

/** footer-logo **/
.footer-logo {
  display: block;
  height: 3vw;
  opacity: .5;
}
.footer-logo:hover {
  opacity: 1;
}
.footer-logo__img {
  height: 100%;
  width: 100%;
}

/** footer-nav-list **/
.footer-nav-list {
  display: flex;
  justify-content: center;

  font-size: 1vw;
  font-weight: 400;
}
.footer-nav-list__item {
  padding: 0 1vw;
}

/** footer-link **/
.footer-link {
  color: var(--footer-text-color);
}
.footer-link:hover {
  color: white;
  text-decoration: underline;
}

/** mobile **/
@media screen and (max-width: 1023.98px) {
  .footer {
    font-size: 1rem;
  }
  /** footer-content **/
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-content__info {
    margin: 0 0 1rem 0;
  }
  .footer-content__nav {
    margin: 0 0 1rem 0;
  }
  .footer-content__support {
    margin: 0 0 2rem 0;
  }
  .footer-content__logo {
    align-self: center;
    margin-bottom: 3vw;
  }
  /** footer-info **/
  .footer-info__item {
    padding: 0.5rem 0;
  }
  /** footer-nav-list **/
  .footer-nav-list {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.2rem;
  }
  .footer-nav-list__item {
    padding: 0.4rem 0;
  }
  /** footer-support **/
  .footer-support {
    padding: 0;
    line-height: 1.2;
  }
  /** footer-logo **/
  .footer-logo {
    height: 15vw;
  }
}