.Footer {
  background: var(--bgColorFooter, var(--colorBrand));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  font-size: 1rem;
}

.Footer h2 {
  color: var(--colorWhite);
  font-weight: 700;
}

.Footer-frame {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.Footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 2rem;
}

@media (max-width: 64rem) {
  .Footer-content {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;
  }
}

@media (max-width: 48rem) {
  .Footer-content {
    grid-template-columns: auto;
  }
}

.Footer-main {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Footer-main a {
  color: inherit;
}

.Footer-item {
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 64rem) {
  .Footer-item {
    margin: 0;
  }
  .Footer-item:nth-child(1) {
    grid-column: 1 / span 3;
  }
}

@media (max-width: 48rem) {
  .Footer-item {
    padding: 0 1.5rem;
  }
  .Footer-item:nth-child(1), .Footer-item:nth-child(2) {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 32rem) {
  .Footer-item:nth-child(1) {
    margin: auto;
    padding: 0;
  }
  .Footer-item {
    grid-column: 1 / span 2;
  }
}

.Footer-item svg {
  min-width: 1.5rem;
}

.Footer-contactsWrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spaceSm);
  width: fit-content;
}

.Footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  gap: var(--spaceRg);
  border: 2px solid var(--colorWhite);
  white-space: nowrap;
}

.Footer-address p:first-child {
  font-weight: 800;
}

.Footer-icons {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  width: fit-content;
}

.Footer-icons a {
  color: var(--colorWhite);
  flex: 1;
  font-weight: 400;
}

.Footer-copyFrame {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spaceLg);
}

.Footer-copyFrame path {
  fill: var(--colorWhite);
}

.Footer-copy {
  border-top: 1px solid #979797;
  padding: var(--spaceLg) 0;
  font-size: 1rem;
  background: var(--bgColorFooterCopy, var(--colorBrand));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

.Footer-copy a {
  color: inherit;
}

.Footer-copy p {
  align-items: center;
  display: flex;
  margin: 0;
}

@media (max-width: 25rem) {
  .Footer-copy p:first-child {
    margin-bottom: var(--spaceXs);
    width: 100%;
  }
}

.Footer-copy svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.625rem;
}

@media (max-width: 25rem) {
  .Footer-copy svg {
    width: 1.4em;
  }
}

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