.comments-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px 0px;
}

    .comment-title{
        font-family: 'Montserrat', sans-serif;
        color: #002C42;
        font-size: 2rem;
        font-weight: bold;

    }

    .comments{
        width: 80vw;
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 50px;
    }

        .comment-box{
            width: 270px;
            background-color: #FFAA01;
            padding: 20px;
            border-radius: 15px;
            box-shadow: rgba(63, 63, 63, 0.29) 0px 2px 8px 0px;
        }

            .comment-img-name-container{
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 30px;
                margin-bottom: 30px;
            }

                .comment-img{
                    height: 70px;
                }

                .comment-name{
                    font-family: 'Montserrat', sans-serif;
                    color: #002C42;
                    font-size: 1.2rem;
                    font-weight: bold;

                }

            .comments-paragraph{
                font-size: .8rem;
                font-family: 'Lato', sans-serif;
                color: white;
                font-weight: bold;
                line-height: 1.2rem;
            }

@media (max-width: 900px) {
    .comments{
        flex-direction: column;
    }

    .comment-box{
        width: 80vw;
    }

    .comment-img-name-container{
        justify-content: flex-start;
    }
}