.hero {
  --hero-pad: 32px 0 32px;
  --h2-main-fs: 1.4285714286rem;
  --h2-sub-fs: 1.1428571429rem;
  --tagline-fs: 1.0714285714rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--hero-pad);
  background-image: linear-gradient(180deg, #3C004E 0%, #1A002B 71%, #180029 100%);
}
.hero-section {
  position: relative;
  width: min(90vw, 1200px);
}
.hero-info {
  display: grid;
  gap: 24px 5.4%;
}
.hero h1 {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid #FFFA72;
}
.hero h1 img {
  width: min(100%, 45.3571428571rem);
}
.hero h2 {
  margin: 22px 0 0;
  color: #FFFA72;
}
.hero .h2-main {
  font-size: var(--h2-main-fs);
  font-weight: 700;
}
.hero .h2-sub {
  display: block;
  margin: 0.619047619em 0 0;
  color: #FFFA71;
  font-size: var(--h2-sub-fs);
  font-weight: 400;
}
.hero .tagline {
  margin: 0 0 12px;
  font-size: var(--tagline-fs);
  color: #FFFA71;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 2.2857142857rem 0;
}
.hero-buttons {
  display: flex;
  gap: 0 0.8571428571rem;
  margin: 0;
}
@media (min-width: 52rem) {
  .hero {
    --hero-pad: 76px 0 68px;
    --h2-main-fs: min(2.196193265vw, 2.1428571429rem);
    --h2-sub-fs: min(1.6837481698vw, 1.6428571429rem);
    --tagline-fs: min(1.5373352855vw, 1.5rem);
  }
  .hero-info {
    grid-template-columns: 50.7% auto;
  }
  .hero-side {
    gap: 2.8571428571rem 0;
    justify-content: flex-end;
  }
  .hero-buttons {
    justify-content: flex-end;
    gap: 0 1.3571428571rem;
  }
  .hero .button {
    --button-fs: min(1.9033674963vw, 1.8571428571rem);
  }
}
@media (min-width: 960px) {
  .hero-info {
    grid-template-columns: 51.7% auto;
  }
}

