
.customer_feedback_container {
    margin: 0.75rem;
}

.customer_feedback_block_title {
    color: #006600;
    font-weight: bold;
    margin: 1rem 0;
}

.customer_feedback_block {
    margin-bottom: 2rem;
}

.customer_feedback_block .customer_picture {
    display: flex;
    justify-content: center;
}

.customer_feedback_block .customer_picture img {
    max-width: 15rem;
    margin: 1rem;
}

.customer_feedback_block .customer_feedback {
    line-height: 200%;
}

.customer_feedback_title {
    font-size: 18px;
    font-weight: bold;
    color: #FF0000;
}

.customer_feedback_name {
    font-weight: bold;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.mobile_page {
    display: flex;
}

.desktop_page {
    display: none;
}

@media (min-width: 991px) {
    .mobile_page {
        display: none;
    }

    .desktop_page {
        display: block;
    }

    *, ::after, ::before {
        box-sizing: content-box;
    }
}


