.module-item {
    margin-bottom: 50px;
  }

  .module-thumb {
    position: relative;
  }

  .module-thumb:before {
    transition: all .6s;
    opacity: 0;
  }

  .module-thumb:hover:before {
    position:absolute;
    opacity: 1;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(101,102,103,0.5) 50%, rgba(255,255,255,0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100 !important;
    transition: all .8s;

    content: "Learn more..."; 
    text-shadow:rgba(0, 0, 0, 0.6) 0px 2px 2px;
    font-size: 1.5rem;
    color:#fff; 
    font-weight: normal;
  }

  #moduleDetails img {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    border:3px solid #999999;
  }

  #moduleDetails ul {
    padding: 0px;
    margin-bottom: 30px;
  }

  #moduleDetails li:hover {
    background-color: #dddddd !important;
    transition: all .3s;
  }

  #moduleDetails li {
    cursor: default;
    list-style-type: none !important;
    margin: 0px !important;
    padding: 10px;
    border-bottom: 1px solid #cccccc;
    transition: all .3s;
    color:#062340;
  }

  #moduleDetails li:nth-child(odd) {
    background-color: #ececf0;
  }

  .module-container {
    height:100%;
    cursor: default;
    transition: all 0.5s;
  }

  .module-container:hover {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }