.button {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 19px;
  letter-spacing: 1.6px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: "Open Sans";
}
.button .icon {
  font-size: 16px;
  color: #FFFFFF;
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button.small {
  padding: 8px 16px;
}
.button.medium {
  padding: 12px 16px;
}
.button.large {
  padding: 24px;
}
.button.cta {
  background: #ED1C24;
  border: 1px solid #ED1C24;
}
.button.cta:hover {
  background: #FEECED;
  color: #ED1C24;
}
.button.primary {
  background: #0C1A81;
  border: 1px solid #0C1A81;
}
.button.primary:hover {
  background: #EFF0FD;
  color: #0C1A81;
}
.button.primary:hover .icon {
  color: #0C1A81;
}
.button.primary:disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}
.button.secondary {
  background: #FEECED;
  border: 1px solid #FEECED;
}
.button.secondary:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border: 1px solid #ED1C24;
}
.button.disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}

.wysiwyg {
  font-family: Open Sans;
}
.wysiwyg h1 {
  font-size: 36px;
  /* Heading 1 */
  margin: 16px 0;
  font-weight: 900;
}
.wysiwyg h2 {
  font-size: 28px;
  /* Heading 2 */
  margin: 14px 0;
  font-weight: 900;
}
.wysiwyg h3 {
  font-size: 24px;
  /* Heading 3 */
  margin: 12px 0;
  font-weight: 900;
}
.wysiwyg h4 {
  font-size: 18px;
  /* Heading 4 */
  margin: 10px 0;
  font-weight: 900;
}
.wysiwyg h5 {
  font-size: 16px;
  /* Heading 5 */
  margin: 8px 0;
  font-weight: 900;
}
.wysiwyg h6 {
  font-size: 14px;
  /* Heading 6 */
  margin: 6px 0;
  font-weight: 900;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg p {
  margin: 10px 0;
}
.wysiwyg strong {
  font-weight: 700 !important;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg a {
  color: #0C1A81;
}

.learning-pathways {
  padding: 60px 30px;
  background: #F7F9FD;
}
.learning-pathways .title .cfa-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}
.learning-pathways .title .cfa-title::after {
  left: unset;
  transform: unset;
}
.learning-pathways .description {
  color: #000000;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 554px;
  margin: 32px 0;
}
.learning-pathways .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.learning-pathways .content .card {
  border: 0.5px solid #CCCFDA;
  background-color: #0C1A81;
  min-width: 280px;
  width: 280px;
}
.learning-pathways .content .card .course-card-pattern {
  background-image: url("../../../images/CourseCardPatterns.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 145px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learning-pathways .content .card .course-card-pattern .icon {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.learning-pathways .content .card .pathway-card-content {
  padding: 20px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.learning-pathways .content .card .pathway-card-content .pathway-name {
  color: #FFFFFF;
  margin: 0;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.learning-pathways .content .card .pathway-card-content .pathway-description {
  color: white;
  margin-top: 8px;
}
.learning-pathways .content .card .pathway-card-content .course-count {
  margin: 0;
  color: #FFFFFF;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.learning-pathways .divider {
  display: none;
  background: #a9a9a9;
  border: none;
  height: 1px;
}
.learning-pathways .pagination-container {
  justify-content: center;
}
.learning-pathways .pagination-container .see-all {
  display: block;
}
.learning-pathways .pagination-container .pagination {
  display: none;
}
@media (min-width: 768px) {
  .learning-pathways .content {
    gap: 30px;
  }
}
@media (min-width: 1152px) {
  .learning-pathways {
    padding: 80px 60px 40px;
    background: #FFFFFF;
    width: 812px;
  }
  .learning-pathways .title .cfa-title {
    font-size: 48px;
    line-height: 60px;
  }
  .learning-pathways .content {
    justify-content: flex-start;
    gap: 40px 70px;
  }
  .learning-pathways .divider {
    display: block;
  }
  .learning-pathways .pagination-container {
    justify-content: flex-end;
  }
  .learning-pathways .pagination-container .see-all {
    display: none;
  }
  .learning-pathways .pagination-container .pagination {
    display: flex;
  }
}
@media (min-width: 1440px) {
  .learning-pathways {
    width: 1100px;
  }
}

/*# sourceMappingURL=learning_pathways.css.map */
