/**
 * Laureate SAP RAP Course Requirements Stylesheet
 *
 * @package Laureate
 * @version 1.0.0
 */

.evo-rap-req,
.evo-rap-req * {
  box-sizing: border-box;
}

.evo-rap-req {
  --req-navy: #112f56;
  --req-text: #55718f;
  --req-blue: #1769aa;
  --req-sky: #1687cd;
  --req-green: #18a96b;

  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: clamp(78px, 8vw, 112px) 24px;
  background:
    radial-gradient(circle at 8% 12%, rgba(56, 189, 248, .09), transparent 27%),
    linear-gradient(135deg, #f7fbfe 0%, #fff 50%, #f6fbff 100%);
  color: var(--req-navy);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.evo-rap-req__pattern {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .27;
  background-image:
    linear-gradient(rgba(23, 105, 170, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 170, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 46%, transparent 100%);
}

.evo-rap-req__glow {
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  pointer-events: none;
}

.evo-rap-req__glow--one {
  left: -250px;
  bottom: -180px;
  background: rgba(56, 189, 248, .09);
}

.evo-rap-req__glow--two {
  right: -230px;
  top: -180px;
  background: rgba(34, 197, 94, .07);
}

.evo-rap-req__container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(540px, 1.17fr);
  align-items: center;
  gap: clamp(48px, 6vw, 82px);
}

.evo-rap-req__intro {
  min-width: 0;
}

.evo-rap-req__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--req-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.evo-rap-req__eyebrow svg {
  width: 21px;
  height: 21px;
  padding: 3px;
  border-radius: 7px;
  background: #e8f6ff;
}

.evo-rap-req__intro h2 {
  max-width: 510px;
  margin: 0;
  color: var(--req-navy);
  font-size: clamp(38px, 4.1vw, 54px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -.043em;
  text-wrap: balance;
}

.evo-rap-req__intro h2 span {
  color: var(--req-sky);
  background: linear-gradient(100deg, var(--req-blue), var(--req-sky) 58%, var(--req-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.evo-rap-req__description {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--req-text);
  font-size: 15px;
  font-weight: 420;
  line-height: 1.7;
}

.evo-rap-req__level-card {
  position: relative;
  overflow: hidden;
  padding: 19px;
  margin-top: 27px;
  border: 1px solid rgba(23, 105, 170, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 35px rgba(24, 81, 129, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.evo-rap-req__level-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(56, 189, 248, .065);
}

.evo-rap-req__level-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.evo-rap-req__level-head > div:first-child {
  display: flex;
  flex-direction: column;
}

.evo-rap-req__level-head span {
  color: #7890a8;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.evo-rap-req__level-head strong {
  margin-top: 4px;
  color: var(--req-navy);
  font-size: 16px;
  font-weight: 730;
}

.evo-rap-req__level-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 39px;
  border-radius: 12px;
  background: #eaf7ff;
  color: var(--req-sky);
}

.evo-rap-req__level-icon svg {
  width: 21px;
  height: 21px;
}

.evo-rap-req__level-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.evo-rap-req__level-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #ddebF4;
}

.evo-rap-req__level-line i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--req-blue), var(--req-sky), var(--req-green));
}

.evo-rap-req__level-point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.evo-rap-req__level-point span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--req-blue);
  color: #fff;
  box-shadow: 0 5px 12px rgba(23, 105, 170, .18);
  font-size: 8px;
  font-weight: 800;
}

.evo-rap-req__level-point:nth-child(4) span {
  background: var(--req-green);
}

.evo-rap-req__level-point b {
  color: #4a6885;
  font-size: 9px;
  font-weight: 700;
}

.evo-rap-req__level-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 10px 11px;
  margin-top: 17px;
  border-radius: 10px;
  background: #f3f9fd;
  color: #63809c;
  font-size: 10px;
  font-weight: 550;
  line-height: 1.45;
}

.evo-rap-req__level-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--req-sky);
}

.evo-rap-req__audience {
  margin-top: 22px;
}

.evo-rap-req__audience-label {
  display: block;
  margin-bottom: 9px;
  color: #7790a8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.evo-rap-req__audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evo-rap-req__audience-list span {
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 105, 170, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .75);
  color: #506e8b;
  font-size: 10px;
  font-weight: 650;
}

.evo-rap-req__audience-list svg {
  width: 16px;
  height: 16px;
  color: var(--req-sky);
}

.evo-rap-req__panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(23, 105, 170, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow:
    0 27px 65px rgba(24, 81, 129, .12),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.evo-rap-req__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--req-blue), var(--req-sky) 62%, var(--req-green));
}

.evo-rap-req__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 3px 2px 19px;
  border-bottom: 1px solid rgba(23, 105, 170, .09);
}

.evo-rap-req__panel-head > div {
  display: flex;
  flex-direction: column;
}

.evo-rap-req__panel-head > div > span {
  margin-bottom: 4px;
  color: var(--req-sky);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.evo-rap-req__panel-head h3 {
  margin: 0;
  color: var(--req-navy);
  font-size: 21px;
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.evo-rap-req__open-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e8f9f0;
  color: #128653;
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.evo-rap-req__open-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--req-green);
  box-shadow: 0 0 0 4px rgba(24, 169, 107, .1);
}

.evo-rap-req__list {
  display: grid;
  gap: 9px;
  padding-top: 17px;
}

