.Footer {
  border-top: 1px solid var(--colorBrand);
}

.Footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: space-between;
  gap: var(--spaceXl);
  padding-top: 2.5rem;
}

@media (min-width: 64rem) {
  .Footer-main {
    grid-template-columns: minmax(0, 1fr) 2fr;
    gap: 0;
  }
}

@media (min-width: 100.01rem) {
  .Footer-main {
    gap: var(--spaceXl);
  }
}

.Footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

@media (min-width: 36rem) {
  .Footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .Footer-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.Footer-contentCol {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: var(--spaceXl);
  padding: 0;
  font-size: 0.875rem;
}

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

.Footer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: start;
  width: fit-content;
  height: 100%;
  gap: var(--spaceMd);
}

@media (min-width: 64rem) {
  .Footer-info {
    gap: 1.5rem;
  }
}

.Footer-infoContact {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.Footer-info .Footer-info-btn {
  width: fit-content;
  color: var(--colorWhite);
  background: var(--colorBrand);
  text-transform: none;
}

.Footer-info .Footer-info-btn:hover, .Footer-info .Footer-info-btn:active, .Footer-info .Footer-info-btn:focus {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
  text-decoration: none;
}

.Footer a {
  color: inherit;
  text-decoration: none;
}

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

.Footer-title {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (min-width: 64rem) {
  .Footer-title {
    margin-bottom: 2rem;
  }
}

.Footer-socials {
  display: grid;
  gap: var(--spaceXs);
  max-width: 7.5rem;
}

.Footer-socials > a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.Footer-socials > a svg {
  width: 1.375rem;
}

.Footer-socials > a .Social-desc {
  margin-right: auto;
}

.Footer-socials > a .Social-desc span:nth-child(2) {
  display: none;
}

.Footer-socials > a .Social-desc span {
  font-size: 1em;
  text-wrap: nowrap;
}

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

.Footer-copyInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: var(--spaceLg);
  padding-bottom: var(--spaceLg);
}

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

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

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