.Footer {
  background: var(--colorBrand);
  color: var(--colorWhite);
  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: 36rem) {
  .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: 1rem;
  width: fit-content;
}

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

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

.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 {
  padding: var(--spaceLg) 0;
  font-size: 1rem;
  border-top: 1px solid #979797;
}

.Footer-copy a {
  color: inherit;
}

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

@media (max-width: 23.4375rem) {
  .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: 23.4375rem) {
  .Footer-copy svg {
    width: 1.4em;
  }
}

.Footer-socials {
  display: flex;
  gap: var(--spaceMd);
}

.Footer-socials a {
  color: var(--colorText);
}

.Footer-socials a:hover, .Footer-socials a:active, .Footer-socials a:focus {
  text-decoration: none;
}

.Footer-socials a svg {
  min-height: 1.25rem;
}

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