#banner-counter {
    & {
        position: relative;
        z-index: 999;
        height: 100%;
        margin: 0;
        padding: clamp(45px, calc(55 / 1920 * 100vw), 55px) 0 clamp(50px, calc(65 / 1920 * 100vw), 65px);
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-evenly;
        list-style-type: none;
        gap: 16px;
    }

    .banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .counter-container  {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    @media(min-width: 576px) {
        .counter-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(min-width: 992px) {
        .counter-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(min-width: 1300px) {
        .counter-container {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    .col-20on100 {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        background: var(--g-color-dark-blue-on-dark);
        padding: clamp(15px, calc(30 / 1920 * 100vw), 30px) clamp(15px, calc(25 / 1920 * 100vw), 25px) clamp(1px, calc(16 / 1920 * 100vw), 16px);
    }



    .inner-part {
        display: flex;
        flex-direction: column;
    }

    .count {
        color: #fff;
        font-weight: 800;
        font-size: clamp(32px, calc(61 / 1920 * 100vw), 61px);
        line-height: 1;
    }

    .description {
        color: var(--g-color-ligh-blue);
        font-size: clamp(16px, calc(20 / 1920 * 100vw), 20px);
        text-align: center;
        line-height: 1.1;
        display: flex;
        align-content: center;
        height: clamp(50px, calc(55 / 1920 * 100vw), 55px);
        align-items: center;
    }
}
