#backCarousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0.1em 1em 0px rgb(0 211 140 / 15%);
}
#backCarousel .item {
    display: flex;
    align-items: center;
    justify-content: center;  
}
#backCarousel .text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
}
#backCarousel .line {
    display: flex;
    border-right: 1px solid #ccc;
    padding: 10px;
    height: 100%;
    align-items: stretch;
}
#backCarousel img {
    width: 40px;
    margin-right: 1rem;
}
#backCarousel a {
    color: #2967e6;
    font-weight: bold;
}
@media (max-width: 992px) {
    #backCarousel {
        /*flex-direction: column;*/
        align-items: flex-start;
        padding: .5rem;
        justify-content: space-around;
    }
    #backCarousel .line {
        display: none;
    }
    #backCarousel .item {
        padding-bottom: 0rem;
    }
    #backCarousel .item:last-of-type {display:none;}
    
    /* #backCarousel .item:last-of-type,
    #backCarousel .item:nth-of-type(3) {display:none;} */
    #backCarousel .text {font-size: 8px;}
    #backCarousel img { width: 28px; margin-right: .3rem;}
}