@charset "UTF-8";

/* Review Cards Section CSS */

.revCards {
    position: relative;
    padding: clamp(80px, 5.21vw, 100px) 0;
    background-color: #303030;
    background-image: url('/wp-content/uploads/2025/05/review-offers-bg.svg' );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.revCards .row.flex {
    align-items: stretch;
    gap: clamp( 40px, 4.43vw, 85px );
}

.revCards .heading {
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
}

.revCards .heading h2 {
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.revIcon {
    color: #1970B3;
    font-size: clamp(28px, 2.03vw, 44px);
    margin-bottom: 16px;
}

.revCards .cbCard {
    width: 28%;
    padding: clamp( 32px, 2.92vw, 56px ) clamp( 20px, 2.083vw, 40px );
    background-color: rgba(44, 44, 44, .25);
    backdrop-filter: blur(5px) brightness(1.25);
    border-radius: 0;
}

.revCards .cbCard .rQuote p {
    color: #f8f8f8;
}

.quotWrap {
    position: relative;
    display: block;
    padding: 0 min(2.083vw, 0px) 0;
    background-color: transparent;
    color: #f8f8f8;
    text-align: left;
}

.revStars ul.star-rating {
    padding: 0
}

.revStars ul.star-rating li {
    color: #f8f8f8;
    font-size: 16px;
    margin: 16px  3.5px;
}

.attribution {
    font-weight: 500;
    margin: 0 auto;
    text-transform: uppercase;
    color: #f8f8f8;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
}

.attribution img {
    width: 24px;
}

.revCards .btn.btn-orange {
    margin: 56px auto 0;
}

.revCards .btn.btn-orange:hover {
    margin: 51px auto 5px;
}

@media ( max-width: 1280px ) {
    .revCards .cbCard {
        /* padding: clamp(16px, 1.302vw, 25px); */
    }
}

@media ( max-width: 1024px ) {
    .revCards {
         background-image: none;
    }

    .revCards .heading{
        text-align: center;
    }

    .revCards .row.flex {
        flex-direction: column;
    }

    .revCards .cbCard {
        width: 50%;
    }
}

@media ( max-width: 479px ) {
    .revCards .heading h2::after {
        margin: 18px auto;
    }

    .revCards .cbCard {
        width: 80%;
        margin-bottom: 0;
        /* padding: 0 min(2.188vw, 42px); */
    }
}