<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer {
  background-color: var(--dark-green-1);
  color: var(--light-green-1);
  padding: 2rem 0;
}

.footer__inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer__logo {
  display: none;
}

.footer__company-details,
.footer__socials {
  grid-column: 1/3;
}

.footer__company-details {
  font-size: 15px;
  line-height: 21px;
}

.footer__description {
  display: none;
}

.footer__menu-heading {
  font-size: 20px;
}

.copyright-section {
  background: var(--dark-pink);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}

.copyright-section__content {
  color: var(--light-pink);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 161.538% */
}

.footer__menu .menu {
  gap: 0.5rem;
  padding: 1rem 0;
}

.footer__menu .menu-item {
  border-bottom: unset;
}
.footer__menu .menu a {
  color: var(--light-green-1);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px; /* 153.333% */
  text-transform: none;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 1rem;
}
.footer__social-link {
  border-radius: 48px;
  border: solid 1px var(--light-green-1);
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

/* Google Map */

.acf-map {
  width: 100%;
  height: 520px;
  border: #ccc solid 1px;
  margin: 0;
}

.tooltip {
  background: var(--purple);
  color: var(--white);
  text-transform: uppercase;
  padding: 2px 12px;
  border-radius: 24px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 169.231% */
  letter-spacing: 0.13px;
  /* Add other styles as needed */
}

@media (min-width: 1024px) {
  .footer__inner-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 6rem;
  }
  .footer__logo {
    grid-column: 1/2;
    display: block;
  }

  .footer__company-details {
    grid-column: 1 / 2;
    column-span: none;
  }

  .footer__socials {
    grid-column: 2 / 3;
    column-span: none;
    margin-top: 0;
  }

  .footer__description {
    display: block;
    grid-column: 2 / 4;
    width: 80%;
    font-size: 15px;
    line-height: 23px; /* 153.333% */
    margin-top: 0.5rem;
  }
  .footer__menu {
    margin-top: 0.5rem;
  }
}
</pre></body></html>