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

.Footer h2 {
  font-weight: 700;
  color: hsl(0, 0%, calc((var(--colorBrandSecondary-l) - 60) * -100%));
}

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

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

@media (max-width: 64rem) {
  .Footer-content {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }
}

.Footer-main {
  flex: 1;
  display: flex;
  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 1em;
  }
}

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

.Footer-address, .Footer-contact {
  display: flex;
}

.Footer-address svg, .Footer-contact svg {
  margin-right: var(--spaceRg);
  color: var(--colorBrand);
}

.Footer-address a, .Footer-contact a {
  flex: 1;
  font-weight: 400;
  color: hsl(0, 0%, calc((var(--colorBrandSecondary-l) - 60) * -100%));
}

.Footer-contact {
  gap: var(--spaceXs);
}

.Footer-icons {
  display: flex;
  flex-flow: column;
  gap: .25rem;
}

.Footer-socials {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 3rem;
  background: var(--colorBrandSecondary);
  padding: 1.5rem;
  border-top: 0.125rem solid var(--colorBrand);
}

.Footer-socials a {
  text-decoration: none;
  transition: var(--animationBase);
  display: inline-flex;
  align-items: center;
}

.Footer-socials a:last-child {
  margin-right: 0;
}

.Footer-socials a:hover, .Footer-socials a:active, .Footer-socials a:focus {
  text-decoration: none;
  transform: scale(1.2);
}

.Footer-socials a svg {
  width: 1.2em;
  height: 1.2em;
}

.Footer-socials a svg path {
  fill: var(--colorBrand);
}

.Footer-navs {
  width: 48%;
}

@media (max-width: 25rem) {
  .Footer-navs {
    width: 100%;
  }
}

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

.Footer-copy {
  padding: var(--spaceMd) 0;
  background: var(--colorBodyBg);
  color: hsl(0, 0%, calc((var(--colorBodyBg-l) - 60) * -100%));
  font-size: var(--textXs);
}

.Footer-copy a {
  color: inherit;
}

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

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

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

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

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