.hero-date {
  --date-online-fs: 1.0321428571rem;
  --date-number-fs: 3.7642857143rem;
  --date-unit-day-fs: 2.4285714286rem;
  --date-time-fs: 2.55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.2857142857rem 0;
  color: var(--white);
  line-height: 1;
}
.hero-date p {
  margin: 0;
}
.hero-date p:nth-of-type(2) {
  display: flex;
  align-items: center;
}
.hero-date p:nth-of-type(3) {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-date .date-date {
  display: inline-flex;
  align-items: flex-end;
}
.hero-date .date-online {
  display: block;
  margin: 0 0 0 0.4705882353em;
  padding: 0.6470588235em 0.6470588235em 0.7058823529em;
  font-size: var(--date-online-fs);
  font-weight: bold;
  border: 1px solid var(--white);
  transform: translateY(3px);
}
.hero-date .date-number, .hero-date .date-time {
  font-family: "Oswald", sans-serif;
}
.hero-date .date-number {
  font-size: var(--date-number-fs);
  font-weight: 700;
}
.hero-date .date-unit, .hero-date .date-day {
  font-size: var(--date-unit-day-fs);
}
.hero-date .date-time {
  font-size: var(--date-time-fs);
  font-weight: 400;
}
@media (min-width: 52rem) {
  .hero-date {
    --date-online-fs: min(1.2445095168vw, 1.2142857143rem);
    --date-number-fs: min(6.2225475842vw, 6.0714285714rem);
    --date-unit-day-fs: min(3.8067349927vw, 3.7142857143rem);
    --date-time-fs: min(4.1727672035vw, 4.0714285714rem);
    align-items: flex-end;
  }
}

.button {
  --button-red: #BA0039;
  --button-fs: 1.1428571429rem;
  --button-pad: 0 2em;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 50px;
  padding: var(--button-pad);
  font-size: var(--button-fs);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  background-image: linear-gradient(#FB3163 0%, #BA0038 100%);
  border: 2px solid var(--white);
  border-radius: 3.125em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.26);
  transition: all 0.35s ease-in-out;
}
.button small {
  font-size: 69.2307692308%;
}
.button:hover {
  opacity: 1;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(#ff4d7a 0%, #e00647 100%);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.67);
}
.button:active, .button:focus {
  color: var(--white);
  background-image: linear-gradient(#d11040 0%, #d11040 100%);
}
.button-secondary {
  background-image: linear-gradient(#4E2D64 0%, #27053D 100%);
}
.button-secondary:hover {
  background-image: linear-gradient(#734393 0%, #420b67 100%);
}
.button-secondary:active, .button-secondary:focus {
  color: var(--white);
  background-image: linear-gradient(#402453 0%, #402453 100%);
}
.button-secondary span {
  font-size: inherit;
}
.button-secondary .icon-program {
  width: 1.1923076923em;
  margin-right: 0.2307692308em;
}
@media (min-width: 960px) {
  .button {
    --button-fs: 1.8571428571rem;
    --button-pad: 0.6153846154em 1.4615384615em;
    height: 2.4615384615em;
    border-radius: 1.2307692308em;
  }
}

.icon-program {
  display: inline-block;
  vertical-align: baseline;
  width: 31px;
  height: auto;
  aspect-ratio: 31/32;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.001 32"%3E%3Cpath d="M-5938.707,962H-5949a5.006,5.006,0,0,1-5-5V942a5.006,5.006,0,0,1,5-5h3v-3a1,1,0,0,1,1-1,1,1,0,0,1,1,1v3h9v-3a1,1,0,0,1,1-1,1,1,0,0,1,1,1v3h3a5.005,5.005,0,0,1,5,5v8.341a9.006,9.006,0,0,1,2,5.659,9.01,9.01,0,0,1-9,9A9.017,9.017,0,0,1-5938.707,962Zm-.293-6a7.009,7.009,0,0,0,7,7,7.008,7.008,0,0,0,7-7,7.006,7.006,0,0,0-7-7A7.008,7.008,0,0,0-5939,956Zm-13-14v15a3,3,0,0,0,3,3h8.937a8.948,8.948,0,0,1-.936-4,9.065,9.065,0,0,1,.224-2H-5946a1,1,0,0,1-1-1,1,1,0,0,1,1-1h5.937a9.025,9.025,0,0,1,3.261-3.612A8.969,8.969,0,0,1-5932,947h-14a1,1,0,0,1-1-1,1,1,0,0,1,1-1h14a1,1,0,0,1,1,1,1,1,0,0,1-1,1,8.953,8.953,0,0,1,5,1.514V942a3,3,0,0,0-3-3h-3v1a1,1,0,0,1-1,1,1,1,0,0,1-1-1v-1h-9v1a1,1,0,0,1-1,1,1,1,0,0,1-1-1v-1h-3A3,3,0,0,0-5952,942Zm20,15a1,1,0,0,1-1-1v-4a1,1,0,0,1,1-1,1,1,0,0,1,1,1v3h2a1,1,0,0,1,1,1,1,1,0,0,1-1,1Z" transform="translate(5954 -933.001)" fill="black" /%3E%3C/svg%3E');
  mask-size: cover;
  mask-repeat: no-repeat;
}

.button-submit {
  --button-fs: 1.1428571429rem;
  --button-pad: 15px 32px;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: var(--button-pad);
  font-size: var(--button-fs);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  background-color: var(--hrpro-color);
  border: 1px solid var(--hrpro-color);
  border-radius: 3.125em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.26);
  transition: all 0.35s ease-in-out;
}
.button-submit small {
  font-size: 69.2307692308%;
}
.button-submit:hover {
  opacity: 1;
  color: var(--white);
  background-color: #2857A3;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.37);
}
.button-submit-secondary {
  color: var(--hrpro-color);
  background-color: var(--white);
  border-color: var(--hrpro-color);
}
.button-submit-secondary:hover {
  color: var(--hrpro-color);
  color: #2857A3;
  border-color: #2857A3;
  background-color: var(--white);
}
@media (min-width: 960px) {
  .button-submit {
    --button-fs: 1.4285714286rem;
    --button-pad: 15px 44px;
    border-radius: 1.2307692308em;
  }
}

.speakers {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0 12px;
  margin: 75px 0 0;
  padding: 0;
}
@media (min-width: 768px) {
  .speakers {
    gap: 0 2.8571428571rem;
  }
}

.speaker {
  --speaker-name-fs: 0.8571428571rem;
  --speaker-title-fs: 0.7142857143rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(30%, 260px);
  color: var(--white);
}
.speaker-figure {
  position: relative;
  margin: 0;
}
.speaker-figure:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(198, 0, 91, 0) 0%, rgba(179, 0, 87, 0.33) 45%, #1b0036 100%);
  opacity: 0.4;
}
.speaker-figure img {
  position: relative;
}
.speaker-name {
  margin: 0;
  padding: 1.1428571429em 0.8571428571em 0.8571428571em;
  color: var(--white);
  font-size: var(--speaker-name-fs);
  text-align: center;
  font-weight: 600;
  background-color: #290439;
}
.speaker-title {
  margin: 0;
  padding: 0.8571428571rem 0.7142857143rem;
  font-size: var(--speaker-title-fs);
  line-height: 1.67;
}
.speaker-title b {
  display: block;
  font-size: inherit;
  font-weight: 600;
}
@media (min-width: 768px) {
  .speaker {
    --speaker-name-fs: 1rem;
    --speaker-title-fs: 0.8571428571rem;
  }
  .speaker:before, .speaker:after {
    width: 2px;
  }
  .speaker:before {
    left: -1px;
  }
  .speaker:after {
    right: -1px;
  }
  .speaker-info {
    padding: 16px 10px;
  }
}

.heading {
  --heading-fs: 1.5714285714rem;
  --heading-mar: 0 auto 32px;
  --heading-line-offset: 18px;
  width: max-content;
  margin: var(--heading-mar);
  color: var(--white);
  font-size: var(--heading-fs);
  line-height: 1;
}
.heading.dark {
  color: var(--black);
}
.heading.dark:after {
  background-color: #BA0039;
}
.heading:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: var(--heading-line-offset);
  background-color: var(--white);
}
@media (min-width: 768px) {
  .heading {
    --heading-fs: 2.2857142857rem;
    --heading-mar: 0 0 62px;
    --heading-line-offset: 24px;
  }
  .heading.indent-left {
    margin-left: 70px;
  }
}

.introduction {
  --introduction-pad: 0 7vw;
  --introduction-fs: 1rem;
  position: relative;
  padding: var(--introduction-pad);
}
.introduction-message {
  display: grid;
  gap: 2em 0;
}
.introduction p {
  margin: 0;
  color: var(--white);
  font-size: var(--introduction-fs);
  line-height: 1.72;
}
.introduction strong {
  color: #cb0d44;
  font-size: inherit;
}
@media (min-width: 768px) {
  .introduction {
    --introduction-pad: 0 70px;
    --introduction-fs: 1.2857142857rem;
  }
}

.survey {
  --survey-pad: 36px 5vw;
  --survey-lead-fs: 1rem;
  --heading-fs: 1.3571428571rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 0;
  padding: var(--survey-pad);
  background-image: linear-gradient(#DE0044 0%, #BA0039 32%, #790025 100%);
  border-radius: 8px;
}
.survey-heading, .survey-lead {
  margin: 0;
}
.survey-heading {
  padding: 0.71875em 1.53125em 0.65625em;
  color: var(--white);
  font-size: var(--heading-fs);
  line-height: 1;
  text-shadow: 0 3px 0.375em rgba(0, 0, 0, 0.65);
  background-color: #7D0127;
  border: 1px solid #FC0852;
  border-radius: 1.1875em;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16) inset;
}
.survey-lead {
  font-size: var(--survey-lead-fs);
  text-align: center;
  color: var(--white);
}
@media (min-width: 768px) {
  .survey {
    --survey-pad: 37px 5vw 56px;
    --survey-lead-fs: 1.4285714286rem;
    --heading-fs: 2.2857142857rem;
    gap: 42px 0;
  }
}
@media (min-width: 1200px) {
  .survey {
    --survey-pad: 37px 62px 56px;
  }
}

.books {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .books {
    justify-content: center;
  }
}

.book {
  --book-width: 100%;
  --book-pad: 16px;
  --book-title-fs: 1rem;
  --book-price-fs: 0.7142857143rem;
  --book-author-fs: 1rem;
  --book-price-mar: 4px 0 12px;
  width: var(--book-width);
  display: grid;
  grid-template-columns: 40% auto;
  color: #1A1C2B;
  background-color: #EFEFEF;
}
.book figure {
  margin: 0;
  padding: var(--book-pad);
  background-color: #dedede;
}
.book img {
  width: 100%;
  height: auto;
}
.book-info {
  display: flex;
  flex-direction: column;
  padding: var(--book-pad);
}
.book-title {
  margin: 0;
  color: inherit;
  font-size: var(--book-title-fs);
  line-height: 1.6875;
}
.book-price {
  margin: var(--book-price-mar);
  font-size: var(--book-price-fs);
}
.book-author {
  margin: auto 0 0 0;
  font-size: var(--book-author-fs);
}
.book-author small {
  font-size: 75%;
}
@media (min-width: 640px) {
  .book {
    --book-title-fs: 1.1428571429rem;
    --book-price-fs: 0.8571428571rem;
    --book-author-fs: 1.1428571429rem;
    --book-price-mar: 4px 0 16px;
  }
}
@media (min-width: 768px) {
  .book {
    --book-width: calc(50% - 10px);
    --book-pad: 24px;
  }
}

.schedule {
  padding: 35px 0 0;
}
.schedule .article {
  --article-pad: 0 16px;
  --article-h3-fs: 1.1428571429rem;
  --article-lead-fs: 1rem;
  --artile-p-fs: 0.8571428571rem;
  --article-p-mar: 16px 0 0;
  --article-ul-mar: 14px 0 0;
  padding: var(--article-pad);
  color: #1A1C2B;
  border-left: 1px solid rgba(26, 28, 43, 0.26);
}
.schedule .article h3 {
  margin: 0;
  color: inherit;
  font-size: var(--article-h3-fs);
  font-weight: 600;
  line-height: 1.5;
}
.schedule .article .lead {
  margin-top: 10px;
  color: inherit;
  font-size: var(--article-lead-fs);
  font-weight: 600;
}
.schedule .article ul {
  margin: var(--article-ul-mar);
}
.schedule .article > p:not(.lead) {
  font-size: var(--artile-p-fs);
  line-height: 1.71;
}
@media (min-width: 768px) {
  .schedule {
    padding: 70px 0 0;
  }
  .schedule .article {
    --article-pad: 0 32px;
    --article-h3-fs: 1.5714285714rem;
    --article-lead-fs: 1.1428571429rem;
    --artile-p-fs: 1rem;
    --article-p-mar: 18px 0 0;
    --article-ul-mar: 16px 0 0;
  }
}

.schedule-table {
  --th-pad: 16px 16px;
  --td-pad: 16px 0;
  --time-width: max-content;
  --th-fs: 1.1428571429rem;
  --time-fs: 1.1428571429rem;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #EFEFEF;
  border-radius: var(--border-radius-l);
  overflow: hidden;
}
.schedule-table th {
  padding: var(--th-pad);
  font-size: var(--th-fs);
  line-height: 1;
  font-weight: 600;
  color: var(--white);
}
.schedule-table th:first-of-type {
  width: var(--time-width);
  background-color: #290439;
}
.schedule-table th:last-of-type {
  background-color: #39114A;
}
.schedule-table td {
  padding: var(--td-pad);
}
.schedule-table td:first-of-type {
  padding: var(--th-pad);
  font-size: var(--time-fs);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  vertical-align: top;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .schedule-table {
    --th-pad: 24px 32px;
    --td-pad: 24px 0;
    --time-width: 17.8%;
    --th-fs: 1.2857142857rem;
    --time-fs: 1.4285714286rem;
  }
}

.cards {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
}
.cards li {
  width: 100%;
}
@media (min-width: 640px) {
  .cards li {
    width: fit-content;
  }
}

.card {
  display: grid;
  grid-template-columns: 70px auto;
  color: var(--white);
  background-color: #290439;
  border: 1px solid #290439;
  transition: all 0.35s;
}
.card:hover {
  opacity: 1;
  color: var(--white);
  background-color: #3e0b53;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.26);
}
.card h4 {
  margin: 0 0 10px;
  color: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}
.card p {
  margin: 0;
  font-size: 0.8571428571rem;
  line-height: 1.67;
}
.card figure {
  display: grid;
  align-items: end;
  width: 100%;
  margin: 0;
  background-color: var(--white);
}
.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.card-content {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
}
@media (min-width: 640px) {
  .card {
    grid-template-columns: 90px auto;
  }
}

.card-modal.uk-modal {
  background-color: rgba(3, 10, 34, 0.75);
}
.card-modal .profile-snap {
  display: grid;
  gap: 16px;
  padding: 24px 0 0;
  border-bottom: 1px solid #E2E8F0;
}
.card-modal h3 {
  font-size: 1.2857142857rem;
}
.card-modal p {
  font-size: 1rem;
  line-height: 1.71;
}
.card-modal .img {
  max-width: 150px;
  aspect-ratio: 1;
  margin: 0;
  border: 2px solid #E2E8F0;
  border-radius: 50%;
  overflow: hidden;
}
.card-modal .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  .card-modal .profile-snap {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 24px;
    padding: 24px 0;
  }
  .card-modal h3 {
    font-size: 1.4285714286rem;
  }
}

.overview {
  padding: 35px 0;
  color: var(--white);
}
.overview-note {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 0.8571428571rem;
  line-height: 1.67;
}
@media (min-width: 768px) {
  .overview {
    padding: 70px 0;
  }
}

.overview-insight {
  --os-li-grid: 70px auto;
  --os-h4-fs: 1rem;
  --os-p-fs: 1rem;
  --os-h4-pad: 16px 0;
  --os-p-pad: 16px 0 16px 24px;
  width: min(100%, 910px);
  margin: 0;
  padding: 0;
}
.overview-insight * {
  margin: 0;
  padding: 0;
}
.overview-insight li {
  display: grid;
  grid-template-columns: var(--os-li-grid);
}
.overview-insight h4 {
  padding: var(--os-h4-pad);
  color: inherit;
  font-size: var(--os-h4-fs);
  font-weight: 600;
  line-height: 1.71;
  border-bottom: 1px solid var(--white);
}
.overview-insight p {
  padding: var(--os-p-pad);
  font-size: var(--os-p-fs);
  line-height: 1.71;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  white-space: pre-line;
}
@media (min-width: 768px) {
  .overview-insight {
    --os-li-grid: 150px auto;
    --os-h4-pad: 24px 0;
    --os-p-pad: 24px 0 24px 48px;
  }
}

.entry-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 35px 0;
  color: var(--black);
  background-color: rgba(248, 250, 252, 0.97);
}
.entry-form .section {
  width: min(min(90vw, 860px));
}
.entry-form .heading {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .entry-form {
    padding: 70px 0;
  }
}

.member-login {
  padding: 32px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0px 5px 12px rgba(3, 10, 34, 0.18);
}
.member-login #CmnLogin1Colum {
  padding: 0;
}
.member-login h3 {
  margin-bottom: 30px;
  font-size: 1.1428571429rem;
  line-height: 1.72;
  font-weight: 400;
}
.member-login h3 b {
  font-size: 1.1428571429rem;
}
@media (min-width: 768px) {
  .member-login {
    padding: 42px 70px 22px;
  }
  .member-login h3 {
    font-size: 1.2857142857rem;
  }
  .member-login h3 b {
    font-size: 1.2857142857rem;
  }
}

