.Footer {
  color: #fff;
  background-color: var(--colorBrand);
}

.Footer-main {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  gap: 2rem;
  padding-top: var(--spaceLg);
  padding-bottom: var(--spaceLg);
}

@media (max-width: 64rem) {
  .Footer-main {
    gap: var(--spaceXl);
    flex-direction: column;
    padding: var(--spaceXl) var(--spaceMd);
  }
}

@media (min-width: 64.01rem) {
  .Footer-main {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 75.01rem) {
  .Footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

.Footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 48rem) {
  .Footer-content {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 36rem) {
  .Footer-content {
    grid-template-columns: 1fr;
  }
}

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

@media (min-width: 48.01rem) {
  .Footer-contentCol {
    align-items: center;
    padding: 0 calc(var(--spaceXl) / 2) calc(var(--spaceXl) / 2);
  }
}

.Footer-contentCol:not(.Footer-contentCol:last-of-type):after {
  content: '';
  display: block;
  width: 1px;
  height: 70%;
  position: absolute;
  background: var(--colorBrand);
  top: 50%;
  transform: translate(50%, -50%);
  right: 0;
}

@media (max-width: 48rem) {
  .Footer-contentCol:not(.Footer-contentCol:last-of-type):after {
    content: none;
  }
}

@media (max-width: 48rem) {
  .Footer-contentCol {
    font-size: var(--textSm);
  }
}

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

.Footer-info {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Footer-infoText {
  font-size: var(--textSm);
}

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

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

.Footer-title {
  font-size: var(--textMd);
  font-weight: 600;
  color: white;
  margin: 0 0 var(--spaceLg);
  text-align: center;
}

@media (max-width: 48rem) {
  .Footer-title {
    text-align: left;
  }
}

.Footer-socials {
  color: white;
}

.Footer-socials > a {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

@media (min-width: 48.01rem) {
  .Footer-socials > a svg {
    margin: auto;
  }
}

@media (min-width: 48.01rem) {
  .Footer-socials > a .Social-desc {
    display: none;
  }
}

.Footer-socials > a .Social-desc span {
  padding-left: 18px;
  font-size: 1em;
  color: white;
  text-wrap: nowrap;
}

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

.Footer-copyInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--spaceLg) var(--sizeContentOffset);
  border-top: 1px solid hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.4);
}

.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 */
