.footer {
  background: #F3F3F3;
  padding: 40px 0;
  position: relative;
  z-index: 9999;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer__left {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 28px;
}
.footer__right {
  gap: 24px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 65%;
}
.footer__menu-list {
  display: flex;
  flex-flow: column;
  gap: 16px;
  max-width: 170px;
}
.footer__link {
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #3A3A3A;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer__link:hover {
  color: #F15024;
}
.footer__menu-item {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.footer__menu-title {
  height: 18px;
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #9B9B9B;
}
.footer__desc {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.copyright {
  padding: 28px 0;
  background: #F3F3F3;
}
.copyright__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright__left, .copyright__right {
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.copyright__link {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  color: #9B9B9B;
  text-decoration: none;
  transition: 0.3s ease;
}
.copyright__link.active, .copyright__link:hover {
  color: #3A3A3A;
}
.copyright__right {
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 992px) {
  .footer__content {
    display: flex;
    flex-flow: column;
    gap: 60px;
  }
  .footer__left {
    width: 100%;
  }
  .footer__right {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__link {
    font-family: Raleway;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    font-variant-numeric-figure: lining-nums;
    font-variant-numeric-spacing: proportional-nums;
  }
  .footer__menu-title {
    font-family: Raleway;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
  }
  .footer__menu-item {
    gap: 12px;
  }
  .footer__menu-list {
    gap: 12px;
  }
  .copyright__content {
    flex-flow: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
  .copyright__right {
    justify-content: flex-start;
  }
  .copyright__left, .copyright__right {
    max-width: 100%;
  }
}/*# sourceMappingURL=footer.css.map */