.site-footer {
  border-top: 1px solid #232322;
  background: #050505;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 230px 30px 200px 30px;
}

.footer-logo {
  width: 180px;
}

.footer-copyright p {
  font-family: var(--font-inter);
  color: #676767;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
}

.footer-copyright a {
  color: #676767;
  transition: 0.3s ease;
}

.footer-copyright a:hover {
  color: #e40000;
}

.footer-copyright {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF0D;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--white);
  color: #121212;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright {
    order: 3;
  }

  .footer-logo {
    order: 1;
  }

  .footer-socials {
    order: 2;
  }

  .footer-container {
    padding: 80px 20px;
  }
}