.description__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.description__row img {
    max-width: 100%;
}

.img-border {
    border-radius: 10px;
}

.video-border {
    border-radius: 10px;
}

.description__content {
    margin-bottom: 15px;
}

.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}

.video-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .description__row {
        flex-direction:column;
    }

    .description__row .col-md-7 {
        order: 1;
        margin-bottom: 20px
    }

    .description__row .col-md-5 {
        order: 2
    }

    .description__content > div:not(:last-child) {
        margin-bottom: 10px;
    }
}