.reviewpage__section-title {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: box-shadow .15s;
    margin: 20px auto;
    padding: 30px 0;
    border-radius: 5px;
}

.reviewpage__section {
    background: #F3F4F6;
}

.reviewpage__section h2 {
    color: #333;
    font-weight: 300;
}

.blockreview__item-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #F3F4F6;
    margin: 20px;
    padding: 10px 0;
    border-radius: 5px;
}

.blockreview__item {
    width: 300px;
    margin: 12px;
}

.blockreview__review {
    padding: 20px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: box-shadow .15s;
    height: 100%;
}


.blockreview__review:hover {
    box-shadow: 0 6px 10px rgb(0 0 0 / 40%);
}


.blockreview__review-header {
    display: flex;
    align-items: center;
}

.blockreview__review-header-left img {
    max-width: 48px;
    height: auto;
    display: block;
    border-radius: 50%;
}

.blockreview__review-header-left p {
    max-width: 48px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.blockreview__review-header-right {
    margin: 12px;
}

.blockreview__review-header-right p {
    line-height: 17px;
    font-size: 13px;
    color: #999;
}

.review-icon__active {
    height: 24px;
    width: 24px;
    fill: #ffd426;
}

.review-icon__passive {
    height: 24px;
    width: 24px;
    fill: #BFBFBF;
}

.blockreview__review-rating {
    display: flex;
    align-items: center;
}

.blockreview__review-rating p {
    line-height: 17px;
    font-size: 13px;
    color: #999;
    margin-left: 10px;
}

.blockreview__review-body {
    margin-top: 20px;
    overflow: hidden;
    flex-grow: 1;
}

.blockreview__author {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.blockreview__author:hover {
    color: var(--red);
}

.blockreview__review-footer {
    margin-top: 10px;
}
.blockreview__review-footer a {
    color: rgba(43,43,43,.6);
    text-decoration: underline;
    transition: color .15s;
}

.blockreview__review-footer a:hover {
    color: var(--red);
}

.blockreview__more-review {
    position: relative;
    text-align: center;
}

.blockreview__more-review a {
    display: inline-block;
    padding: 12px 16px;
    line-height: 16px;
    border-radius: 5px;
    margin: auto;
    text-align: center;
    font-weight: 500;
    color: #fff;
    background: #0069A1;;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
    text-decoration: none;
}
.blockreview__more-review a:hover {
    background: linear-gradient(45deg,#0069A1,#0083c9);
    box-shadow: 0 6px 10px rgb(0 0 0 / 20%);
}

.reviewpage__give-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    padding: 6px;
    flex: none;
    font-weight: 500;
}

.reviewpage__give-feedback p {
    margin: 6px;
    font-size: 16px;
    white-space: nowrap;
}

.reviewpage__give-feedback a {
    background: #0069A1;;
    color: #fff;
    margin: 6px;
    padding: 12px 16px;
    line-height: 16px;
    border-radius: 5px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
    text-decoration: none;
}

.reviewpage__give-feedback a:hover {
    box-shadow: 0 6px 10px rgb(0 0 0 / 20%);
    background: linear-gradient(45deg,#0069A1,#0083c9);
}

.reviewpage__org-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.reviewpage__org-title svg {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    fill: #fff;
}
.reviewpage__org-title img {
    width:70px;
    margin: 0 5px;
}


.reviewpage__org-title p {
    margin-left: 10px;
    font-weight: 500;
    line-height: 17px;
    color: #fff;
    background: #32ba43;
    border-radius: 5px;
    padding: 4px 8px;
}