.counters {
    background-color: var(--color-lument-teal-dark);
    padding-top: 43px;
    padding-bottom: 43px;
}

.counters__container {
    max-width: calc(var(--container-lument-width) - 20px);
    padding-left: 28px;
    padding-right: 28px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counters__content {
    margin-bottom: 17px;
}

.counters .wysiwyg {
    max-width: 1010px;
}

.counters .wysiwyg h1,
.counters .wysiwyg .h1,
.counters .wysiwyg h2,
.counters .wysiwyg .h2,
.counters .wysiwyg h3,
.counters .wysiwyg .h3,
.counters .wysiwyg h4,
.counters .wysiwyg .h4,
.counters .wysiwyg h5,
.counters .wysiwyg .h5,
.counters .wysiwyg h6,
.counters .wysiwyg .h6 {
    color: var(--color-lument-gold);
    text-transform: initial;
    letter-spacing: 0;
    margin-bottom: 27px;
}

.counters .wysiwyg p {
    color: #fff;
    line-height: 1.6667;
}

.counters__button-container {
    display: flex;
}

.counters__button {
    display: inline-flex;
    margin: 20px auto 0;
}

.counters__button span {
    margin-right: 0;
}

.counters__button .btn .icon {
    margin-left: 10px;
}

.counters__items {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.counters__item {
    position: relative;
    display: flex;
    align-items: center;
    flex-basis: 20%;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-lument-teal);
}

.counters__item:last-child {
    border-bottom: none;
}

.counters__item-title {
    margin-bottom: 0;
    margin-right: 8px;
    color: var(--color-lument-teal);
    line-height: 1.7;
    font-size: clamp(1.25rem, 0.4167rem + 1.7361vw, 2.5rem);
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.counters__item-text {
    margin-bottom: 0;
    padding-top: 2px;
    color: #fff;
    font-size: clamp(0.8125rem, 0.6042rem + 0.434vw, 1.125rem);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    line-height: 1.333;
}

p.counters__footer_content {
    color: white;
    margin: 60px 0 0 0;
    font-size: 12px;
}

@media screen and (min-width: 992px) {
    .counters {
        background-color: var(--color-lument-teal-dark);
        padding-top: 55px;
        padding-bottom: 120px;
    }

    .counters__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .counters__content {
        margin-bottom: 37px;
    }

    .counters__items {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }

    .counters__item {
        flex-direction: column;
        padding: 15px 8px 10px;
        border-bottom: none;
    }

    .counters__item:not(:last-child)::before {
        position: absolute;
        right: -28px;
        top: 0;
        display: block;
        content: '';
        height: 100%;
        width: 1px;
        background-color: var(--color-lument-teal);
    }

    .counters__item-title {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .counters__item-text {
        margin-bottom: 16px;
        padding-top: 0;
        text-align: center;
    }
}