@charset "utf-8";
/* ============================================================
   Lofty: mobile / tablet contact row (≤ 991px)
============================================================ */
/* Default hidden (desktop) */
.cy-contacts-bar {
  display: none;
}

@media (max-width: 991px) {
  header.md-header .header-container > .cy-contacts-bar {
    display: flex;
    align-items:center;
    justify-content: center; /* centered above logo */
    gap: 14px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.2;
      background: rgba(3, 42, 70, 0.45);
  }

  header.md-header .cy-contacts-bar a {
    color: inherit;          /* uses Lofty header text color */
    text-decoration: none;
  }

  header.md-header .cy-contacts-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}
/* Mobile/tablet only */
@media (max-width: 991px) {
  /* Allow items to wrap onto multiple lines */
  header.md-header.mobile .header-container {
    flex-wrap: wrap;
  }

  /* Force contacts bar to be a full-width row above logo */
  header.md-header.mobile .header-container > .cy-contacts-bar {
    flex: 0 0 100%;
    width: 100%;
    order: -1;              /* stays above logo even if DOM order changes */
    display: flex;
    justify-content: space-between; /* or center if you prefer */
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    box-sizing: border-box;
  }
}
@media (max-width: 991px) {
  header.md-header .cy-phone-icon {
    color: #fff; /* navy blue */
    display: inline-flex;
    align-items: center;
  }
}

/* Desktop only */
@media (min-width: 992px) {
  .left-menu > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) > li:nth-child(1) > div:nth-child(2) > ol:nth-child(1),
  .left-menu > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) {
    column-count: 3;
    column-gap: 28px;

    /* Helps columns have enough room (tweak if needed) */
    min-width: 720px;
  }

  .left-menu > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) > li:nth-child(1) > div:nth-child(2) > ol:nth-child(1) > li,
  .left-menu > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) > li:nth-child(2) > div:nth-child(2) > ol:nth-child(1) > li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }
}