.how-to-order {
    margin: 40px 0 40px;
    padding-top: 20px;
    background-color: #e3f1f2;
}

.how-to-order .how-to-order__title {
    background-color: #e3f1f2;
    margin-bottom: 28px;
}

.how-to-order .how-to-order__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    counter-reset: counter;
    padding: 0;
}

.how-to-order .how-to-order__item {
    margin-bottom: 20px;
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
    background: #fff;
    border: 2px solid #4DACAE;
    padding: 13px 10px 13px 18px;
    position: relative;
}
.how-to-order .how-to-order__item:nth-child(even){
    border-color:#FF9276;
}
.how-to-order .how-to-order__item:before {
    counter-increment: counter;
    content: '0' counter(counter);
    color: #ffffff;
    background: #4dacae;
    text-align: center;
    font-size: 28px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-weight: 700;
    width: 79px;
    height: 79px;
    top: 9px;
    left: auto;
    transform: none;
    right: 9px;
}

.how-to-order .how-to-order__item-image {
    background-color: #4DACAE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 71px;
    height: 71px;
    margin:0;
}
.how-to-order .how-to-order__item:nth-child(even):before, .how-to-order .how-to-order__item:nth-child(even) .how-to-order__item-image{
    background-color: #FF9276;
}
.how-to-order .how-to-order__item-image img {
    max-width: 50%;
}

.how-to-order .how-to-order__item-desc {
    font-size: 18px;
    line-height: 25px;
    font-weight:700;
    color: #000;
}

@media (max-width: 991px) {

    .how-to-order .how-to-order__item{gap:20px;}
    .how-to-order .how-to-order__item-desc {max-width: calc(100% - 200px);}
    .how-to-order .how-to-order__title {
        margin-bottom: 40px;
    }


}
@media (max-width: 450px){
    .how-to-order .how-to-order__item {
        gap: 15px;
        padding: 10px;
    }
    .how-to-order .how-to-order__item:before{
        font-size: 23px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .how-to-order .how-to-order__item-image{
        width: 45px;
        height: 45px;
    }
    .how-to-order .how-to-order__item-desc{
        font-size: 15px;
        line-height: 20px;
        max-width: calc(100% - 120px);
    }
}





