.mtc-row {
    background:#e5e5e5;
    padding:2.5em 0;
}

.mtc-row h2 {
    color: #C7271A;
    text-align: center;
    padding: 25px 0;
}

.mtc-container {
    display: flex;
    align-items: flex-start;
    align-content: center;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width:1440px;
    margin:0 auto;
}

.left-img {
    flex: 0 0 45%;
    box-sizing: border-box;
    background-size: cover;
    margin: 1.5em 0;
    height: 400px;
    background-position:center center;
}

.right-desc {
    flex: 0 0 48%;
    margin: 25px auto;
    box-sizing: border-box;
}

/* Responsive Fixes */

@media screen and (max-width: 860px){
    .left-img {
        flex:0 0 100%;
    }
    .right-desc {
        flex:0 0 90%;
    }
    
    .mtc-row {
        padding:25px;
        box-sizing:border-box;
    }
}