.primary {
  color: linear-gradient(70deg, #00a0e9 0%, #8F71F5 50%, #e62e8b 100%);
}

.secondary {
  color: linear-gradient(70deg, #00a0e9 0%, #8F71F5 50%, #e62e8b 100%);
}

.txt-gr-air {
  background: linear-gradient(310deg, rgb(0, 160, 233) 0%, rgb(143, 113, 245) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Training Course Page - Page-specific styles */
.section-training {
  padding: 150px 0;
}
@media (max-width: 576px) {
  .section-training {
    padding: 80px 0;
  }
}

.bg-light-gray {
  background: #fafafa;
}

.section-schedule .schedule-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-schedule .schedule-intro .section-title {
  margin-bottom: 1rem;
}
.section-schedule .schedule-intro .section-desc {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8;
}
.section-schedule .course-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-schedule .course-tabs .course-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
.section-schedule .course-tabs .course-tab h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
  letter-spacing: -0.02em;
}
.section-schedule .course-tabs .course-tab p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.section-schedule .course-tabs .course-tab.active {
  background: #a42444;
  border-color: #a42444;
}
.section-schedule .course-tabs .course-tab.active h3, .section-schedule .course-tabs .course-tab.active p {
  color: #fff;
}
@media (max-width: 768px) {
  .section-schedule .course-tabs .course-tab {
    min-width: 100%;
  }
  .section-schedule .course-tabs .course-tab h3 {
    font-size: 1.5rem;
  }
}
.section-schedule .scheduler-wrap {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 700px;
}
.section-schedule .scheduler-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .section-schedule .scheduler-wrap {
    min-height: 900px;
  }
  .section-schedule .scheduler-wrap iframe {
    min-height: 900px;
  }
}

.section-how .how-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .section-how .how-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-how .how-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2.25rem;
  background: #fff;
  border-radius: 1.5rem;
  min-height: 320px;
  gap: 1.5rem;
}
.section-how .how-card .how-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-how .how-card .how-icon .material-icons {
  font-size: 3rem;
}
.section-how .how-card .how-icon.icon-primary {
  background: rgba(164, 36, 68, 0.07);
  color: #a42444;
}
.section-how .how-card .how-icon.icon-dark {
  background: rgba(0, 0, 0, 0.1);
  color: #555;
}
.section-how .how-card .how-icon.icon-purple {
  background: rgba(114, 15, 128, 0.08);
  color: #720f80;
}
.section-how .how-card h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-how .how-card h3.text-red {
  color: #a42444;
}
.section-how .how-card h3.text-dark {
  color: #222;
}
.section-how .how-card h3.text-purple {
  color: #720f80;
}
.section-how .how-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #222;
  margin: 0;
}
@media (max-width: 768px) {
  .section-how .how-card {
    min-height: auto;
  }
  .section-how .how-card h3 {
    font-size: 1.5rem;
  }
}

.section-courses .courses-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 900px) {
  .section-courses .courses-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-courses .course-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.section-courses .course-card .course-logo-wrap {
  border-radius: 1rem;
  overflow: hidden;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-courses .course-card .course-logo-wrap.bg-biostar-x {
  background: linear-gradient(138deg, rgba(0, 160, 233, 0.1) 19.5%, rgba(143, 113, 245, 0.1) 69.6%, rgba(230, 46, 139, 0.1) 119.8%), #fff;
}
.section-courses .course-card .course-logo-wrap.bg-biostar-air {
  background: linear-gradient(88deg, rgba(0, 160, 233, 0.1) 0.7%, rgba(143, 113, 245, 0.1) 92.3%), #fff;
}
.section-courses .course-card .course-logo-wrap.bg-biostar-2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(164, 36, 68, 0.1)), to(rgba(164, 36, 68, 0.1))), #fff;
  background: linear-gradient(90deg, rgba(164, 36, 68, 0.1) 0%, rgba(164, 36, 68, 0.1) 100%), #fff;
}
.section-courses .course-card .course-logo-wrap img {
  max-height: 80px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-courses .course-card .course-logo-wrap .logo-text {
  font-size: 3.5rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.02em;
}
.section-courses .course-card .course-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.section-courses .course-card .course-desc .product-name.x {
  color: #a42444;
}
.section-courses .course-card .course-desc .product-name.air {
  color: #009fe8;
}
.section-courses .course-card .course-desc .product-name.bs2 {
  color: #a42444;
}
.section-courses .course-card .course-summary {
  font-size: 1.125rem;
  font-weight: 600;
  color: #222;
  line-height: 1.8;
  margin: 0;
}
.section-courses .course-card .btn-learn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  height: 49px;
  background: #a42444;
  color: #fff;
  border-radius: 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: auto;
}
.section-courses .course-card .btn-learn-more i {
  font-size: 1.1rem;
}
.section-courses .course-card .btn-learn-more:hover {
  background: #222;
  color: #fff;
}

.training-banner {
  width: 100%;
  height: 329px;
  overflow: hidden;
}
.training-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .training-banner {
    height: 200px;
  }
}/*# sourceMappingURL=training.css.map */