/********************************
*******  Review Section  ********
*********************************/
.reviews-section {
    margin: 36px 0 57px;
}
.reviews-section .caption {
    font-family: "Tournedos";
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #747775;
}
.reviews-section .caption img {
    display: inline-block;
}

.reviews-section .reviews-container {
    margin-top: 22px;
}

.reviews-section .pagination-container {
    margin-top: 24px;
}
.reviews-section .view-more {
    margin: 16px auto 0;
    width: 196px;
    height: 24px;
    padding: 0;
    font-family: var(--f-montserrat);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

@media (max-width: 768px) {
    .reviews-section {
        margin: 24px 0 28px;
    }
}

/********************************
*********  Review Box  **********
*********************************/
.review-box-container {
    padding: 50px 0 15px;
    margin: 0 12px;
}
.review-box {
    /* width: 336px; */
    min-height: 280px;
    border-radius: var(--radius-xs) 30px var(--radius-xs) 30px;
    box-shadow: 0px 4px 8px 0px #00000026;
    padding: 24px;
}
.review-box .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 29px;
}
.review-box .img {
    position: relative;
}
.review-box .img img {
    position: absolute;
    transform: translateY(-50%);
    width: 96px;
    height: 96px;
    margin-top: -25px;
    border-radius: 100px;
    object-fit: cover;
}
.review-box .stars {
    display: flex;
}
.review-box .stars img {
    margin-left: 2px;
}
.review-box .stars img:first {
    margin-left: 0;
}
.review-box .stars img {
    width: 17px;
}
.review-box .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    background: linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%),
        linear-gradient(0deg, var(--c-bkg), var(--c-bkg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--f-montserrat);
}
.review-box p {
    font-family: var(--f-montserrat);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    color: #1d1d1d;
    margin: 12px 0;
}
.review-box .name {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background: linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%), var(--c-bkg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/********************************
*********  PAGINATION  **********
*********************************/
.pagination {
    margin-top: 39px;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.pagination i {
    background: #d9d9d9;
    display: inline-block;
    width: 41px;
    height: 6px;
    border-radius: 10px;
    cursor: pointer;
}
.pagination i:hover,
.pagination i.active {
    background: linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%),
        linear-gradient(0deg, var(--c-bkg), var(--c-bkg));
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 24px;
    }
}
