/* ==================================================
   HOME REVIEW
================================================== */

.home-review {

    padding: 30px 20px;
    background: #e9e9e9;

}

.home-review-container {

    max-width: 1320px;
    margin: auto;

}

/* ============================= */

.home-review-header {

    text-align: center;
    margin-bottom: 60px;

}

.home-review-subtitle {

    display: inline-flex;
    align-items: center;
    gap: 20px;

    font-size: 40px;
    font-weight: 700;
    color: #222;

}

.home-review-subtitle::before,
.home-review-subtitle::after {

    content: "";
    width: 70px;
    height: 2px;
    background: #C92327;

}

.home-review-header p {

    margin-top: 15px;

    /* color:#666; */
    font-size: 18px;

}

/* ============================= */

.home-review-list {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

}

/* ============================= */

.home-review-card {

    display: flex;
    gap: 18px;

}

/* ============================= */

.home-review-avatar {

    flex-shrink: 0;

}

.home-review-avatar img {

    width: 70px;
    height: 70px;

    border-radius: 50%;
    object-fit: cover;

}

/* ============================= */

.home-review-name {

    font-size: 18px;
    font-weight: 700;
    color: #000000;

}

.home-review-rating {

    color: #ffb400;
    font-size: 14px;
    margin: 3px 0;

}

.home-review-info {

    font-size: 13px;
    /* color:#777; */
    margin-bottom: 10px;

}

.home-review-content p {

    /* color:#000000; */
    font-size: 14px;
    line-height: 1.7;

}

/* ==================================================
   NOTEBOOK
================================================== */

@media (min-width:1024px) and (max-width:1365px) {

    .home-review {

        padding: 70px 30px;
    }

    .home-review-header {

        margin-bottom: 50px;
    }

    .home-review-subtitle {

        font-size: 34px;
    }

    .home-review-subtitle::before,
    .home-review-subtitle::after {

        width: 55px;
    }

    .home-review-header p {

        font-size: 17px;
    }

    .home-review-list {

        gap: 28px;
    }

    .home-review-card {

        gap: 16px;
    }

}

/* ==================================================
   TABLET
================================================== */

@media (min-width:768px) and (max-width:1023px) {

    .home-review {

        padding: 60px 30px;
    }

    .home-review-header {

        margin-bottom: 45px;
    }

    .home-review-subtitle {

        font-size: 30px;
    }

    .home-review-subtitle::before,
    .home-review-subtitle::after {

        width: 45px;
    }

    .home-review-header p {

        font-size: 16px;
    }

    .home-review-list {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px) {

    .home-review {

        padding: 50px 20px;
    }

    .home-review-header {

        margin-bottom: 35px;
    }

    .home-review-subtitle {

        font-size: 24px;

        gap: 12px;
    }

    .home-review-subtitle::before,
    .home-review-subtitle::after {

        width: 30px;
    }

    .home-review-header p {

        font-size: 15px;

        line-height: 1.7;
    }

    .home-review-list {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .home-review-card {

        gap: 15px;
    }

    .home-review-avatar img {

        width: 60px;
        height: 60px;
    }

    .home-review-name {

        font-size: 17px;
    }

    .home-review-content p {

        font-size: 14px;

        line-height: 1.7;
    }

}