* {
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
}

.row {
    display: flex;
    height: 100%;
    background-color: #35383D;
}
  
.column {
    flex: 50%;
    text-align: center;
    justify-content: center;
    display: table;
    height: 100%;
    overflow-wrap: normal;
    
}

a {
    text-decoration: none;
    color: white;
    background-color: rgb(247, 148, 29);
    font-size: 14px;
    font-weight: 600;
    padding: 0px 30px 0px 30px;
    line-height: 42px;
    background-clip: border-box;
    background-origin:padding-box;
    display: inline-block;
    
    transition-delay: 0s;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: ease;
}

a:hover {
    background-color: #fff;
    color: #f7941d;
}

#ts a:hover {
    background-color: black;
    color: white;
}

h2 {
    font-size: 36px;
    display: block;
    font-weight: 600;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    text-align: center;
}

h6 {
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 14.4px;
    text-transform: uppercase;
    text-align: center;
}

.content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#mc {
    background-color: #4C7D2E;
    background: url(img/mc.jpg) top;
    color: white;
    
    background-size: cover;
}

#ts {
    background-color :#FEFEFE;
    background: url(img/ts.jpg) top left;
    background-size: cover;
}

#ds {
    background-color: #35383D;
    background: url(img/ds.jpg) top left;
    color: white;
}

@media (max-width: 991.98px) {
    .row {
        flex-direction: column;
        height: 100%;
    }

    .column {
        height: 50%;
        flex: none;
        
        width: 100%
    }


}