.footer__wrap {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 40px;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 990px) {
  .footer__wrap {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
.footer__logo {
  display: flex;
  margin-bottom: 10px;
}
.footer__logo img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
}
.footer ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  list-style-type: none;
}
.footer ul a {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.footer__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__box {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 990px) {
  .footer__box {
    grid-template-columns: 40px 1fr;
    grid-gap: 15px;
  }
}
.footer__box img {
  max-width: 100%;
  height: auto;
}
.footer__box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}
@media (max-width: 990px) {
  .footer__box p {
    font-size: 14px;
    line-height: 20px;
  }
}
.footer__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 990px) {
  .footer__group {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
}
.footer__link img {
  object-fit: contain;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 60px;
}
.footer__copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 990px) {
  .footer__copy {
    font-size: 14px;
    grid-column-start: auto;
    grid-column-end: auto;
    line-height: 20px;
  }
}

.up-to {
  position: fixed;
  right: 20px;
  bottom: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .up-to {
    right: 10px;
    bottom: 75px;
  }
}

.up-to-active {
  opacity: 1;
  pointer-events: auto;
}

/*# sourceMappingURL=footer.css.map */
