.main-footer {
  color: var(--text-color);
  background-color: var(--secondary-color);
  border-top: 2px solid var(--secondary-color);
}

.footer-content {
  display: flex;
  gap: 40px;
  padding-block: 20px;
}

.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-section * {
  margin: 0 !important;
}
.footer-section h4 {
  color: var(--text-color);
  font-size: 1.3rem;
}
.footer-section ul {
  list-style: none;
  gap: 16px;
}
.footer-section a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.footer-social a:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--secondary-color);
  padding-top: 20px;
  text-align: center;
  color: rgba(34, 41, 67, 0.5411764706);
  width: 100%;
  background-color: #efefef;
  padding-block: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-content ul {
    flex-direction: column;
    align-items: flex-start !important;
  }
}/*# sourceMappingURL=footer.css.map */