.bloc-big-line {
    padding: 80px 0px;
}

.floating-comments-container {
    background-color: #FBFBFD;
    border: 1px solid #D0D5D0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    min-height: 500px;
}

.floating-comments-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    min-height: 150px;
}

.floating-comments-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    min-height: 150px;
}

.comment {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.comment.animate {
    opacity: 1;
    transform: translateY(0);
}

.comment-bubble {
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    display: flex;
    align-items: center;
}

.comment-bubble.animate {
    opacity: 1;
}

/* Délais d'animation pour les bulles du haut */
.floating-comments-top .comment:nth-child(1) {
    transition-delay: 0.2s;
}

.floating-comments-top .comment:nth-child(1) .comment-bubble {
    transition-delay: 0.7s;
}

.floating-comments-top .comment:nth-child(2) {
    transition-delay: 0.4s;
}

.floating-comments-top .comment:nth-child(2) .comment-bubble {
    transition-delay: 0.9s;
}

.floating-comments-top .comment:nth-child(3) {
    transition-delay: 0.6s;
}

.floating-comments-top .comment:nth-child(3) .comment-bubble {
    transition-delay: 1.1s;
}

.floating-comments-top .comment:nth-child(4) {
    transition-delay: 0.8s;
}

.floating-comments-top .comment:nth-child(4) .comment-bubble {
    transition-delay: 1.3s;
}

/* Délais d'animation pour les bulles du bas */
.floating-comments-bottom .comment:nth-child(1) {
    transition-delay: 1.0s;
}

.floating-comments-bottom .comment:nth-child(1) .comment-bubble {
    transition-delay: 1.5s;
}

.floating-comments-bottom .comment:nth-child(2) {
    transition-delay: 1.2s;
}

.floating-comments-bottom .comment:nth-child(2) .comment-bubble {
    transition-delay: 1.7s;
}

.floating-comments-bottom .comment:nth-child(3) {
    transition-delay: 1.4s;
}

.floating-comments-bottom .comment:nth-child(3) .comment-bubble {
    transition-delay: 1.9s;
}

.comment.reverse {
    flex-direction: row-reverse;
}

.comment-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-bubble:not(.reverse) {
    border-bottom-left-radius: 0;
}

.comment-bubble.reverse {
    border-bottom-right-radius: 0;
}

.comment-bubble:not(.reverse)::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-bottom: 8px solid currentColor;
}

.comment-bubble.reverse::before {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid currentColor;
}

.comment-bubble .sound-waves {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    height: 9px;
    /* 16px */
    margin-left: 8px;
    vertical-align: middle;
}

.comment-bubble p {
    margin: 0;
    color: #0F2D10;
    font-size: 14px;
    display: inline-block;
}

.comment-bubble .sound-waves span {
    width: 2px;
    background-color: #0F2D10;
    border-radius: 1px;
    animation: soundWave 1s ease-in-out infinite;
    align-self: flex-end;
}

.comment-bubble .sound-waves span:nth-child(odd) {
    background-color: #918AB2;
}

.comment-bubble .sound-waves span:nth-child(1) {
    animation-delay: 0.0s;
}

.comment-bubble .sound-waves span:nth-child(2) {
    animation-delay: 0.2s;
}

.comment-bubble .sound-waves span:nth-child(3) {
    animation-delay: 0.4s;
}

.comment-bubble .sound-waves span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes soundWave {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 12px;
    }
}

.center-text {
    text-align: center;
    padding: 40px 0;
}

.center-text h2 {
    /* font-size: 42px;
    line-height: 1.4;
    color: #0F2D10; */
    max-width: 900px;
    margin: 0 auto;
}

.center-text h2 p {
    font-size: 30px;
    font-family: 'Jeko Extrabold', sans-serif;
    color: #0F2D10;
}

/* Positions spécifiques pour chaque commentaire */
.floating-comments-top .comment:nth-child(1) {
    align-self: center;
}

.floating-comments-top .comment:nth-child(2) {
    align-self: flex-end;
}

.floating-comments-top .comment:nth-child(3) {
    align-self: flex-start;
}

.floating-comments-top .comment:nth-child(4) {
    align-self: flex-end;
    margin-top: 15px;
}

.floating-comments-bottom .comment:nth-child(1) {
    align-self: flex-start;
}

.floating-comments-bottom .comment:nth-child(2) {
    align-self: flex-end;
}

.floating-comments-bottom .comment:nth-child(3) {
    align-self: center;
}

/* Couleurs spécifiques pour chaque bulle */
.floating-comments-top .comment:nth-child(1) .comment-bubble {
    background-color: #FDE6F1;
}

.floating-comments-top .comment:nth-child(1) .comment-bubble::before {
    border-bottom-color: #FDE6F1;
}

.floating-comments-top .comment:nth-child(2) .comment-bubble {
    background-color: #C8B2F7;
}

.floating-comments-top .comment:nth-child(2) .comment-bubble::before {
    border-bottom-color: #C8B2F7;
}

.floating-comments-top .comment:nth-child(3) .comment-bubble {
    background-color: #F3F1F6;
}

.floating-comments-top .comment:nth-child(3) .comment-bubble::before {
    border-bottom-color: #F3F1F6;
}

.floating-comments-top .comment:nth-child(4) .comment-bubble {
    background-color: #FBEEDF;
}

.floating-comments-top .comment:nth-child(4) .comment-bubble::before {
    border-bottom-color: #FBEEDF;
}

.floating-comments-bottom .comment:nth-child(1) .comment-bubble {
    background-color: #FBEEDF;
}

.floating-comments-bottom .comment:nth-child(1) .comment-bubble::before {
    border-bottom-color: #FBEEDF;
}

.floating-comments-bottom .comment:nth-child(2) .comment-bubble {
    background-color: #F3F1F6;
}

.floating-comments-bottom .comment:nth-child(2) .comment-bubble::before {
    border-bottom-color: #F3F1F6;
}

.floating-comments-bottom .comment:nth-child(3) .comment-bubble {
    background-color: #EBE2FF;
}

.floating-comments-bottom .comment:nth-child(3) .comment-bubble::before {
    border-bottom-color: #EBE2FF;
}

@media (max-width: 1200px) {
    .bloc-big-line {
        padding: 60px 0px;
    }

    .floating-comments-container {
        padding: 30px;
    }

    .center-text h2 {
        /* font-size: 36px; */
    }
}

@media (max-width: 1000px) {
    .bloc-big-line {
        padding: 40px 0px;
    }

    .floating-comments-container {
        padding: 25px;
    }

    .center-text h2 {
        /* font-size: 32px; */
    }
}

@media (max-width: 800px) {
    .bloc-big-line {
        padding: 30px 0px;
    }

    .floating-comments-container {
        padding: 20px;
    }

    .comment {
        max-width: 220px;
    }

    .center-text h2 {
        /* font-size: 28px; */
    }
}

@media (max-width: 500px) {
    .bloc-big-line {
        padding: 20px 0px;
    }

    .floating-comments-container {
        padding: 15px;
    }

    .comment {
        max-width: 180px;
    }

    .center-text h2 {
        /* font-size: 24px; */
    }
}

@media (max-width: 280px) {
    .bloc-big-line .center-text h2 {
        /* font-size: 16px;
        line-height: 1.2; */
    }
}