/*
 * HMZ Public Sub-Branches
 * Isolated homepage/network styling.
 * Does not modify main-branch/location or booking CSS.
 */

.hmz-sub-branches {
    position: relative;
    padding: 66px 0 72px;
    overflow: hidden;
    border-top: 1px solid #e7eef7;
    background:
        radial-gradient(circle at 95% 0%, rgba(37, 99, 235, .08), transparent 29%),
        radial-gradient(circle at 0% 100%, rgba(14, 165, 233, .06), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hmz-sub-branches::before {
    content: "";
    position: absolute;
    top: 26px;
    right: -58px;
    width: 150px;
    height: 150px;
    border: 24px solid rgba(37, 99, 235, .045);
    border-radius: 50%;
    pointer-events: none;
}

.hmz-sub-branches .public-container {
    position: relative;
    z-index: 1;
}

.hmz-sub-branches__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.hmz-sub-branches__head > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    padding: 6px 11px;
    border: 1px solid #cfe0ff;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .12em;
}

.hmz-sub-branches__head > span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.hmz-sub-branches__head h1,
.hmz-sub-branches__head h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.hmz-sub-branches__head p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: .96rem;
    line-height: 1.65;
}

.hmz-sub-branches__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hmz-sub-branch-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 23px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dde8f5;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hmz-sub-branch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.hmz-sub-branch-card::after {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .045);
    pointer-events: none;
}

.hmz-sub-branch-card:hover {
    transform: translateY(-4px);
    border-color: #bfd5f4;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .11);
}

.hmz-sub-branch-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
}

.hmz-sub-branch-card__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border: 1px solid #cfe0ff;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 17px;
    box-shadow: 0 7px 18px rgba(37, 99, 235, .10);
}

.hmz-sub-branch-card__top > div {
    min-width: 0;
    padding-top: 1px;
}

.hmz-sub-branch-card__top small {
    display: block;
    margin-bottom: 4px;
    color: #2563eb;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .12em;
}

.hmz-sub-branch-card__top h3 {
    margin: 0;
    overflow-wrap: anywhere;
    color: #0f172a;
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.35;
}

.hmz-sub-branch-card__address {
    position: relative;
    margin: 0 0 17px;
    padding: 13px 14px 13px 38px;
    border: 1px solid #edf2f7;
    border-radius: 13px;
    background: #f8fafc;
    color: #475569;
    font-size: .88rem;
    line-height: 1.6;
}

.hmz-sub-branch-card__address::before {
    content: "\f3c5";
    position: absolute;
    top: 14px;
    left: 14px;
    color: #2563eb;
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
}

.hmz-sub-branch-card__meta {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.hmz-sub-branch-card__meta a,
.hmz-sub-branch-card__meta span {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #334155;
    font-size: .87rem;
    line-height: 1.5;
    text-decoration: none;
}

.hmz-sub-branch-card__meta a:hover {
    color: #1d4ed8;
}

.hmz-sub-branch-card__meta i {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
    color: #2563eb;
    text-align: center;
}

.hmz-sub-branch-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 2px;
}

