.course-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 180px;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.navbar.navbar-light.fixed .btn:not(.btn-expand):not(.btn-gradient) {
    background: #747ed1 !important;
    border-color: #747ed1 !important;
    color: #ffffff !important;
}
    .accordion-wrapper .card-header button{
      color: #747ed1;
    }
      @media (min-width: 992px){
      .navbar-expand-lg.navbar-light .dropdown:not(.dropdown-submenu)>.dropdown-toggle:after {
          color: #747ed1;
      }
      }
      @media (max-width: 991.98px){
      .navbar-expand-lg .navbar-collapse .dropdown-toggle:after {
        color: #ffffff !important;
      }
  }
  .course-card {
    background-color: white;
    border-radius: 0.4rem;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 1.5rem;
  }
  .course-card .course-image img {
    width: 100%;
    height: auto;
  }
  .course-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-style: italic;
  }
  .course-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.625;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  .course-card a {
    color: #747ed1;
    font-weight: 500;
    text-decoration: none;
  }
  .course-card a:hover {
    text-decoration: underline;
  }
  .course-card-divider {
    width: 3rem;
    height: 3px;
    background-color: #60a5fa;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    border-radius: 9999px;
  }