.site-footer {
  background:
    radial-gradient(circle at top left, rgba(255,61,127,.12), transparent 35%),
    #050214;

  padding: 45px 8% 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 25px;
}

.site-footer strong {
  color: #ff9f1c;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .95rem;
}

.site-footer p {
  margin-top: 10px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ff9f1c;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ff9f1c;
}
.footer-social a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.25s;
}

.footer-social a:hover{
    background:#1877F2;
    color:#fff;
    transform:translateY(-2px);
}