.footer {
  height: fit-content;
  width: 100%;
  margin: 100px 0;
}
.footer-content {
  width: 80%;
  margin: auto;
}
.footer-line h3 {
  font-size: 29px;
  min-width: fit-content;
}
.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer-title {
  min-width: fit-content;
}
.footer-line .line {
  width: 100%;
  height: 1px;
  background: #101010;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.footer-links {
  display: flex;
  gap: 50px;
  margin: 50px 0;
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #101010;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .footer-line h3 {
    font-size: 20px;
  }
}
@media (max-width: 850px) {
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-links a {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .footer-line {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 60%;
    margin: auto;
  }
  .footer-line h3 {
    font-size: 17px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}
