.fifty-wrapper {
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.fifty-container {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .fifty-container__item {
      width: 45%;
      position: relative;
      padding: 3em;
      margin-top: 1em; }
      .fifty-container__item:before {
        border: 2em solid #c7531e;
        bottom: 0;
        top: 0;
        left: 0;
        content: '';
        position: absolute;
        width: 10%;
        z-index: 1;
        display: block;
        border-right: none; }
      .fifty-container__item:after {
        border: 2em solid #c7531e;
        bottom: 0;
        top: 0;
        right: 0;
        content: '';
        position: absolute;
        width: 10%;
        z-index: 1;
        display: block;
        border-left: none; }
  
  @media screen and (max-width: 1500px) {
    .fifty-container {
      width: 90%; } }
  
  @media screen and (max-width: 1000px) {
    .fifty-container {
      flex-wrap: nowrap;
      flex-direction: column;
      align-items: center; }
    .fifty-container__item {
      width: 100%; } }
  
  @media screen and (max-width: 400px) {
    .fifty-container__item:before, .fifty-container__item:after {
      width: 20%; } }
