/**
 * Custom site footer — replaces Zero Block #rec677484200.
 */

#rec677484200 {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vc-footer {
  --vc-footer-teal: #007660;
  --vc-footer-bg: #f3f3f3;
  --vc-footer-text: #1a1a1a;
  --vc-footer-muted: #666;
  --vc-footer-legal: #777;
  box-sizing: border-box;
  background: var(--vc-footer-bg);
  color: var(--vc-footer-text);
  border-top: 2px solid var(--vc-footer-teal);
  padding: 40px 32px 28px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.vc-footer *,
.vc-footer *::before,
.vc-footer *::after {
  box-sizing: border-box;
}

.vc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vc-footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.vc-footer__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* One left-aligned stack, centered as a unit (avoids jagged per-line centering). */
.vc-footer__col--nav {
  display: grid;
  justify-content: center;
  justify-items: start;
  text-align: left;
}

.vc-footer__col--nav .vc-footer__list {
  align-items: flex-start;
}

.vc-footer__col--contacts {
  text-align: right;
  align-items: flex-end;
}

.vc-footer__col--contacts .vc-footer__list {
  align-items: flex-end;
}

.vc-footer__brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.vc-footer__tagline {
  margin-top: 6px;
  color: var(--vc-footer-muted);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vc-footer__slogan {
  margin: 12px 0 0;
  max-width: none;
  color: var(--vc-footer-muted);
  font-size: 13px;
  line-height: 1.45;
}

.vc-footer__label {
  margin: 0 0 12px;
  min-height: 1.35em;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  /* Cancel trailing letter-spacing so the label doesn’t look shifted left. */
  margin-right: -0.08em;
  text-transform: uppercase;
  color: var(--vc-footer-teal);
  line-height: 1.35;
}

.vc-footer__list {
  list-style: none !important;
  margin: 0 !important;
  /* Tilda global ul { padding-left: 20px } otherwise shifts links under the label. */
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-footer__list li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.vc-footer__list a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.vc-footer a,
.vc-footer a:link,
.vc-footer a:visited {
  color: var(--vc-footer-text) !important;
  text-decoration: none !important;
}

.vc-footer a:hover,
.vc-footer a:focus-visible {
  color: var(--vc-footer-teal) !important;
}

.vc-footer__phone {
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Tilda/phone obfuscators wrap glyphs in <small style="opacity:…"> — last digits go to 0 */
.vc-footer small {
  opacity: 1 !important;
  font-size: inherit !important;
  color: inherit !important;
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
}

.vc-footer__legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--vc-footer-legal);
  font-size: 12px;
  line-height: 1.5;
}

.vc-footer__legal a,
.vc-footer__legal a:link,
.vc-footer__legal a:visited {
  color: var(--vc-footer-legal) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.vc-footer__legal a:hover,
.vc-footer__legal a:focus-visible {
  color: var(--vc-footer-teal) !important;
}

@media screen and (max-width: 959px) {
  .vc-footer {
    padding: 32px 24px 24px;
  }

  .vc-footer__grid {
    flex-wrap: wrap;
    gap: 28px 24px;
  }

  .vc-footer__col--brand {
    flex: 1 1 100% !important;
  }

  .vc-footer__col--nav,
  .vc-footer__col--contacts {
    flex: 1 1 calc(50% - 12px) !important;
  }

  .vc-footer__col--nav {
    justify-content: start;
  }

  .vc-footer__col--contacts {
    text-align: left;
    align-items: flex-start;
  }

  .vc-footer__col--contacts .vc-footer__list {
    align-items: flex-start;
  }
}

@media screen and (max-width: 639px) {
  .vc-footer {
    padding: 28px 20px 22px;
  }

  .vc-footer__grid {
    flex-direction: column;
    gap: 24px;
  }

  .vc-footer__col--brand,
  .vc-footer__col--nav,
  .vc-footer__col--contacts {
    flex: 1 1 auto;
    text-align: left;
    align-items: flex-start;
  }

  .vc-footer__col--nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    justify-items: unset;
  }

  .vc-footer__col--nav .vc-footer__list,
  .vc-footer__col--contacts .vc-footer__list {
    align-items: flex-start;
  }

  .vc-footer__slogan {
    max-width: none;
  }

  .vc-footer__phone {
    white-space: normal;
    font-size: 15px;
  }

  .vc-footer__legal {
    flex-direction: column;
    gap: 10px;
  }

  .vc-footer__legal a {
    white-space: normal;
  }
}
