.footer {
  background-color: var(--primary);
  padding: clamp(15px, 3.5vw, 48px);
  padding-bottom: clamp(30px, 5vw, 80px);
}

.footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.footer .footer-wrapper .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 3.2vw, 40px);
}

.footer .footer-wrapper .footer-menu li a {
  color: white;
  font-size: clamp(18px, 2vw, 28px);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.footer .footer-wrapper .footer-menu li a:hover {
  color: var(--secondary);
}

@media (max-width: 992px) {
  .footer .log img {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .footer .log img {
    width: 150px;
    height: auto;
  }
}
/*# sourceMappingURL=footer.css.map */