    .banner {
      text-align: center;
    }

    a.catlink {
      text-decoration: none;
      width: 325px;
      cursor: pointer;
    }

    .category:hover {
      /* background-color: rgb(220, 223, 236); */
      background-color: #F2F8FB;
    }

    .cimage:hover {
      background-color:#000;
      transition: background .25s ease-in-out;
      -moz-transition: background .25s ease-in-out;
      -webkit-transition: background .25s ease-in-out;
    }

    .cimage:hover > img {
      opacity:0.4;
      transition: background .25s ease-in-out;
      -moz-transition: background .25s ease-in-out;
      -webkit-transition: background .25s ease-in-out;
    }

    .cimage {
      position: relative;
    }

    .cimage .learnmore {
      left: calc(50% - 100px);
      box-sizing: border-box;
      position: absolute;
      top: 55px;
      padding: 0 20px;
      width: 200px;
      height: 50px;
      border-color: #0075b4;
      border-radius: 3px;
      background: #0075b4;
      color: #fff;
      line-height: 50px;
      text-align: center;
      opacity: 0;
      text-transform: none;
    }

    .cimage:hover .learnmore { 
      opacity: 1;
      transition: background .25s ease-in-out;
      -moz-transition: background .25s ease-in-out;
      -webkit-transition: background .25s ease-in-out;
      z-index: 100;
    }

    .main_container {
      display: grid;
      /* flex-direction: column; */
      /* flex-flow: column;
      flex-wrap: wrap; */
      gap: 15px;
      /* align-content: center; */
      justify-items: center;
    }

    .categories {
      display: grid;
      padding: 5px;
      /* margin: 5px; */
      gap: 15px;
      grid-template-columns: repeat(3, minmax(320px, 350px));
      /* grid-auto-rows: 50px; */
      grid-auto-flow: row;
      justify-items: center;
      /* border: 1px solid black; */
      /* margin-top: -80px; */
      margin-bottom: 20px;
    }

    .university{
      font-size: 1.3rem !important;
    }

    .listtitle {
      text-align: center;
    }

    .listdesc {
      text-align: center;
    }

    .ltitle {
      color: #00008085;
      font-size: 1.6rem;
    }

    .ldesc {
      margin: 0 20px;
      line-height: 1.5em;
      color: grey;
    }


    .courses_list {
      /* border: 1px solid black; */
      padding: 5px;
      /* margin: 5px; */
      /* margin-top: 20px; */
    }

    .category {
      box-shadow: 1px 1px 2px 2px #ccc;
      /* border: 1px solid black; */
      border-radius: 5px;
      padding: 15px;
      /* background-color: rgb(236, 236, 238); */
      /* color: rgb(131, 129, 141); */
      color: #0080CD; 
      font-size: 1.7rem;
      width: 100%;
      display: flex;
      line-height: initial;
      align-items: center;
      height: 50px;
    }

    .cicon {
      /* background-color: khaki; */
      vertical-align: middle;
    }

    svg{
      background-color: rgb(230, 230, 230);
      padding: 5px;
      border-radius: 50%;
      vertical-align: middle;
      margin-bottom: 5px;
      margin-right: 10px;
    }

    .courses_wrapper{
      display: flex;
      flex-flow: column;
      flex-wrap: wrap;
      align-content: center;
    }

    .course .cimage img {
      width: 100%;
      /* max-width: 270px; */
      /* padding-top: 5px; */
      /* border: 1px solid black; */
    }

    .course .cimage{
      text-align: center;
      max-height: 160px;
      overflow: hidden;
    }

    .courses_list{
      display: grid;
      grid-template-columns: repeat(4, minmax(200px, 270px));
      grid-auto-flow: row;
      gap: 2em;
      /* justify-items: center; */
      /* align-items: center; */
      /* align-content: center; */
    }

    .course{
      max-width: 282px;
      min-width: 200px;
      border: 1px solid #bebebe;
      /* align-self: center; */
      justify-self: center;
      box-shadow: 0px 0px 7px rgba(88, 88, 88, 0.6);
      border-bottom: 3px solid #126f9a;
      background: #fff;
    }

    .course:hover {
      background: #F5F5F5;
      box-shadow: 0px 0px 7px rgba(88, 88, 88, 0.2);
      transition: background .25s ease-in-out;
      -moz-transition: background .25s ease-in-out;
      -webkit-transition: background .25s ease-in-out;
    }

    .cinfo{
      padding: 5px;
      /* width: 270px; */
    }

    /* .course{
      padding: 10px;
    } */


    .cshortdesc div.shortdesc{
      font-weight: bold;
      margin-bottom: 3px;
    }

    .cshortdesc span.shortdesc{ 
      margin-bottom: 5px;
      font-style: italic;
    }

    .cinfo .cname {
      color: #2F4F4F;
      line-height: 21px;
      font-size: 17px;
      margin-top: 1em;
    }

    .cnum {
      color: grey;
      font-style: italic;
      
    }

    .cinfo .corg {
      color: grey;
      margin-top: 2px;
    }

    .course a{
      text-decoration: none !important;
    }

    .cstartdate .chasstarted2{
        bottom: 0;
    }

    .chasstarted2 {
      font-size: 14px;
      color: #474747;
    }

    .cstartdate{
      margin-top: 20px;
      height: 100%;
      
    }

    @media all and (max-width: 1200px){
      .categories {
        grid-template-columns: repeat(2, minmax(320px, 350px));
      }

      .courses_list {
        grid-template-columns: repeat(3, minmax(320px, 350px));
      }
    }

    @media all and (max-width: 1000px){
      .categories {
        grid-template-columns: repeat(2, minmax(320px, 350px));
      }

      .courses_list {
        grid-template-columns: repeat(2, minmax(320px, 350px));
      }
    }

    @media all and (max-width: 768px){
      .categories {
        grid-template-columns: repeat(1, minmax(250px, 300px));
      }

      .courses_list {
        grid-template-columns: repeat(1, minmax(320px, 350px));
      }
    }

