.reviews-sec{
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.reviews-inner{
    width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 1;
}

.review{
    width: 40%;
    background-color: rgb(206, 145, 154, 0.6);
    padding: 10px;
}
.review-top-sec{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.review-profile-con{
    width: 3rem;
    height: 3rem;
    background-color: red;
    border-radius: 3rem;
}

.stars-con{
    display: flex;
    flex-direction: row;
    gap: 2px;
}
.star{
    width: 1rem;
    height: 1rem
}
.reviews-filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: -1;
}

@media (max-width: 750px) {
    .reviews-inner{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .review{
        width: 95%;
        margin: 0 auto;
    }
}