.commentsSec {
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 7), rgba(1, 12, 22, 0.7)), url("../img/72.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 100vw;
}

.comments {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    position: relative;
    width: 100%;
    min-height: 250px;
    max-width: 530px;
}

.comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    transition: 0.6s;
    position: absolute;
    align-self: center;
    justify-self: center;
    left: 530px;
    width: 530px;
    transition: 1s;
    z-index: 0;
    opacity: 0 !important;
}

.visible {
    opacity: 1 !important;
    left: 0;
    z-index: 1;
}

.notvisible {
    z-index: 0;
    opacity: 0 !important;
    left: -530px;
}

.commentImage {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.commentImage img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 2px #0F8AFD,
        0 0 5px #0F8AFD;
}

.commentData {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    max-width: 500PX;
    opacity: 0.9;
}

.commentData h2 {
    margin: 0;
    text-align: center;
}

.commentData h3 {
    margin: 0;
    margin-top: 10px;
    text-align: center;
}

.commentData p {
    text-align: center;
    text-justify: inter-word;
    font-size: 0.9rem;
    line-height: 26px;
    font-family: sans-serif;
    margin-bottom: 0;
}

.comrig {
    border-radius: 15px 60px 60px 15px;
}

@media screen and (max-width: 1100px) {
    .comment {
        width: calc(100% - 50px);
        margin-left: 25px;
    }
}

@media screen and (max-width: 400px) {

    .comments {
        height: 350px;
    }

    .comment {
        flex-direction: column;
        border-radius: 15px;
        margin-top: 20px;
        margin: 0 45px;
        width: calc(100% - 90px);
    }

    .comrig {
        flex-direction: column-reverse;
    }

    .commentImage img {
        margin: 30px;
        margin-bottom: 5px;
    }

    .commentData h2 {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
    }

    .commentData p {
        font-size: 0.9rem;
    }


}