.feedback__wrapper{
    padding-top: 160px;
    padding-bottom: 120px;
}
.feedback__items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feedback__item{
    position: relative;
    padding-top: 150px;
    margin-bottom: 20px;
}
.feedback__item:nth-last-child(-n+3){
    margin-bottom: 0;
}
.feedback__item img{
    width: 299px;
    height: 299px;
    position: absolute;
    margin: 0 auto;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    background: #AA81ED;
    border: 17px solid #AA81ED;
    border-radius: 100%;
    box-sizing: border-box;
    object-fit: cover;
    transition: .5s;
}
.feedback__item:hover img{
    width: 310px;
    height: 310px;
}
.feedback__item:nth-child(2n) img{
     border-color: #488881;
    background: #488881;
 }
.feedback__item:nth-child(3n) img{
    border-color: #74B959;
    background: #74B959;
}
.feedback__item:nth-child(4n) img{
    border-color: #2699D6;
    background: #2699D6;
}
.feedback__item:nth-child(5n) img{
    border-color: #F088B6;
    background: #F088B6;
}
.feedback__item:nth-child(6n) img{
    border-color: #B4E2DD;
    background: #B4E2DD;
}

.feedback__item-text{
    width: 350px;
    height: 100%;
    padding: 170px 20px 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    box-sizing: border-box;
}
.feedback__item-text h2{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}
.feedback__item-text p{
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: #646464;
}
@media screen and (max-width: 640px) {
    .feedback__items {
        justify-content: center;
    }
}