/**
    3x 3/4 + 1x 4/3
 */

@media (min-width:992px) {

    .row-custom-3_34__1_43 .col-md-3 {

        width: calc( ( 100% / 13 ) * 3 );

    }

    .row-custom-3_34__1_43 .col-md-4 {

        width: calc( ( 100% / 13 ) * 4 );

    }

}

/**
    3x 4/3 + 1x 3/4
 */

@media (min-width:992px) {

    .row-custom-3_43__1_34 .col-md-3 {

        width: calc( ( 100% / 15 ) * 3 );

    }

    .row-custom-3_43__1_34 .col-md-4 {

        width: calc( ( 100% / 15 ) * 4 );

    }

}

.inline-block{

    display: inline-block;
    vertical-align: middle;

}