.b-cards__content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.b-cards__element {
    width: calc(20% - 10px);
    margin: 5px;
    background-color: #fff;
    padding: 10px 7px 10px 7px;
    border: 2px solid #e8e8e8;

    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.b-cards__element:hover{
    border: 2px solid #2DADD4;
}
.b-cards__title {
    font-weight: 600;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.b-cards__text {
    margin-top: 5px;
    font-size: 11px;
}
.b-cards__btn{
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 600;
}
