.custumorReviewsSection {
    width: 100%;
    height: auto;
    padding: 40px 0 30px 0;
}

.custumorReviewsSection>h1 {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    font-family: var(--font2);
    font-size: 210%;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    color: #373435;
}

.custumorReviewsSection>h1>span {
    font-weight: 400;
}

.oneCRSReview {
    width: 100%;
    height: auto;
    padding: 0 10px 10px 10px;
    border-bottom-left-radius: 80% 40%;
    border-bottom-right-radius: 80% 40%;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.oneCRSReviewQuotes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    transform: scaleY(-1);
}

.oneCRSReviewQuotes>img {
    width: 55px;
    height: 55px;
}

.oneCRSReviewQuotes>img:nth-child(2) {
    transform: scaleX(-1);
}

.oneCRSReview>p {
    font-family: var(--font2);
    font-size: 100%;
    font-weight: 500;
    font-style: italic;
    width: 80%;
    margin: -20px auto 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.CRSprofilePlusStars {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.customerNameAndStars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.customerNameAndStars>h1 {
    font-family: var(--font1);
    font-size: 85%;
    letter-spacing: 1px;
    font-weight: 300;
    color: white;background-color: #373435;
    padding: 7px 13px;
    border-radius: 0.5rem;
}

.CRSStars {
    display: flex;
    gap: 2px;
    width: fit-content;
    height: fit-content;
}

.CRSStars>img {
    height: 20px;
    width: auto;
    filter: drop-shadow(0px 0px 1.5px black);
}

.fdRevSwipperBtns {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0 0;
}

.fdRevSwipperBtns>button {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 5rem;
    padding: 0.8%;
    border: 1px solid rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: 200ms ease-out;
}

.fdRevSwipperBtns>button:hover {
    background-color: #00e271;
}

.fdRevSwipperBtns>button>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 992px) {
    .custumorReviewsSection>h1{
        font-size: 180%;
    }
}

@media only screen and (max-width: 768px) {
    .custumorReviewsSection>h1{
        font-size: 165%;
    }
}

@media only screen and (max-width: 576px) {
    .custumorReviewsSection>h1{
        font-size: 150%;
    }
}