.hmz-sub-branch-card__actions .btn {
    min-height: 36px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.hmz-sub-branches__more {
    margin-top: 30px;
    text-align: center;
}

.hmz-sub-branches__more .btn {
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 12px;
    font-weight: 800;
}

/* A single branch should still look intentional rather than like plain text. */
.hmz-sub-branches__grid > .hmz-sub-branch-card:only-child {
    width: min(100%, 620px);
    justify-self: center;
}

@media (max-width: 991.98px) {
    .hmz-sub-branches {
        padding: 58px 0 64px;
    }

    .hmz-sub-branches__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hmz-sub-branches {
        padding: 48px 0 54px;
    }

    .hmz-sub-branches__head {
        margin-bottom: 25px;
        text-align: left;
    }

    .hmz-sub-branches__head > span {
        margin-bottom: 8px;
    }

    .hmz-sub-branches__head p {
        margin: 0;
    }

    .hmz-sub-branches__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hmz-sub-branch-card {
        padding: 20px;
        border-radius: 17px;
    }

    .hmz-sub-branch-card__actions .btn {
        flex: 1 1 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hmz-sub-branch-card {
        transition: none;
    }

    .hmz-sub-branch-card:hover {
        transform: none;
    }
}


/* V1.0.1 - Address icon fix
   Replaces the missing Font Awesome pseudo-glyph (shown as a small square)
   with a CSS-only location pin, so it renders reliably without font dependency. */
.hmz-sub-branch-card__address::before {
    content: "" !important;
    position: absolute !important;
    top: 17px !important;
    left: 16px !important;
    width: 12px !important;
    height: 12px !important;
    border: 2px solid #2563eb !important;
    border-radius: 50% 50% 50% 0 !important;
    background: #ffffff !important;
    transform: rotate(-45deg) !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

.hmz-sub-branch-card__address::after {
    content: "" !important;
    position: absolute !important;
    top: 20px !important;
    left: 19px !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 50% !important;
    background: #2563eb !important;
    z-index: 1 !important;
}

.hmz-sub-branch-card__address {
    padding-left: 42px !important;
}

/* V1.1.0 - Two-tier branch card actions */
.hmz-sub-branch-card__actions {
    width: 100%;
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}
.hmz-sub-branch-card__service-actions,
.hmz-sub-branch-card__detail-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.hmz-sub-branch-card__service-actions .btn,
.hmz-sub-branch-card__detail-actions .btn {
    width: 100%; min-width: 0; min-height: 36px; margin: 0;
    white-space: nowrap;
}
.hmz-sub-branch-card__detail-actions {
    padding-top: 10px;
    border-top: 1px solid #e8eef7;
}
.hmz-sub-branch-card__detail-actions .btn {
    min-height: 38px;
    background: #f8fbff;
}
.hmz-sub-branch-card__service-actions > :only-child { grid-column: 1 / -1; }
@media (max-width: 575.98px) {
    .hmz-sub-branch-card__service-actions,
    .hmz-sub-branch-card__detail-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hmz-sub-branch-card__actions .btn { flex: initial; padding-left: 9px; padding-right: 9px; font-size: 11px; }
}


/* Branch directory page refinements v1.2 */
.hmz-sub-branches--directory {
    padding-top: 72px;
    min-height: 62vh;
}

.hmz-sub-branches--directory .hmz-sub-branches__head {
    max-width: 820px;
    margin-bottom: 38px;
}

.hmz-sub-branches__summary {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.hmz-sub-branches__summary span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid #dbe7f5;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 16px rgba(15,23,42,.04);
}

.hmz-sub-branches__summary i {
    color: #2563eb;
}

.hmz-sub-branches--directory .hmz-sub-branch-card {
    min-height: 330px;
}

.hmz-sub-branch-card__service-actions,
.hmz-sub-branch-card__detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.hmz-sub-branch-card__detail-actions {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #edf2f7;
}

.hmz-sub-branch-card__service-actions .btn,
.hmz-sub-branch-card__detail-actions .btn {
    width: 100%;
    white-space: nowrap;
}

.hmz-sub-branch-card__meta span br {
    display: block;
}

@media (max-width: 767.98px) {
    .hmz-sub-branches--directory {
        padding-top: 54px;
    }

    .hmz-sub-branches__summary {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .hmz-sub-branch-card__service-actions,
    .hmz-sub-branch-card__detail-actions {
        grid-template-columns: 1fr 1fr;
    }

    .hmz-sub-branch-card__service-actions .btn,
    .hmz-sub-branch-card__detail-actions .btn {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 11px;
    }
}


/* Branch Directory - Partner With Us CTA */
.branch-partner-cta{
    width:min(1180px, calc(100% - 32px));
    margin:34px auto 44px;
    padding:30px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    border:1px solid rgba(37,99,235,.14);
    border-radius:24px;
    background:
        radial-gradient(circle at 92% 12%, rgba(59,130,246,.14), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #f2f8ff 100%);
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.branch-partner-cta__content{
    max-width:760px;
}
.branch-partner-cta__eyebrow{
    margin-bottom:8px;
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.13em;
    color:#2563eb;
}
.branch-partner-cta h2{
    margin:0 0 10px;
    font-size:clamp(24px, 3vw, 36px);
    line-height:1.12;
    color:#0f2747;
}
.branch-partner-cta p{
    margin:0;
    max-width:720px;
    color:#5b6b7f;
    line-height:1.7;
}
.branch-partner-cta__points{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:10px 18px;
}
.branch-partner-cta__points span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#334155;
    font-size:13px;
    font-weight:650;
}
.branch-partner-cta__points i{
    color:#16a34a;
}
.branch-partner-cta__action{
    min-width:220px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
}
.branch-partner-cta__btn{
    min-height:48px;
    padding:0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border-radius:12px;
    background:#2563eb;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:800;
    box-shadow:0 10px 24px rgba(37,99,235,.24);
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.branch-partner-cta__btn:hover{
    transform:translateY(-1px);
    background:#1d4ed8;
    box-shadow:0 14px 28px rgba(37,99,235,.28);
}
.branch-partner-cta__action small{
    color:#64748b;
    text-align:center;
    line-height:1.45;
}
@media (max-width: 760px){
    .branch-partner-cta{
        width:min(100% - 24px, 1180px);
        margin:26px auto 34px;
        padding:24px 20px;
        flex-direction:column;
        align-items:stretch;
        border-radius:20px;
    }
    .branch-partner-cta__action{
        min-width:0;
        width:100%;
    }
    .branch-partner-cta__btn{
        width:100%;
    }
}


/* =========================================================
   HMZ Branch Directory V1.4 — Network Hero
   ========================================================= */
.hmz-branch-hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    background:
      radial-gradient(circle at 83% 28%,rgba(42,145,255,.25),transparent 25%),
      linear-gradient(118deg,#062d57 0%,#074779 48%,#0b5f91 100%);
    color:#fff;
}

.hmz-branch-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    opacity:.18;
    background-image:
      linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:46px 46px;
    mask-image:linear-gradient(90deg,transparent,black 35%,black 100%);
}

.hmz-branch-hero__inner{
    min-height:390px;
    display:grid;
    grid-template-columns:minmax(0,1.18fr) minmax(310px,.82fr);
    align-items:center;
    gap:44px;
    padding-top:58px;
    padding-bottom:58px;
}

.hmz-branch-hero__content{
    position:relative;
    z-index:2;
    max-width:720px;
}

.hmz-branch-hero__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
    color:#82e5ff;
    font-size:11px;
    font-weight:900;
    letter-spacing:.13em;
}

.hmz-branch-hero h1{
    max-width:690px;
    margin:0;
    color:#fff;
    font-size:clamp(36px,4.3vw,62px);
    line-height:1.02;
    letter-spacing:-.045em;
    font-weight:900;
}

.hmz-branch-hero h1 span{
    color:#8ee8ff;
}

.hmz-branch-hero__content>p{
    max-width:650px;
    margin:19px 0 0;
    color:rgba(236,248,255,.86);
    font-size:16px;
    line-height:1.7;
}

.hmz-branch-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

.hmz-branch-hero__btn{
    min-height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:10px 17px;
    border-radius:12px;
    text-decoration:none;
    font-size:13px;
    font-weight:850;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.hmz-branch-hero__btn:hover{
    transform:translateY(-2px);
}

.hmz-branch-hero__btn--primary{
    background:#fff;
    color:#07518a;
    box-shadow:0 12px 28px rgba(0,23,48,.22);
}

.hmz-branch-hero__btn--soft{
    border:1px solid rgba(255,255,255,.26);
    background:rgba(255,255,255,.09);
    color:#fff;
    backdrop-filter:blur(8px);
}

.hmz-branch-hero__trust{
    display:flex;
    flex-wrap:wrap;
    gap:17px;
    margin-top:21px;
    color:rgba(232,247,255,.82);
    font-size:11px;
    font-weight:700;
}

.hmz-branch-hero__trust i{
    margin-right:5px;
    color:#6ce4ca;
}

.hmz-branch-hero__visual{
    position:relative;
    justify-self:center;
    width:min(350px,100%);
    aspect-ratio:1;
    display:grid;
    place-items:center;
}

.hmz-network-orbit{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(144,226,255,.26);
}

.hmz-network-orbit--outer{
    width:92%;
    height:92%;
    box-shadow:inset 0 0 45px rgba(50,172,255,.06);
    animation:hmzBranchOrbit 24s linear infinite;
}

.hmz-network-orbit--outer::before,
.hmz-network-orbit--inner::before{
    content:"";
    position:absolute;
    top:50%;
    left:-4px;
    width:8px;
    height:8px;
    margin-top:-4px;
    border-radius:50%;
    background:#77e6ff;
    box-shadow:0 0 16px #77e6ff;
}

.hmz-network-orbit--inner{
    width:67%;
    height:67%;
    border-style:dashed;
    animation:hmzBranchOrbitReverse 18s linear infinite;
}

.hmz-network-core{
    position:relative;
    z-index:3;
    width:155px;
    height:155px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(225,246,255,.94));
    color:#07518a;
    box-shadow:
      0 24px 55px rgba(0,26,57,.32),
      0 0 0 12px rgba(255,255,255,.055);
}

.hmz-network-core__icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    margin-bottom:6px;
    border-radius:13px;
    background:#e8f5ff;
    color:#1778cf;
    font-size:18px;
}

.hmz-network-core strong{
    font-size:29px;
    line-height:1;
    font-weight:950;
}

.hmz-network-core small{
    margin-top:5px;
    color:#668097;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.hmz-network-node{
    position:absolute;
    z-index:4;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    border:4px solid rgba(255,255,255,.18);
    background:#fff;
    color:#1375c8;
    box-shadow:0 8px 20px rgba(0,25,54,.24);
    font-size:13px;
}

.hmz-network-node--one{top:10%;right:22%}
.hmz-network-node--two{left:5%;bottom:31%}
.hmz-network-node--three{right:2%;bottom:20%}

.hmz-branch-hero__glow{
    position:absolute;
    z-index:-1;
    border-radius:50%;
    filter:blur(2px);
    pointer-events:none;
}

.hmz-branch-hero__glow--one{
    width:280px;
    height:280px;
    right:-90px;
    top:-100px;
    background:rgba(36,128,255,.17);
}

.hmz-branch-hero__glow--two{
    width:220px;
    height:220px;
    left:35%;
    bottom:-170px;
    background:rgba(0,229,199,.10);
}

.hmz-sub-branches--directory{
    scroll-margin-top:90px;
}

@keyframes hmzBranchOrbit{
    to{transform:rotate(360deg)}
}
@keyframes hmzBranchOrbitReverse{
    to{transform:rotate(-360deg)}
}

@media(max-width:900px){
    .hmz-branch-hero__inner{
        min-height:0;
        grid-template-columns:1fr;
        gap:18px;
        padding-top:46px;
        padding-bottom:42px;
    }
    .hmz-branch-hero__content{
        max-width:760px;
    }
    .hmz-branch-hero__visual{
        position:absolute;
        right:-65px;
        bottom:-82px;
        width:280px;
        opacity:.28;
        pointer-events:none;
    }
    .hmz-branch-hero__content>p{
        max-width:590px;
    }
}

@media(max-width:600px){
    .hmz-branch-hero__inner{
        padding-top:34px;
        padding-bottom:34px;
    }
    .hmz-branch-hero h1{
        font-size:36px;
    }
    .hmz-branch-hero__content>p{
        font-size:14px;
        line-height:1.6;
    }
    .hmz-branch-hero__actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
    .hmz-branch-hero__btn{
        padding-left:10px;
        padding-right:10px;
        font-size:12px;
    }
    .hmz-branch-hero__trust{
        gap:10px 14px;
        font-size:10px;
    }
    .hmz-branch-hero__visual{
        right:-110px;
        bottom:-105px;
        width:260px;
    }
}

@media(max-width:390px){
    .hmz-branch-hero__actions{
        grid-template-columns:1fr;
    }
}

@media(prefers-reduced-motion:reduce){
    .hmz-network-orbit{
        animation:none!important;
    }
}

.hmz-branch-contact-stack{display:flex;flex-direction:column;align-items:flex-start;gap:5px;width:100%}.hmz-branch-contact-stack>a{display:flex!important;align-items:center;gap:7px;max-width:100%;text-decoration:none}.hmz-branch-contact-stack>a>span{display:flex;align-items:baseline;gap:5px;flex-wrap:wrap}.hmz-branch-contact-stack>a small{color:#6b7280;font-size:.72em;font-weight:700}.hmz-branch-contact-stack>a em{padding:2px 5px;border-radius:999px;background:#e9f7ef;color:#18764b;font-size:9px;font-style:normal;font-weight:800}.hmz-branch-detail-contacts small{display:flex!important;flex-direction:column;gap:5px}.hmz-branch-detail-contacts small>a{display:flex;align-items:center;gap:5px;color:inherit;text-decoration:none}.hmz-branch-detail-contacts small>a span{color:#718096;font-size:.82em;font-weight:700}.hmz-branch-detail-contacts small>a em{margin-left:4px;padding:2px 5px;border-radius:999px;background:#e9f7ef;color:#18764b;font-size:8px;font-style:normal;font-weight:800}


/* 2026-09-11 Multi-contact public numbering cleanup
   Public display uses 1,2,3... only. Admin labels remain stored internally.
   "Primary" appears only once as the green badge. */
.hmz-branch-contact-stack>a{
    gap:6px!important;
}
.hmz-branch-contact-stack>a>i.fa-phone{
    display:none!important;
}
.hmz-branch-contact-stack>a>span{
    display:block!important;
    min-width:0;
}
.hmz-branch-contact-stack>a small{
    display:none!important;
}
.hmz-contact-index{
    display:grid;
    place-items:center;
    width:18px;
    height:18px;
    flex:0 0 18px;
    border:1px solid #d8e4ef;
    border-radius:6px;
    background:#f2f6fa;
    color:#607487;
    font-size:9px;
    font-weight:900;
    line-height:1;
}
.hmz-branch-contact-stack>a em{
    margin-left:2px;
}
.hmz-branch-detail-contacts small>a{
    gap:7px!important;
}
.hmz-branch-detail-contacts small>a>span{
    color:inherit!important;
    font-size:inherit!important;
    font-weight:inherit!important;
}
.hmz-branch-detail-contacts .hmz-contact-index{
    color:#607487;
    font-size:9px;
    font-weight:900;
}
