.participants {
    display: flex;
    justify-content: space-between;
}

.participants b {
    margin-bottom: 10px;
    display: block;
    font-size: 30px;
    line-height: 30px;
}

.participants li .fas {
    font-size: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background: #00000014;
    border-radius: 0 100% 100% 0;
    width: 100px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.participants li {
    position: relative;
    width: calc(33.3% - 20px);
    text-transform: uppercase;
    padding: 20px 20px 20px 130px;
    background: #eeeeee;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .participants li {
        width: calc(33.3% - 10px);
        padding: 20px 0 20px 105px;
    }

    .participants li .fas {
        width: 80px;
    }
}

@media screen and (max-width: 1023px) {
    .participants li {
        padding-left: 65px;
    }

    .participants .bth__txt {
        font-size: 14px;
    }

    .participants b {
        font-size: 25px;
        line-height: 25px;
    }

    .participants li .fas {
        width: 50px;
        font-size: 21px;
    }
}

@media screen and (max-width: 767px) {
    .participants, .participants li {
        display: block;
        width: 100%;
    }

    .participants li:not(:last-child) {
        margin-bottom: 15px;
    }

    .participants li {
        padding-left: 80px;
    }

    .participants li .fas {
        width: 60px;
        font-size: 23px;
    }
}