.d-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d-flex div {
    padding: 10px;
}

@media screen and (max-width: 900px) {
    .d-flex {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
}

.badge-list .badge {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #EFEFF1;
    /*background: #EFEFF1;*/
    padding: 3px 17px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    transition: background-color 0.3s ease;
    text-decoration: underline;
}

.badge-list .badge:hover {

    background-color: #dadada;

}