.evo-rap-req__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 91px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 105, 170, .075);
  border-radius: 14px;
  background: #f9fcfe;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.evo-rap-req__item:hover {
  border-color: rgba(23, 105, 170, .16);
  background: #fff;
  box-shadow: 0 11px 27px rgba(24, 81, 129, .075);
  transform: translateX(4px);
}

.evo-rap-req__item--featured {
  border-color: rgba(24, 169, 107, .13);
  background: linear-gradient(100deg, #f8fdfb, #fafffc);
}

.evo-rap-req__item-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  border-radius: 12px;
  background: #e9f6fe;
  color: var(--req-sky);
}

.evo-rap-req__item-icon--green {
  background: #e8f9f0;
  color: var(--req-green);
}

.evo-rap-req__item-icon--violet {
  background: #f1efff;
  color: #6b60c7;
}

.evo-rap-req__item-icon--solid {
  background: var(--req-green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(24, 169, 107, .18);
}

.evo-rap-req__item-icon svg {
  width: 23px;
  height: 23px;
}

.evo-rap-req__item-copy {
  min-width: 0;
}

.evo-rap-req__item-label {
  display: block;
  margin-bottom: 3px;
  color: #7c93a9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.evo-rap-req__item-copy h4 {
  margin: 0;
  color: var(--req-navy);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.28;
}

.evo-rap-req__item-copy p {
  margin: 4px 0 0;
  color: #647f9a;
  font-size: 10.5px;
  font-weight: 420;
  line-height: 1.45;
}

.evo-rap-req__check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  border-radius: 50%;
  background: #e7f9ef;
  color: var(--req-green);
}

.evo-rap-req__check svg {
  width: 16px;
  height: 16px;
}

.evo-rap-req__optional {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 7px;
  background: #eef7fc;
  color: var(--req-blue);
  font-size: 8px;
  font-weight: 750;
}

.evo-rap-req__panel-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  margin-top: 13px;
  border-radius: 12px;
  background: linear-gradient(100deg, #eef8fd, #f4fbff);
  color: #5f7b96;
  font-size: 10px;
  font-weight: 520;
  line-height: 1.45;
}

.evo-rap-req__panel-footer b {
  color: var(--req-navy);
  font-weight: 720;
}

.evo-rap-req__panel-footer-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 29px;
  border-radius: 9px;
  background: #fff;
  color: var(--req-sky);
}

.evo-rap-req__panel-footer-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1040px) {
  .evo-rap-req__container {
    grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
    gap: 42px;
  }

  .evo-rap-req__intro h2 {
    font-size: clamp(36px, 4.4vw, 49px);
  }

  .evo-rap-req__audience-list span {
    font-size: 9px;
  }
}

@media (max-width: 880px) {
  .evo-rap-req {
    padding-block: 78px;
  }

  .evo-rap-req__container {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .evo-rap-req__intro h2,
  .evo-rap-req__description {
    max-width: 660px;
  }

  .evo-rap-req__level-card {
    max-width: 620px;
  }

  .evo-rap-req__audience-list span {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .evo-rap-req {
    padding: 65px 16px;
  }

  .evo-rap-req__pattern {
    opacity: .2;
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, #000, transparent 60%);
  }

  .evo-rap-req__container {
    gap: 34px;
  }

  .evo-rap-req__eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .evo-rap-req__intro h2 {
    font-size: clamp(34px, 10vw, 43px);
    line-height: 1.1;
  }

  .evo-rap-req__description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .evo-rap-req__level-card {
    padding: 16px;
    margin-top: 22px;
    border-radius: 16px;
  }

  .evo-rap-req__level-head strong {
    font-size: 14px;
  }

  .evo-rap-req__level-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .evo-rap-req__level-point b {
    font-size: 8px;
  }

  .evo-rap-req__audience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .evo-rap-req__audience-list span {
    justify-content: center;
    padding-inline: 7px;
    font-size: 9px;
  }

  .evo-rap-req__audience-list span:last-child {
    grid-column: 1 / -1;
  }

  .evo-rap-req__panel {
    padding: 18px 13px 14px;
    border-radius: 20px;
  }

  .evo-rap-req__panel-head {
    align-items: flex-start;
    padding-inline: 2px;
  }

  .evo-rap-req__panel-head h3 {
    font-size: 18px;
  }

  .evo-rap-req__open-badge {
    padding: 7px 8px;
    font-size: 8px;
  }

  .evo-rap-req__item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }

  .evo-rap-req__item:hover {
    transform: translateY(-2px);
  }

  .evo-rap-req__item-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .evo-rap-req__item-icon svg {
    width: 20px;
    height: 20px;
  }

  .evo-rap-req__check,
  .evo-rap-req__optional {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .evo-rap-req__check {
    width: 23px;
    height: 23px;
  }

  .evo-rap-req__item-copy {
    padding-right: 24px;
  }

  .evo-rap-req__item-copy h4 {
    font-size: 12px;
  }

  .evo-rap-req__item-copy p {
    font-size: 10px;
  }

  .evo-rap-req__panel-footer {
    align-items: flex-start;
    padding: 12px;
    font-size: 9.5px;
  }
}

@media (max-width: 365px) {
  .evo-rap-req__panel-head {
    flex-direction: column;
  }

  .evo-rap-req__level-point b {
    max-width: 63px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evo-rap-req *,
  .evo-rap-req *::before,
  .evo-rap-req *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
