* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.comments-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comments-glide {
    height: 100%;
}

.single-comment {
    position: relative;
    width: 416px;
    height: 258px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    background-color: #fff;
    padding-block: 16px 20px;
    padding-inline: 28px;
    transition: all 0.3s;
}

.comment-user-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: royalblue;
    margin-bottom: 12px;
    z-index: 1;
}

.comment-user-name {
    font-size: 18px;
    font-weight: 700;
    color: #646464;
    margin-bottom: 10px;
    z-index: 1;
}

.comment-user-text {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 30.52px;
    color: #4c4c4c;
    z-index: 1;
}

.right-quotation-container {
    position: absolute;
    left: 28px;
    bottom: 20px;
}
.left-quotation-container {
    position: absolute;
    right: 28px;
    bottom: 81px;
    transform: rotate(180deg);
}

.comment-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comments_hovered {
    background-color: #A90E06;
    box-shadow: -4px 4px 24px 0px #A90E0633;
}

.comments_hovered .comment-user-name {
    color: #ffffff;
}

.comments_hovered .comment-user-text {
    color: #f0f2f2;
}

.comments_hovered .left-l-q path,
.comments_hovered .right-r-q path {
    fill: #4f7c7c;
}
.comments_hovered .left-r-q path,
.comments_hovered .right-l-q path {
    fill: #345d5d;
}
.comment__bullets{
    bottom:-2em !important;
}
@media screen and (max-width: 580px) {
    .single-comment {
        width: 335px;
        height: 258px;
        padding-block: 21px 32px;
        padding-inline: 14px;
    }
    .comment-user-image {
        width: 65px;
        height: 65px;
        margin-bottom: 16px;
    }
    .comment-user-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .quotation-svg {
        width: 13px;
        height: 28px;
    }
    .right-quotation-container {
        position: absolute;
        left: 24px;
        bottom: 24px;
    }
    .left-quotation-container {
        position: absolute;
        right: 24px;
        bottom: 97px;
    }
}
