.comment-component {
    margin-top: 40px;

}
.feedback-box {
    position: relative;
    width: 75%;
    margin: auto;
    height: 285px;
}
.comment-component .feedback-title {
    font-size: 48px;
    line-height: 48px;
    color: #7B50F8;
    padding-bottom: 20px;
}
.comment-component .feedback-item {
    border-left: 4px solid #7B50F8;
    padding-left: 20px;
}
.comment-component .quote {
    color: #656565;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 24px;
}
.comment-component .position, .customer-feedback .role {
    font-size: 24px;
    line-height: 32px;
}
.comment-component .role {
    color: #7B50F8;
}
/*.comment-box {
    height: 300px;
}
.comment-item{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    width: 85%;
    margin: auto;
    gap: 50px;
}
.avatar{
    width: 160px;
    height: 160px;
    vertical-align: middle;
    border-radius: 50%;
}
.user-info-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-info{
    margin-left: 30px;
    line-height: 32px;
}
.comment{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px solid rgba(23, 92, 229, 1);
    border-radius: 25px;
    font-size: 24px;
    box-sizing: border-box; 
    position: relative;
    background: #fff;
    width: 70%;
}
.triggle{   
    position: absolute;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(23, 92, 229, 1);
    transform: rotate(45deg);
    top: 60px;
    left: -32px;
    border-left: 2px solid rgba(23, 92, 229, 1);
    border-right: none;
    border-top: none;
    z-index: 1;
    background: #fff
}
.comment-text{
    display: inline-block;
    min-height: 100px;
    z-index: 10;
}
.user-info div {
    padding: 5px 0;
}
.user-info .name {
    font-size: 32px;
    line-height: 32px;
}
.user-info .position {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}
.user-info .company {
    font-size: 18px;
    line-height: 24px;
}*/

.feedback-item:not(.active) {
    display: none;
}
.comment-component .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.comment-component .carousel-controls button {
    width: 46px;
    height: 46px;
    position: static;
    font-size: 22px;
    line-height: 22px;
    font-weight: lighter;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
    color: rgba(256, 256, 256, 0.5); 
    z-index: 10;
    padding:10px;
}
.comment-component .carousel-controls button:hover {
    background: #1b1b1b;
    border-color: #fff;
    color: #fff;
    opacity: .9;
}

.comment-component .prev {
    left: 10px;
}

.comment-component .next {
    right: 10px;
}