.attendees-stats .attendees-stats__title {
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
    color: #FFF;
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: left;
}

.attendees-stats .attendees-stats__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    line-height: 32px;
    border-bottom: 1px solid #c9c9c9;
    padding: 8px 0;
    text-align: left;
}

.attendees-stats .attendees-stats__item:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 768px) {
    .attendees-stats .attendees-stats__title {
        font-size: 18px;
        line-height: 20px;
    }

    .attendees-stats .attendees-stats__item {
        font-size: 14px;
        line-height: 20px;
        padding: 5px 0;
    }
}