.check_usps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.check_review {
    width: calc(20% - 50px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.02);
}
.the_check {
    width: 80px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    background: no-repeat center center / 70% url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21.4144 5.99991L9.00015 18.4141L2.58594 11.9999L4.00015 10.5857L9.00015 15.5857L20.0002 4.58569L21.4144 5.99991Z' fill='%23044068'/%3E%3C/svg%3E");

}

@media (max-width: 1024px) {
    .check_review {
        width: calc(33.3% - 40px);
    }
}

@media (max-width: 640px) {
    .check_review {
        width: calc(50% - 20px);
        margin: 0 10px 20px;
    }

}