
/* Reviews box */

.reviews-main {
    width: 64vw;
}

.reviews-main-heading {
    margin-top: 55px;
    margin-bottom: 23px;
    width: 100%;
    padding: 34px;
    font-size: 1.6rem;
    font-weight: bold;
}

.reviews-main-heading h1 {
    background-image: linear-gradient(135deg, #ffffff 0%, #78d4ff 50%, #ffffff 100%);
    background-clip: text;
    color: transparent;
}

.reviews-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 12px;
}

.review-box {
    z-index: 1;
    margin-bottom: 12px;
    border-radius: 23px;
    width: 390px;
    height: 310px;
    border: 0.5px solid rgb(54, 52, 62);
    background-color: rgba(41, 41, 41, 0.342);
    padding: 23px;
    color: rgb(200, 200, 200);
    font-size: 1.1rem;
    line-height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-id {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.review-id-img {
    width: 20%;
}

.review-id-img img {
    width: 100%;
    border: 3px solid #00aaff;
    border-radius: 99%;
}

.review-id-name {
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-id-name span {
    font-size: 0.8rem;
    opacity: 0.3;
}

.review-id-name>.name {
    font-size: 1.1rem;
    opacity: 1;
}