.kpis.style-2 {
    padding-top: var(--gap3);
    padding-bottom: var(--gap3);
}

@media (max-width: 950px) {
    .kpis.style-2 {
        padding-top: var(--gap2);
        padding-bottom: var(--gap2);
    }
}

.kpis.style-2 > .ctnr {
    display: block;
}

.kpis.style-2 > .ctnr > .ctnr {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 950px) {
    .kpis.style-2 > .ctnr > .ctnr {
        flex-direction: column;
    }
}

.kpis.style-2 .kpis-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
    margin-right: 72px;
}

@media (max-width: 950px) {
    .kpis.style-2 .kpis-columns {
        margin-right: 0;
        order: 2;
    }
}

@media (max-width: 767px) {
    .kpis.style-2 .kpis-columns {
        grid-template-columns: 1fr;
    }
}

.kpis.style-2 .column {
    display: flex;
    align-items: center;
}

@media (max-width: 950px) {
    .kpis.style-2 .column {
        order: 1;
        justify-content: center;
    }
}

.kpis.style-2 .title {
    margin-bottom: var(--gap3);
}

/* --- SMALL KPIS --- */
.kpis.style-2 .kpi {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* --- BIG KPI --- */
.kpis.style-2 .big-kpi {
    z-index: 1;
    padding: 40px;
    position: relative;
    margin-right: 0;
    max-width: 100%;
    min-height: 300px;
    width: 268px;
}

.kpis.style-2 .big-kpi > .bck {
    position: absolute;
    z-index: 0;
    background: var(--white);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.kpis.style-2 .big-kpi > .ctnr {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kpis.style-2 .big-kpi > .ctnr .title {
    color: var(--secondary-400);
    font-size: 85px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 15px;
}

.kpis.style-2 .big-kpi > .ctnr .desc {
    color: var(--grey-700);
    line-height: 120%;
    margin-bottom: 30px;
    font-size: 24px;
    text-align: left;
    max-width: 315px;
    text-transform: lowercase;
}

/* --- Decorative borders --- */
.kpis .bloc_bck:before {
    top: -16px;
    right: -16px;
}

.kpis .bloc_bck:after {
    bottom: -16px;
    left: -16px;
}


