.feedback{
    padding: 100px 0 96px 0;
}

.feedback-content{
    display: flex;
    flex-direction: column;
}
.feedback-title{
    display: flex;
    align-items: flex-start;
     margin-bottom: 92px;
}
.feedback-title h3{
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
    min-width: 50%;
}

.feedback-title p{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
     max-width: 547px;
}

.feedback-list{
    gap: 8px;
    width: 100%;
    height: 516px;
}

.feedback-list::-webkit-scrollbar {
  display: none;                
}

.feedback-card{
    box-sizing: border-box;
    border: 1px solid #D3D6D8;
    border-radius: 24px;
    height: 412px;
    
    min-width: calc((100% - 16px) / 3);
    padding: 32px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap:32px;
}

.feedback-card img{
    width: 75px;
    height: 75px;
    border-radius: 16px;
}

.feedback-info{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}
.feedback-info-title{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.feedback-info-title h5{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;

}
.feedback-info-title span{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;

    color: var(--color-secondary)
}
.feedback-info p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-secondary);
}


@media (max-width: 1440px) {
    .feedback-info-title span{
        font-size: 16px;
    }
    .feedback-info-title h5{
        font-size: 20px;
    }
    
   
}
@media (max-width: 1280px) {
    .feedback{
        padding: 96px 0;
    }

    .feedback-title{
        margin-bottom: 54px;
    }
    .feedback-title h3{
        font-size: 32px;
        line-height: 48px;
    }
    .feedback-title p{
        color:var(--color-secondary);
        font-size: 16px;
        line-height: 24px;
    }
    .feedback-list{
        height: 404px;
    }
    .feedback-card{
        min-width: calc((100% - 8px) / 2);
        height: 300px;
    }
     .feedback-info p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .feedback-info-title span{
        font-size: 14px;
        line-height: 20px;
    }
    .feedback-info-title h5{
        font-size: 18px;
        line-height: 24px;
    }
    
    .feedback-info p {
        font-size: 14px;
        line-height: 20px;
    }
    
}

@media (max-width: 850px) {
    .feedback-list{
        height: 454px;
    }
    .feedback-card{
        min-width: calc((100% - 8px) / 2);
        height: 350px;
    }
}

@media (max-width: 768px) {
    .feedback{
        padding: 64px 0 32px 0;
    }
    .feedback-title{
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        margin-bottom: 32px;
    }
   .feedback-list{
        height: 444px;
    }
    .feedback-card{
        min-width: calc((100% - 8px) / 2);
        height: 364px;
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .feedback-card img{
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 600px) {
    
    .feedback-list{
        height: 402px;
    }
    .feedback-card{
        min-width: 100%;
    }
}