#media-banner {
    background-color: #fff;
  }
  
  .top-title-row {
    display: flex;
    align-items: center;
  }
  
  .media-content {
    background-color: #fff;
  }
  
  .img-media {
    width: 100px;
    float: right;
  }
  
  .text-col {
    padding-top: 92px;
  }
  
  .text-flow-col {
    padding-top: 65px;
  }
  
  .d-flex {
    display: flex;
    align-items: center;
  }
  
  .image-col {
    margin-top: 65px;
  }
  
  .award-desc {
    margin: 0;
    padding: 0 10px;
  }
  
  .media-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Change order and layout for medium screens and up (text on left, image on right) */
  @media screen and (max-width: 768px) {
    .image-col {
      order: 1;
      width: 100%;
    }
    .top-title-row {
      display: block;
    }
  
    .text-col {
      order: 2;
      padding-top: 19px;
    }
    .text-flow-col {
      order: 2;
      padding-top: 19px;
    }
    #media-banner {
      margin-top: 0 !important;
    }
    .award-title {
      margin: 0;
      font-size: 17px;
    }
    .d-grid {
      display: grid;
    }
  }
  