/* Hero 1 ---------- */

.z-statistics-hero1 {
    width: 42%;
    height: calc(100vh - 140px);
    margin: auto;
    padding: 0 0 60px;
}

@media screen and (max-width: 1128px) {
    .z-statistics-hero1 {
        width: 90%;
        height: 63vh;
        padding: 0 0 40px;
    }
}

@media screen and (max-width: 560px) {
    .z-statistics-hero1 {
        height: calc(100vh - 175px);
    }
}

.z-statistics-hero1-back-btn {
    color: white;
    font-size: 0.95rem;
    background: #333;
    border-radius: 25px;
    padding: 4px 11px 5px 12px;
}

.z-statistics-category-c {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.z-statistics-matrics-c {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.z-statistics-matrics-c div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.z-statistics-matrics-c div a { /* Shortcut */
    color: #1c459a;
    font-size: 1rem;
    text-decoration: underline;
    transition: 0.6s ease;
}

.z-statistics-matrics-c div a:hover {
    color: #999;
}



/* Chart Hero ---------- */

.z-statistics-chart-container {
    width: 75%;
    height: fit-content;
    margin: auto;
}

@media screen and (max-width: 1128px) {
    .z-statistics-chart-container {
        width: 90%;
    }
}

.z-statistics-chart-c {
    width: 100%;
    padding: 50px 0;
    border-bottom: 1px solid #aaa;
}

.z-statistics-chart-c h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.z-statistics-chart-c img {
    width: 100%;
}

.z-statistics-chart-c div {
    display: flex;
    justify-content: flex-end;
}

.z-statistics-chart-note {
    padding: 20px 24px 21px;
    background: white;
    border: 1px solid #aaa;
    border-radius: 2px;
}


/* Disclaimer ---------- */

.z-statistics-disclaimer {
    width: 75%;
    height: fit-content;
    margin: auto;
    padding: 50px 0;
}

@media screen and (max-width: 1128px) {
    .z-statistics-disclaimer {
        width: 90%;
    }
}

.z-statistics-disclaimer p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.25rem;
}



/* Back To Top ---------- */

.z-statistics-back-to-top {
    font-size: 0.8rem;
    background-color: #333;
    color: white;
    cursor: pointer;
    margin-top: 18px;
    padding: 6px 10px 8px;
}

.z-statistics-back-to-top:hover {
    color: #222;
    background-color: #ccc;
}