.gr-d {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gr-card {
    border-radius: 12px;
    background: #E5E8FB;
    padding: 40px 32px;
    width: calc(33.33% - 16px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.gr-quote-icon {
    margin-bottom: 24px;
}

.gr-quote-icon svg {
    width: 32px;
    height: 32px;
}

.gr-text {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.gr-d .gr-author {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.gr-d1,
.gr-d2 {
    border-radius: 12px;
    background: #1C1C24;
    padding: 24px;
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gr-d1 {
    max-width: 564px;
}

.gr-d2 {
    max-width: 997px;
}

.gr-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.gr-stars {
    color: #EAB308;
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.gr-rating {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-right: 6px;
}

.gr-rating-num {
    font-weight: 500;
}

.gr-quote {
    color: #FFF;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

.gr-author {
    color: #90A1B9;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    .gr-d {
        flex-direction: column;
    }

    .gr-card {
        width: 100%;
    }

    .gr-card:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .gr-card {
        padding: 32px 20px;
    }
}