.home-reviews.text {
    text-align: center;
    margin-bottom: 40px;
}

.home-reviews .item {
    padding: 0;
    background-color: var(--color-blue-light);
    border-radius: 12px;
    width: 550px;
    min-width: 550px;
    min-height: 340px;
    position: relative;
    display: flex;
    background-image: var(--img-link);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.home-reviews .item .photo {
    right: 0;
    bottom: 0;
    min-width: 215px;
    width: 215px;
    display: flex;
    align-items: end;
}

.home-reviews .item .content {
    display: inline-flex;
    flex-direction: column;
    padding: 15px;
    width: 330px;
    min-width: 330px;
    height: 100%;
}

.home-reviews .item .content .description {
    margin-top: 15px;
    /* flex-grow: 1; */
}

.home-reviews .item .content .quote {
    margin-top: 10px;
    color: var(--color-blue);
}

.home-reviews .item .content .bottom {
    display: flex;
    align-items: end;
    gap: 15px;
    flex-grow: 1;
}

.home-reviews .item .content .bottom img {
    width: 37px;
    height: 43px;
}

@media (max-width: 1024px) {
    .home-reviews .item {
        width: 450px;
        min-width: 450px;
        /* background-size: 80%; */
    }
    
}

@media (max-width: 767px) {
    .home-reviews .item {
        width: 360px;
        min-width: 360px;
        background-size: auto 85%;
    }
    

    .home-reviews .item .content .quote {
        max-width: 200px;
    }


    .home-reviews .item .content .bottom {
        flex-direction: column;
        align-items: start;
    }

    .home-reviews .item .content .bottom {
        justify-content: end;
    }
}