.signup {
  padding: 60px 0 0;
}
.signup-header {
  margin-bottom: 24px;
}
.signup-header h3 {
  margin-bottom: 20px;
  font-size: 1.2857142857rem;
}
.signup-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.71;
}
.signup-header .help-guide-link {
  display: flex;
  align-items: center;
  gap: 0 9px;
  width: max-content;
  margin-top: 12px;
  color: var(--link);
}
.signup-header .help-guide-link:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 21px;
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.623 21.208"%3E%3Cg id="beginner" transform="translate(-0.5 -0.915)"%3E%3Cpath id="Path_3" data-name="Path 3" d="M7.94,21.6,1.175,14.662A.613.613,0,0,1,1,14.234V2.374a.948.948,0,0,1,1.5-.751L7.932,5.348Z" transform="translate(0 -0.005)" fill="%23faed03"/%3E%3Cpath id="Path_4" data-name="Path 4" d="M12.5,5.318v16.3l6.817-6.942a.611.611,0,0,0,.176-.428V2.411a.956.956,0,0,0-1.522-.746C16.971,2.39,12.88,5.1,12.5,5.318Z" transform="translate(-4.56 -0.019)" fill="%2305ac9c"/%3E%3Cpath id="Path_5" data-name="Path 5" d="M1,2.361V14.433a.929.929,0,0,0,.26.644l6.03,6.262a.929.929,0,0,0,1.354-.016l5.735-6.253a.929.929,0,0,0,.244-.628V2.4a.929.929,0,0,0-1.483-.745L8.146,5.363a.31.31,0,0,1-.364,0L2.466,1.6A.929.929,0,0,0,1,2.361Z" fill="none" stroke="%23030a22" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
}
.signup-panel {
  padding: 24px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0px 5px 24px rgba(3, 10, 34, 0.18);
}
.signup-panel .form-caution {
  width: 100%;
  margin: 28px auto;
  padding: 20px 40px;
  font-weight: 600;
  text-align: center;
  background: #f1f5f9;
}
.signup .entry-status {
  width: min(100%, 400px);
  margin: 0;
  padding: 16px;
  color: #64738B;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background-color: #E2E8F0;
}
@media (min-width: 768px) {
  .signup {
    padding: 70px 0 0;
  }
  .signup h3 {
    margin-bottom: 30px;
  }
  .signup-header {
    margin-bottom: 48px;
  }
  .signup-panel {
    padding: 42px;
  }
  .signup-panel .form-caution {
    width: 80%;
  }
}

