.switch-up .bulle{
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.switch-up .bulle__photo{
    display: block;
    width: 100px;
    height:100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.switch-up .bulle__content{
    width: 100%;
    background-color: var(--color-secondary);
    background-image: linear-gradient(#FD5864, #181D46);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    color: white;
}

.switch-up .bulle__content p{
    color:var(--color-white);
    margin: 20px 0;
    line-height: 1.5;
}

.switch-up .bulle__content p span{
    font-weight: 700;
}

@media screen and (max-width: 991px) {
    .switch-up .bulle__photo{
        width: 60px;
        height:60px;
    }

    .switch-up .bulle__content{
        width:100%;
    }
}