/* =====================================================
   SECTION - METRICS
===================================================== */

.section-metrics {
    padding: 60px 0;
    background: #ffffff;
}




/* =====================================================
   Metrics Grid
===================================================== */

.metrics-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    margin-top: 70px;

    align-items: start;
}

/* =====================================================
   Individual Card
===================================================== */

.metric-column {

    position: relative;

    padding: 0 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-column:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 20px;
    right: 0;

    width: 1px;

    height: calc(100% - 40px);

    background: #e2e7ef;
}

/* =====================================================
   Icon
===================================================== */

.metric-icon {

    width: 72px;
    height: 72px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon img {

    width: 72px;
    height: 72px;

    display: block;

    object-fit: contain;
}

/* =====================================================
   Title
===================================================== */

.metric-title {
    display:flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 95px;
    margin: 0 0 22px;

    text-align: center;

    color: #051f45;

    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.25;
}

/* =====================================================
   Description
===================================================== */

.metric-description {

    width: 100%;

    margin: 0;

    text-align: left;

    color: #5a6178;

    font-size: 1.05rem;
    line-height: 1.85;
}

.metric-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.metric-list li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.metric-list.has-checkmarks li {
    position: relative;
    padding-left: 28px;
}

.metric-list.has-checkmarks li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 2px;

    color: #b18024;
}

