.header__socials {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
}
.header__social-link {
  width: 24px;
  height: 24px;
}
.header__social-link svg path,
.footer__social-link svg path{
  opacity: 0.5;
  transition: opacity 0.1s ease-in-out;
}
.header__social-link:hover svg path,
.footer__social-link:hover svg path{
  opacity: 1;
}

.footer__logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    gap: 40px;
}

.footer__socials {
  display: flex;
  gap:20px;
}
.mobile-only {
  display: none;
}
.header__socials--mobile {
  display: none;
}
.peoplebehind__card {
  position: relative;
}
.peoplebehind__card-info {
  margin-bottom: 12px;
}
.peoplebehind__card-link {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.peoplebehind__card-link svg path{
  opacity: 0.5;
  transition: opacity 0.1s ease-in-out;
}
.peoplebehind__card-link:hover svg path{
  opacity: 1;
}

.youridentity {
  background:
    url('../images/main-bg.png') center/cover no-repeat,
    linear-gradient(180deg, rgba(117, 66, 255, 0) 0%, rgba(117, 66, 255, 0.1) 100%),
    #0B0D11;
}


@media (max-width: 1375px) {
  .mobile-only {
    display: block;
  }
}
@media (max-width: 1024px) {
  .footer__logo-wrapper {
    align-items: center;
    gap:30px;
  }
}
@media (max-width: 520px) {
  .header__socials {
    display: none;
  }
  .header__socials--mobile {
    display: flex;
    margin: 0 0 20px auto;
    width: fit-content;
    justify-content: center;
  }
}