.form-table {
  --input-border-color: #64748B;
  --required-width: 26px;
  --input-height: 40px;
  table-layout: fixed;
}
.form-table tr {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  padding: 24px 0;
}
.form-table th,
.form-table td {
  padding: 0;
  color: var(--black);
  font-size: 1rem;
  white-space: normal;
}
.form-table th {
  width: calc(100% - var(--required-width));
}
.form-table td:first-of-type {
  width: var(--required-width);
}
.form-table td:last-of-type {
  width: 100%;
}
.form-table > :first-child > tr:not(:first-child), .form-table > :not(:first-child) > tr, .form-table > tr:not(:first-child) {
  border-top: 1px solid #E2E8F0;
}
.form-table p {
  font-size: 0.8571428571rem;
  line-height: 1.67;
}
.form-table a {
  color: var(--link);
}
.form-table .copy-email {
  display: block;
  margin-top: 16px;
}
.form-table .ZipBtn {
  height: var(--input-height);
  background-color: var(--input-border-color);
}
.form-table .ZipBtn + span {
  display: inline-block;
  margin: 8px 0 0;
}
.form-table .uk-input,
.form-table .uk-select:not([multiple]):not([size]) {
  height: var(--input-height);
  margin: 0;
  padding: 0 16px;
  border-color: var(--input-border-color);
  border-radius: calc(var(--border-radius) / 2);
}
.form-table .uk-input::placeholder,
.form-table .uk-select:not([multiple]):not([size])::placeholder {
  color: #94A3B8;
}
.form-table .uk-input.error,
.form-table .uk-select:not([multiple]):not([size]).error {
  border-color: var(--error);
  background-color: rgba(255, 0, 78, 0.05);
}
.form-table .uk-input:focus,
.form-table .uk-select:focus,
.form-table .uk-textarea:focus {
  background-color: rgba(226, 232, 240, 0.2);
  border-color: #1e87f0;
}
.form-table .uk-select:not([multiple]):not([size]) {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16.971" height="16.971" viewBox="0 0 16.971 16.971"%3E%3Cpath id="Union_2" data-name="Union 2" d="M-284.939-5036.586h-10.666a.666.666,0,0,1-.666-.667.667.667,0,0,1,.666-.667h10v-10a.667.667,0,0,1,.668-.667.667.667,0,0,1,.666.667v10.667a.667.667,0,0,1-.017.15.668.668,0,0,1-.649.516Z" transform="translate(-3351.908 3779.385) rotate(45)" fill="%2364748b"/%3E%3C/svg%3E');
  background-size: 16px 16px;
  background-position: top 12px right 16px;
}
.form-table .note {
  margin: 0 0 12px;
}
.form-table input + .note,
.form-table select + .note,
.form-table label + .note,
.form-table .input-pair + .note {
  margin: 12px 0 0;
}
.form-table .checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-table .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 0 0 0 16px;
}
.form-table .checkbox-label input {
  margin: 0;
}
.form-table input[type=checkbox] {
  flex: none;
  --input-border-color: #64748B;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 1px solid var(--input-border-color);
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}
.form-table input[type=checkbox]:checked {
  background-color: var(--input-border-color);
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12.606" height="9.071" viewBox="0 0 12.606 9.071"%3E%3Cpath id="Union_3" data-name="Union 3" d="M4.243,9.193.707,5.657A1,1,0,0,1,2.121,4.243L4.949,7.071,11.314.707a1,1,0,0,1,1.414,1.414L5.657,9.193a1,1,0,0,1-1.414,0Z" transform="translate(-0.414 -0.414)" fill="%23fff"/%3E%3C/svg%3E');
  background-position: center;
}
.form-table span.error {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: var(--error);
}
.form-table .required {
  display: block;
  width: var(--required-width);
  padding: 3px 0;
  font-size: 0.6428571429rem;
  color: var(--error);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--error);
  border-radius: 4px;
  white-space: nowrap;
}
.form-table .input-pair {
  display: grid;
  gap: 12px 16px;
}
@media (min-width: 640px) {
  .form-table .input-pair {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .form-table {
    --input-height: 46px;
  }
  .form-table tr {
    display: table-row;
  }
  .form-table th,
  .form-table td {
    padding: 24px 0;
    box-sizing: border-box;
  }
  .form-table th {
    width: 23.5824742268%;
    padding-right: 16px;
    vertical-align: baseline;
  }
  .form-table td:last-of-type {
    width: 71.2628865979%;
  }
}

.form-policy {
  padding: 32px 0 0;
}
.form-policy h3 {
  margin-bottom: 24px;
  font-size: 1.1428571429rem;
}
.form-policy .form-policy-content + h3 {
  margin-top: 36px;
}
.form-policy-content {
  padding: 0 0 0 20px;
  font-size: 1rem;
  line-height: 1.71;
  border-left: 2px solid #94A3B8;
}
.form-policy ul {
  list-style: disc;
  padding: 0 0 0 16px;
}
.form-policy a {
  color: var(--link);
}
.form-policy-checkbox {
  padding: 56px 0 32px;
}
.form-policy-checkbox label {
  display: flex;
  align-items: center;
  gap: 0 16px;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.1428571429rem;
}
.form-policy-checkbox input[type=checkbox] {
  flex: none;
  --input-border-color: #64748B;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 1px solid var(--input-border-color);
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}
.form-policy-checkbox input[type=checkbox]:checked {
  background-color: var(--input-border-color);
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12.606" height="9.071" viewBox="0 0 12.606 9.071"%3E%3Cpath id="Union_3" data-name="Union 3" d="M4.243,9.193.707,5.657A1,1,0,0,1,2.121,4.243L4.949,7.071,11.314.707a1,1,0,0,1,1.414,1.414L5.657,9.193a1,1,0,0,1-1.414,0Z" transform="translate(-0.414 -0.414)" fill="%23fff"/%3E%3C/svg%3E');
  background-position: center;
}
.form-policy .error {
  display: block;
  width: fit-content;
  margin: 0 auto 4px;
  color: var(--error);
}
@media (min-width: 768px) {
  .form-policy {
    padding: 62px 0 0;
  }
  .form-policy ul {
    padding: 0 0 0 30px;
  }
}

.form-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  color: var(--white);
}
@media (min-width: 768px) {
  .form-action {
    gap: 24px;
  }
}

