.footer {
  background: #0b0e11;
  color: #ffffff;
  padding: 50px 20px 20px;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}

.footer-col .highlight{
  width: 40px;
  height: 4px;
  background-color: var(---colorPrimary);
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cfd3d8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col.brand h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-col.brand p {
  max-width: 260px;
  color: #c6cacf;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #1c1f23;
  padding-top: 15px;
  color: #9da2a8;
  font-size: 14px;
}

.socials-col{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.socials-col i{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: #232323;
  color: white;
}

/* Responsive */
@media (min-width: 1024px) {
  .footer{
    padding: 2rem 2rem;
  }
  .footer-container {
    flex-direction: row;
  }

  .footer-col {
    flex: 1 1 160px;
  }

  .brand{
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .footer{
    padding: 3rem 4rem;
  }
}
