#customers-carousel .carousel-control-next-icon, #customers-carousel .carousel-control-prev-icon {
    height: 4rem;
    opacity: 0.7;
    border-radius: 5px;
    background-color: var(--bgMediumGrey);
}
#customers-carousel .carousel-control-next, #customers-carousel .carousel-control-prev {
    align-items:unset;
    top:100px;
}

#customers-carousel .customer-pic-scaling {
    display:flex;
    justify-content:center;
    align-items:center;
    overflow: hidden;
    width: 30%;
    
    margin:0 auto;
    border-radius:20px;
    position:relative;
}
#customers-carousel .customer-pic-scaling img {
    filter: grayscale(1) brightness(0.5);
    transition: 0.5s;
    width: 100%;
}
#customers-carousel .customer-pic-scaling img:hover {
    filter: grayscale(0) brightness(1);
    transform:scale(1.2);
}
.text p {
    text-align: justify;
    text-indent: 1.5em; /* Отступ в 1.5 раза больше размера шрифта */
}
#customers-carousel .name, #customers-carousel .worker {
    font-weight: 900;
    text-align:center;
}
.customer-pic {
    position:absolute;
    
    bottom:8px;
    right:8px;
    border-radius: 15px;
    width: 20% !important;
}
@media screen and (max-width:992px) {
#customers-carousel .customer-pic-scaling {
    width: 95%;

}
#customers-carousel .customer-pic-scaling {
    
}
}