.flex-container {
  display: flex;  
}

.flex-row {
  display: flex;
  flex-direction: row;
  width:100%;
}

.flex-container .col-md-6 {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  padding:0;
}
.felx-tile-img {
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width:100%;
}
.tile {
  background-color:#f2f5f7;
  width:100%;
  margin:0;
}
.tile-content { 
  padding:10rem 2rem;
}

.order-md-2 {
 order: 2;
}


@media (max-width: 800px) {
  .flex-row {
    flex-direction: column;
  }
  .flex-container .col-md-6 {
    width:100%;   
  } 
  .cms-content .row.flex-row {
    margin:0;
  }
  .order-md-2 {
   order: 0;
  }  
  .tile-content { 
    padding:1rem;
  }
  
}