.footer {
  background: #ffffff;
  /* border-top: 1px solid #efefef; */
  color: #000000;
  padding: 100px 20px;
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.contact-form input::placeholder {
  color: #b6b6b6 !important;
}
.contact-form textarea::placeholder {
  color: #b6b6b6 !important;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col {
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-img {
  height: 70px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.logo-icon {
  color: #000000;
  font-size: 32px;
  margin-right: 8px;
}
.logo-text {
  color: #fff;
}
.no-space-footer {
  margin: 0;
}
.since {
  font-size: 36px;
  font-weight: 500;
  margin: 10px 0 30px;
  color: #000000;
}
.since span {
  font-weight: 400;
}
.footer-copy {
  color: #aaa;
  font-size: 16px;
}
.footer-copy .highlight {
  color: #000000;
  font-weight: 400;
}
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-col p {
  margin-bottom: 10px;
  color: #4d4d4d;
  line-height: 1.6;
  font-weight: 400;
}
.phone a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
}
.email-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 400;
}
.social-icons a {
  display: inline-block;
  padding: 10px;
  margin-right: -3px;
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  transition: background 0.3s, color 0.3s;
}
.social-icons a:hover {
  background: #000000;
  color: #fff;
}
.menu-col .menu-grid {
  display: flex;
  gap: 40px;
}
.menu-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-grid ul li {
  margin-bottom: 10px;
}
.menu-grid ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}
.menu-grid ul li a:hover {
  color: #000000;
}
.menu-grid ul li a.active {
  color: #000000;
  font-weight: 400;
  border-bottom: 2px solid #000000;
}
ul > li:before {
  display: none !important;
}
ul > li {
  padding: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .menu-col .menu-grid {
    flex-direction: column;
    gap: 20px;
  }
  .since {
    font-size: 28px;
  }
}