.comments{
    position: relative;
}
/*.comments:before{
    background: url("../../../2022/05/diverse-friends-holding-speech-bubbles-compressed.jpg");
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    opacity: .3;
    background-position: center;
    background-size: cover;
}*/
.comments-body{
    padding: 50px 0;


}
.comments .item {
    background: #9c0757b5;
    border-radius: 15px;
    color: white;
    padding: 20px 0;
}
.comments .pdefault{
    padding: 0 20px;
}
.comments hr {
    border-top: 1px solid rgb(255 255 255);
    transform: rotate(358deg);
}
.comments p.content{
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 20px;
    height: 100px;
    overflow: hidden;
    text-align: justify;
}
.comments .owl-item.active p {
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}
.comments .owl-item.active .item:before{
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}
.comments .owl-item.active .item:after{
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}
.comments .item:before {
    content: "\f10d";
    font-family: "FontAwesome";
    position: absolute;
    top: -7px;
    font-size: 50px;
    left: 10px;
    color: #9c0757;
}
.comments .item:after {
    content: "\f10e";
    font-family: "FontAwesome";
    position: absolute;
    bottom: -20px;
    font-size: 50px;
    right: 5px;
    color: #9c0757;
}
.comments .owl-carousel .owl-stage {
    padding: 25px 0;
}
.comments .owl-theme .owl-dots {
    padding-top: 0px;
}

.comments .owl-dot.active span{
    background-color: #9c0757;
}

/* Animation Effect - effectFadeInDown */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

