.brand {
  display: flex;
  align-items: center;
}

.brand > img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 3px;
}

.about-logo {
  display: block;
  width: min(100%, 310px);
  height: auto;
  align-self: center;
  border-radius: 4px;
}

.footer-identity > img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: .2s;
}

.social-links a:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg path,
.social-links .social-fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 800px) {
  .brand > img {
    width: 62px;
    height: 62px;
  }
}
