#customer-voice{
    padding:130px 0 106px 0;
    background-color:#F2F3F5;
}

.br_mobile{
    display: none;
}
@media screen and (max-width:500px){
    .br_mobile{
        display: block;
    }
}


/* LIST */
#customer-voice .customers-list{
    overflow-y: scroll;
    height: 700px;
    padding: 10px;
    margin-bottom: 40px;
    border: 3px solid #c4c4c4;
}
/* SCROLLBAR */
#customer-voice .customers-list::-webkit-scrollbar{ width: 7px; }
#customer-voice .customers-list::-webkit-scrollbar-track{ background: #f1f1f1; }
#customer-voice .customers-list::-webkit-scrollbar-thumb { background: #888; }
#customer-voice .customers-list::-webkit-scrollbar-thumb:hover { background: #555; }
#customer-voice .customers-list li{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding: 20px 45px;
    background-color: #c4c4c4;
    display: table;
}
#customer-voice .customers-list li h3{
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 10px;
}
#customer-voice .customers-list li div span{
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    font-family: minerva-modern;
    display: block;
    background-color: #fff;
    border-radius: 40px;
    font-size: 26px;
    padding: 9px 15px;
    margin-right: 15px;
}
#customer-voice .customers-list li .question, #customer-voice .customers-list li .answer{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
#customer-voice .customers-list li .question h4{
    font-weight: normal;
}
#customer-voice .customers-list li .answer span{
    background-color: #000;
    color:#fff;
    padding: 9px 16px;
}
#customer-voice .customers-list li a{
    float: right;
    text-decoration: none;
    color:#000;
}





/* CUSTOMER PHOTOS */
#customer-voice #customers-photos .slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
#customer-voice #customers-photos .slider {
    display: flex;
    overflow-x: hidden;
}
#customer-voice #customers-photos .slider img {
    width: 50%;
    height: auto;
    transition: transform 0.5s ease;
}
#customer-voice #customers-photos button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
#customer-voice #customers-photos .prev {
    left: 0;
}
#customer-voice #customers-photos .next {
    right: 0;
}


@media screen and (max-width:500px){
    #customer-voice .customers-list li{
        padding: 20px;
    }
}