.Footer {
  color: #fff;
  background-color: var(--colorBlack);
  border-top: 8px solid var(--colorBrand);
  overflow: hidden;
}

.Footer-main {
  display: grid;
  grid-template-areas: 'info' 'nav' 'client' 'contact';
  gap: 2rem;
  padding-top: var(--spaceLg);
  min-height: 400px;
}

@media (min-width: 36.01rem) {
  .Footer-main {
    grid-template-areas: 'info info info' 'client nav contact';
    padding: var(--spaceXl) var(--spaceMd) 0;
  }
}

@media (min-width: 75.01rem) {
  .Footer-main {
    gap: var(--spaceXl);
    grid-template-areas: 'info nav client contact';
  }
}

.Footer-contentCol {
  font-size: var(--textSm);
  display: flex;
  flex-direction: column;
  gap: var(--spaceXl);
  padding: 0;
  z-index: 1;
}

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

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

.Footer-contentColNav {
  grid-area: nav;
}

.Footer-contentColClient {
  grid-area: client;
}

@media (min-width: 36.01rem) and (max-width: 75rem) {
  .Footer-contentColClient {
    justify-content: end;
    margin-left: 33px;
  }
}

.Footer-contentColContact {
  grid-area: contact;
}

.Footer-info {
  grid-area: info;
  position: relative;
  display: flex;
  align-items: end;
}

@media (max-width: 36rem) {
  .Footer-info {
    min-height: 150px;
  }
}

@media (min-width: 75.01rem) {
  .Footer-info {
    width: 305px;
    justify-content: center;
  }
}

.Footer-infoLogo {
  position: absolute;
  top: -22rem;
}

@media (max-width: 48rem) {
  .Footer-infoLogo {
    scale: 0.85;
    left: -33px;
  }
}

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

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

.Footer-title {
  font-size: clamp(1.125rem, calc(1.01rem + 0.49vw), 1.5rem);
  color: white;
}

.Footer-socials {
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 36.01rem) {
  .Footer-socials {
    flex-direction: row;
  }
}

.Footer-socialsWrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  gap: 1rem;
}

@media (max-width: 75rem) {
  .Footer-socialsWrapper {
    margin-left: auto;
  }
}

@media (min-width: 36.01rem) {
  .Footer-socialsWrapper {
    position: static;
  }
}

@media (min-width: 64.01rem) {
  .Footer-socialsWrapper {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (min-width: 75.01rem) {
  .Footer-socialsWrapper {
    flex-direction: column;
    gap: 0;
  }
}

.Footer-socialsFrame {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 36rem) {
  .Footer-socialsFrame {
    flex-direction: column;
    gap: 25px;
  }
}

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

@media (max-width: 36rem) {
  .Footer-socialsFrame > a {
    margin: 0;
  }
}

.Footer-socialsFrame > a:hover svg path {
  fill: var(--colorBrand);
}

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

.Footer-socialsFrame > a svg path {
  transition: var(--animationBase);
}

.Footer-socialsFrame > a .Social-desc {
  display: none;
}

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

.Footer-copy {
  font-size: var(--textXs);
  color: var(--colorWhite);
  width: 100%;
}

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

.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;
  }
}

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

.Footer h5 {
  font-size: clamp(1rem, calc(0.923rem + 0.327vw), 1.25rem);
  margin: 16px 0 12px;
}

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