.container_main {
    display: flex;
    flex-flow: column wrap;
}

.container_product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1em 1em 0em 0em;
    border-bottom: 1px solid #FFAB00;
}

.container_product:last-child {
    border-bottom: none;
}

.container_product > div {
    flex: 1 1 45%;
    padding: 0 10px 10px 10px;
}

.product img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    order: 1;
    flex: 0.5;
}

.product info {
    width: 100%;
    height: 100%;
    order: 2;
    flex: 0.5;
}

.product-name {
    font-size: 1.1rem;
    line-height: 1.1;
    color: #FFAB00;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 auto .5em;
}

.product-list {
    font-weight: 300;
    line-height: 1.2;
    color: #444;
}

.product-list h4 {
    font-size: 1rem;
    line-height: 1.1;
    color: #FFAB00;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 auto .5em;
}

.product-list li {
    list-style-type: disc;
    margin-left: 20px;
}

.product-body {
    font-weight: 300;
    margin-bottom: 0px;
    border-left: 1px solid #FFAB00;
    padding-left: 20px;
}