.reviews-section{
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
html[lang="ar"] .reviews-section h1,
html[lang="ar"] .reviews-section h2{
    text-align: right;
}
.reviews-main-content{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    position: relative;
}
.reviews-main-content .review {
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    height: auto;
    min-height: 274px;
}
.reviews-main-content .review:not(.collapsed) {
    z-index: 1;
}
.review-inner{
    border-style: solid;
    border-color: #f4f4f4;
    background: #f4f4f4;
    border-radius: 4px;
    padding: 20px 20px 50px;
    margin: 0;
    display: block;
    position: absolute;
    min-height: 100%;
    width: 100%;
}
.review:not(.collapsed) .review-inner{
    box-shadow: 0 7px 10px rgba(0, 0, 0, .3);
}
.review-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
}
.review-platform-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
}
.review-profile-img {
    margin: 0 15px 0 0 !important;
}
.review-profile-img img {
    width: 40px !important;
    height: 40px !important;
    display: block;
    border-radius: 30px !important;
    object-fit: cover;
    object-position: top;
}
.review-profile-details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.review-name {
    font-weight: bold;
    font-size: 14px;
    overflow: hidden;
    padding-right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000000;
    margin-bottom: 2px;
}
.review-date {
    color: #8a8a8a;
    font-size: 12px !important;
}
.review-stars {
    white-space: nowrap;
    display: block;
    margin-bottom: 8px;
    margin-top: 15px;
    text-align: left;
    height: 17px;
    line-height: 17px;
}
.review-stars .star {
    width: 17px;
    height: 17px;
    margin-right: 1px;
    vertical-align: unset;
    display: inline-block;
}
.review-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 21.75px;
    font-size: 15px;
    text-align: left;
    transition: height 0.5s;
    font-style: normal;
    -webkit-line-clamp: 20;
    overflow: hidden;
    padding-right: 0;
}
.review.collapsed .review-content {
    max-height: 87px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    -webkit-line-clamp: 3;
}
.review-read-more-active {
    cursor: pointer;
    color: #0073aa;
    display: inline-block;
    margin-top: 10px;
}
.review-read-more {
    display: none;
    padding: 5px 0 0;
    text-align: left;
}
.review-read-more span {
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    font-size: 13.5px;
    color: #000000;
    opacity: 0.5;
    text-decoration: none !important;
    transition: color 300ms ease-out;
    cursor: pointer;
}
.view-on-google{
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 13px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
    line-height: initial;
}
.view-on-google img{
    margin-left: 8px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
}
.see-all-reviews{
    margin-top:60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 16px;
    position: relative;
}
.see-all-reviews img{
    margin-left: 8px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
}

/* --- PAGINATION ---*/
nav.pagination{
    margin-top: 50px;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.pagination .page-numbers {
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    border-radius: 3px;
    border: 1px solid #EBEBEB;
}
.pagination .page-numbers.double-digit {
    min-width: 45px;
    max-width: 45px;
}
.pagination .page-numbers.current{
    background: var(--pix-orange);
    color: #fff;
    border: 1px solid var(--pix-orange);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next{
    border: 1px solid #EBEBEB;
    font-size: 0;
}
.pagination .page-numbers.next{
    background: url("../images/arrow-down.svg") center no-repeat;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.pagination .page-numbers.prev {
    background: url("../images/arrow-down.svg") center no-repeat;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.pagination .page-numbers a {
    display: block;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    height: 100%;
    width: 100%;
    background-color: #fff;
}
/* --- PAGINATION ---*/

@media screen and (max-width: 1000px) {
    .reviews-main-content{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .reviews-section{
        padding-bottom: 50px;
    }
    .reviews-section h1{
        font-size: 34px;
    }
    .reviews-section h2{
        font-size: 28px;
        margin-top: 30px;
    }
    .reviews-main-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}