/*! Footer */

footer {
  background: var(--Footer);
  color: white;
  padding: 1rem 0;
  margin-top: 35px;
}
.footerContent {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 40%;
  margin: 0 auto;
}
.footerItem {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 3vw, 16px);
  line-height: 24px;
}
.locationIco {
  min-width: 390px;
  margin-right: 20px;
}
.phoneIco {
  margin-bottom: 10px;
}
ion-icon {
  font-size: 64px;
  margin-right: 0.5rem;
  color: var(--Action);
}

@media (max-width: 1024px) {
  .footerContent {
    flex-direction: column;
    width: 50%;
  }

  .footerItem {
    margin-bottom: 1rem;
  }

  .footerItem:last-child {
    margin-bottom: 0;
  }
}