.course-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.steps-grid .step-icon img {
  width: 30px;
}

.course-pagination {

  margin-top: 40px;

  display: flex;
  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;

}

.course-pagination .page-numbers {

  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  border: 1px solid #e5e7eb;

  color: #111827;

  text-decoration: none;

  transition: .25s;

}

.course-pagination .page-numbers:hover {

  background: #111827;

  color: #fff;

}

.course-pagination .current {

  background: #111827;

  color: #fff;

}