.btn-more-infos {
    border-radius: 50px;
    background-color: var(--secondary-color);
    padding: 10px 20px 12px 20px;
    color: white;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.btn-more-infos .line {
    height: 2px;
    min-width: 10px;
    margin-left: 5px;
    margin-top: 3px;
    transition: all ease 0.3s;
    background-color: var(--secondary-color);
}

.btn-more-infos:hover .line {
    transform: translateX(13px);
    background-color: white;
}

.btn-more-infos i {
    transition: all ease 0.3s;
}

.btn-more-infos:hover i {
    transform: translateX(5px);
}

    /* Desktop Version */
    @media screen and (min-width: 992px) {
        .btn-more-infos {
            font-size: 16px;
        }

        .btn-more-infos i {
            margin-top: 3px;
        }
    }