.sponsors {
  position: relative;
  padding: 35px 0;
}
.sponsors h2 {
  margin-bottom: 32px;
  color: var(--white);
  font-size: 1.5714285714rem;
  text-align: center;
}
.sponsors ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.sponsors li {
  width: min(25vw, 240px);
}
@media (min-width: 768px) {
  .sponsors {
    padding: 70px 0;
  }
  .sponsors h2 {
    margin-bottom: 62px;
    font-size: 2.2857142857rem;
  }
  .sponsors ul {
    gap: 20px;
  }
}

:root {
  --yellow: #fffa65;
  --white: #ffffff;
  --black: #030a22;
  --red: #BA0039;
  --link: #0014FF;
  --error: #FF004E;
  --hrpro-color: #1D4079;
  --border-radius: 8px;
  --border-radius-l: 16px;
}

html {
  scroll-behavior: smooth;
}

.main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  font-weight: 400;
  background-color: #150029;
}
.main:before {
  content: "";
  position: fixed;
  bottom: -40.0520156047vh;
  right: -19.3265007321vw;
  width: 66.6178623719%;
  aspect-ratio: 1;
  background-image: radial-gradient(closest-side at 50% 50%, rgba(86, 10, 126, 0.4) 0%, rgba(131, 65, 198, 0) 100%);
  pointer-events: none;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) {
  .main {
    padding-top: 0;
  }
}
.section {
  position: relative;
  width: min(90vw, 1000px);
}

