/*COLORS */
/*TEXT COLORS */
/*SHADOW */
/* BORDER RADIUS */
/* GRADIENTS */
@media (max-width: 500px) {
  .visual-wrap img {
    width: 100%;
  }
}
.stat-card {
  border: 1px solid #E5E7EB;
  background-color: #F9FAFB;
  padding: 25px;
  border-radius: 10px;
  margin-block: 12px;
}
.stat-card .stat-number {
  background: linear-gradient(90deg, #0d85c4 0%, #0d85c4 50%, rgba(13, 133, 196, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 600;
}
.stat-card .stat-number.accent {
  background: linear-gradient(135deg, #37944d 0%, rgba(55, 148, 77, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card .stat-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "open sans";
  color: #4a5565;
}

.course-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 24px 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}
.course-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.course-card h6 {
  font-size: 18px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 8px;
}
.course-card p {
  font-size: 14px;
  font-weight: 400;
  font-family: "open sans";
  color: #4a5565;
  margin-bottom: 0;
}/*# sourceMappingURL=courses.css.map */