.wishesList li {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 30px 0;
}
.wishesList li:nth-child(even) {
    justify-content: flex-end;
}
.wishesList li img {
    margin-right: 20px;
    margin-top: -40px;
}
.wishes-texts {
    max-width: 530px;
}
.wishes-texts i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #231815;
}
.wishes-texts p {
    line-height: 30px;
}

@media screen and (max-width: 768px) {
    .wishesList li:nth-child(even) {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 425px) {
    .wishesList li img {
        height: 50px;
        margin-top: -10px;
    }
    .wishes-texts i {
        font-size: 20px;
    }
}