.section-auburn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem 0;
  width: 100%;
  padding: 4.5714285714rem 0 0;
}

.apply-mid {
  display: flex;
  justify-content: center;
  gap: 0 0.45em;
  margin: 4rem auto 2rem auto;
  width: min(70%, 300px);
}
@media (min-width: 768px) {
  .apply-mid {
    margin: 7rem auto 2rem;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0 0.45em;
  width: fit-content;
  padding: 0.7em 1.2em;
  color: var(--white);
  font-size: 1.1428571429rem;
  font-weight: 600;
  line-height: 1;
  visibility: hidden;
  opacity: 0;
  background-image: linear-gradient(180deg, #F82E61 0%, #BA0038 100%);
  border: 2px solid var(--white);
  border-radius: 3em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.26);
  transition: all 0.35s;
}
.sticky-cta.is-visible {
  visibility: visible;
  opacity: 1;
}
.sticky-cta:hover {
  opacity: 1;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(#ff4d7a 0%, #e00647 100%);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.67);
}
.sticky-cta:active, .sticky-cta:focus {
  color: var(--white);
  background-image: linear-gradient(#d11040 0%, #d11040 100%);
}
@media (min-width: 768px) {
  .sticky-cta {
    font-size: 1.4285714286rem;
  }
}

.ico-arrow-down:before {
  content: "";
  display: block;
  width: 1.4em;
  aspect-ratio: 1;
  background-color: #9F0031;
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 10"%3E%3Cpath d="M5.143,1.429a1,1,0,0,1,1.715,0l4.234,7.056A1,1,0,0,1,10.234,10H1.766A1,1,0,0,1,.909,8.486Z" transform="translate(12 10) rotate(180)" fill="white"/%3E%3C/svg%3E');
  background-size: 0.6em;
  background-position: center 60%;
  background-repeat: no-repeat;
  border-radius: 50%;
}

#CmnFootMedia {
  position: relative;
  margin: 0;
  padding: 50px 0;
  background-color: #ffffff;
}

#CmnFootMedia + footer {
  position: relative;
}
