.product-presentation {
    display: flex;
    flex-direction: row;
}

.product-description {
    flex-grow: 1;
    max-width: 67%;

    display: flex;
    flex-direction: column;
}

.product-description .basic-button-a {
    margin: unset;
    margin-top: auto;
    justify-self: end;
}

.product-container {
    flex-grow: 1;
    max-width: 33%;
}

.product-container .col-lg-4 {
    width: unset;
}

/* <MD */
@media screen and (max-width: 767px) {
    .product-presentation {
        flex-direction: column;
    }

    .product-description {
        max-width: 100%;
    }

    .product-container {
        max-width: 100%;
    }
}