.cogbooks-course-cards-container {
    display: flex;
    align-content: center;
    justify-content: center;
  }
  
  .cogbooks-course-card {
    flex: 1;
    max-width: 600px;
    border: solid 1px lightgrey;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    margin: 10px;
  }
  
  .cogbooks-course-card img {
    max-width: 100%;
    object-fit: cover;
    min-height: 270px;
    max-height: 270px;
    width: 100%;
  }
  
  .cogbooks-cta {
    text-decoration: none;
    text-align: center;
    background-color: #0170B9;
    color: white;
    padding: 5px;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
  }
  
  .cogbooks-cta a {
    text-decoration: none;
    color: white;
      cursor: pointer;
  }
  
  #cogbooks-course-fee-progress {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 15px;
  }
  
  @media only screen and (max-width: 767px) {
      .cogbooks-course-cards-container {
          display: flex;
          align-content: center;
          justify-content: center;
          flex-direction: column;
    }
    
  }