@charset "utf-8";
/* CSS Document */
.footer{
  flex-wrap:wrap;
}
.footer > div:first-child{
  flex:1 1 auto;
}

.footer-wrap {
  padding: 0px 0px 55px;
  background: #091f38;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 100px;
  padding-top: 33px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  position: relative;
  z-index: 2
}
.footer img {
  width: 100px;
  filter: brightness(0) invert(1)
}
.footer p {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  text-align: right
}
.footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
}
.footer-social-label {
  color: rgba(255, 255, 255, .52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-social-icon {
  --platform: #c60022;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  transition:
    transform .24s cubic-bezier(.2, .75, .2, 1), color .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.footer-social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}
.footer-social-icon:hover, .footer-social-icon:focus-visible {
  color: #fff;
  border-color: var(--platform);
  background: var(--platform);
  box-shadow: 0 9px 23px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}
.footer-social-icon.whatsapp {
  --platform: #25d366;
}
.footer-social-icon.linkedin {
  --platform: #0a66c2;
}
.footer-social-icon.facebook {
  --platform: #1877f2;
}
.footer-social-icon.instagram {
  --platform: #e4405f;
}
.footer-social-icon.x-social {
  --platform: #292929;
}
.privacy-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  align-items: center;
  justify-content: flex-start
}
.privacy-footer-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, .52);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  opacity: 1;
  transition: opacity .2s ease, color .2s ease
}
.privacy-footer-link:hover, .privacy-footer-link:focus-visible {
  opacity: 1;
  color: #c60022;
  outline: none
}
@media(max-width:760px) {
  .footer-social-wrap {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 14px;
    flex-wrap: wrap;
    row-gap: 12px;
  }
}