
.header-socials{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
}
.header-socials a{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:950;
  letter-spacing:.03em;
  transition:.16s ease;
}
.header-socials a:hover{
  background:#ef2b1f;
  border-color:#ef2b1f;
  transform:translateY(-1px);
}
@media(max-width:900px){
  .header-socials{
    width:100%;
    margin:8px 0 0;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.10);
  }
  .header-socials a{
    width:42px;
    height:42px;
    font-size:13px;
  }
}
