/* page program */

.two-col-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}

.list-holder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.list-holder h4 {
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.list-holder .date-label-holder {
  position: relative;
  padding: 0;
  display: inline-block;
  color: #ffdf00;
}

.list-holder .date-label-holder span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.list-holder .date-label-holder span:nth-child(2) {
  margin: 0 8px;
}

.list-holder .date-label-holder::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-violet);
  transform: skew(-10deg, 0deg);
  z-index: -1;
  animation: reveal 0.6s 200ms forwards; /* Add an animation to gradually reveal the ::after pseudo-element */
}

@keyframes reveal {
  to {
    width: 100%; /* Gradually increase the width to 100% */
  }
}

.list-holder:first-child {
  margin-right: 50px;
}
.list-holder:nth-child(2) {
  margin-right: 50px;
}

.schedule-list {
  width: 100%;
  margin-top: 30px;
}

.schedule-list li {
  position: relative;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.schedule-list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}

.schedule-list .item-name span {
  margin-left: 10px;
}

.schedule-list li:first-child::after {
  display: none;
}

  .pricing .two-col-holder .pricing-points li {
    display: block;
    text-align: center;
  }

.schedule-list li:last-child .item-name span {
  opacity: 0.5;
}

.schedule-list li:last-child .date {
  opacity: 0.5;
}

.schedule-list span,
.schedule-list .date {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.schedule-list:first-child::after {
  background-color: transparent;
}

/* Partner Info Section */
.partner-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 16px 0 16px;
  margin: 0 auto;
}

.partner-info__text {
  position: relative;
  font-family: "PP Formula Narrow" !important;
  color: #fff;
  font-size: 20px !important;
  font-style: italic !important;
  text-align: center !important;
  font-weight: 700 !important;
  line-height: 32px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  width: 100%;
  max-width: none !important;
  padding: 16px 32px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.partner-info__text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #4b29d1;
  transform: translate(-50%, -50%) skew(-10deg, 0deg);
  z-index: -1;
}

.partner-info__highlight {
  color: #ffdf00;
  white-space: nowrap;
}

.partner-info__link {
  text-decoration: underline;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.partner-info__link:hover {
  color: #ffdf00;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .partner-info {
    padding: 60px 16px;
  }

  .partner-info__text {
    padding: 16px !important;
    width: calc(100% + 32px) !important;
    margin: 0 -16px !important;
    background-color: #4b29d1;
  }

  .partner-info__text::after {
    transform: translate(-50%, -50%) skew(0deg, 0deg);
  }
}

@media screen and (max-width: 600px) {
  .partner-info {
    padding: 40px 16px;
  }

  .partner-info__text {
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 16px !important;
    width: calc(100% + 32px) !important;
    margin: 0 -16px !important;
    background-color: #4b29d1;
  }

  .partner-info__text::after {
    display: none;
  }
}

.pricing {
  position: relative;
  padding: 72px 120px;
  margin: 150px auto 180px auto;
  box-sizing: border-box !important;
}

.pricing .holder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box !important;
  width: 100%;
  max-width: 1194px;
  margin: 0 auto;
}

.pricing h3 {
  font-style: italic;
  margin-bottom: 32px;
  font-family: 'PP Formula Narrow';
}

p.pricing-title-description {
  position: relative;
  font-family: "PP Formula Narrow" !important;
  color: #fff;
  font-size: 20px !important;
  font-style: italic !important;
  text-align: center !important;
  font-weight: 700 !important;
  line-height: 32px !important; /* 160% */
  letter-spacing: 2px !important;
  text-transform: uppercase;
  width: 100%;
  max-width: none !important;
  padding: 16px 32px !important;
  box-sizing: border-box !important;
  margin: 0 -16px 32px -16px !important;
}

@media screen and (max-width: 1024px) {
  p.pricing-title-description {
    margin: 0 -16px 40px -16px !important;
  }
}
p.pricing-title-description.advanced {
  font-family: "PP Formula Condensed"!important;
  font-style: normal!important;
  font-weight: 400!important;
  line-height: 32px!important; /* 160% */
  letter-spacing: 2px!important;
  padding: 16px 32px!important;
  max-width: 836px!important;
}

p.pricing-title-description::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #4b29d1;
  transform: translate(-50%, -50%) skew(-10deg, 0deg);
  z-index: -1;
  @media (max-width: 1024px) {
    transform: translate(-50%, -50%) skew(0deg, 0deg);
  }
}

.pricing h4 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing .two-col-holder {
  justify-content: center;
  padding-bottom: 0;
  margin-bottom: 56px;
}

.pricing .col {
  position: relative;
  z-index: 1;
  padding: 40px 64px 32px 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.pricing-points {
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.advanced-options-holder {
  position: relative;
  margin-bottom: 64px;
}
.advanced-options-col-holder {
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 0;
  padding: 32px 64px;
}

.advanced-options-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.advanced-options-col:first-child {
  margin-right: 0;
}
.advanced-options-holder .pricing-points {
  align-items: flex-start;
}

.advanced-options-holder .pricing-points li {
    text-align: left;
    max-width: none;
    width: fit-content;
    max-width: 390px;
}
.advanced-options-holder h4{
  color: #FFF;
  text-align: center;
  font-family: "PP Formula Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
  text-transform: uppercase;
}

.advanced-options-col-holder:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  transform: skew(-2deg, 0deg);
  z-index: -1;
}

.advanced-options-col .price-num {
  margin-top: auto;
}

.pricing-points li {
  color: #fff;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  width: auto;
  margin-bottom: 12px;
  padding-left: 0;
}

.pricing .two-col-holder .pricing-points li {
  display: block;
  text-align: center;
}

.pricing .two-col-holder .pricing-points li::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: #ffdf00;
  display: inline-block;
  position: relative;
  top: -6px;
  left: -8px;
}

.advanced-options-holder .pricing-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.advanced-options-holder .pricing-points__dash {
  width: 10px;
  height: 2px;
  background-color: #ffdf00;
  margin-top: 14px;
  flex-shrink: 0;
}

.advanced-options-holder .pricing-points__text {
  display: block;
}

.pricing .col p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  flex: 1;
}

.pricing .two-col-holder .col.left p {
  font-size: 18px;
}

.pricing .col::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: skew(-2deg, 0deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.pricing .price-num {
  position: relative;
  color: #ffdf00;
  text-align: center;
  font-size: 43px;
  font-weight: 700;
  line-height: 77px;
  text-transform: uppercase;
  font-family: "PP Formula Narrow";
  font-style: normal;
}

.price-num .currency-domestic {
  display: none;
}

.pricing p {
  opacity: 0.8;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  max-width: 630px;
  margin-top: 35px;
}

.pricing .two-col-holder .col.left p {
  text-align: center;
  margin-top: 35px;
}

.pricing::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1c1c1c;
  transform: skew(-1deg, 0deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.program-example {
  position: relative;
  height: auto;
  padding: 0 0 130px 0;
}

.program-example .col.right {
  width: 20%;
}

.program-example .two-col-holder {
  padding-bottom: 0;
}

.program-example .col.left {
  position: relative;
  flex-grow: 1;
  padding-left: 48px;
  padding-bottom: 14px;
}

.program-example .two-col-holder .col.left p {
  margin-top: 5px;
}

.program-example .col.left::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #323232;
  position: absolute;
  top: 0;
  left: 0;
}

.program-example .content-holder {
  position: relative;
  z-index: 100;
  max-width: 50%;
  margin: 0 auto;
}

.program-example .time {
  font-family: "PP Formula Narrow";
  color: #ffdf00;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.program-example h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .pricing::after {
    transform: none;
  }
  .pricing .col::after {
    transform: none;
  }
  .program-example .col.right {
    width: 30%;
  }
  .pricing .two-col-holder .col.left {
    margin-left: 0;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  .two-col-list {
    flex-direction: column;
    padding: 0 16px;
    max-width: none;
    width: auto;
  }
  .list-holder:first-child {
    margin-right: 0;
  }
  .list-holder {
    margin-bottom: 50px;
    width: 100%;
  }
  .list-holder:nth-child(2) {
    margin-right: 0;
  }
  .pricing {
    padding: 0 16px;
    box-sizing: border-box;
    margin: 80px auto 100px auto;
  }

  .pricing h3 {
    white-space: normal;
    width: auto;
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .pricing p {
    font-weight: 400;
  }

  .pricing .pricing-title-description {
    margin: 0 -16px 32px -16px !important;
    padding: 16px !important;
    width: calc(100% + 32px) !important;
    max-width: none !important;
    box-sizing: border-box !important;
    background-color: #4b29d1;
    transform: skew(0deg) !important;
    display: block;
    text-align: center !important;
  }

  .pricing .pricing-title-description::after {
    display: none;
  }

  .pricing .holder {
    margin: 0;
  }
  .pricing::after {
    display: none;
  }
  .pricing .col p {
    max-width: 268px;
    text-align: center;
  }

  .pricing .col::after {
    display: none;
  }

  .pricing .two-col-holder {
    flex-direction: column;
    align-items: center;
  }
  .pricing .col {
    margin-bottom: 30px;
    width: 100%;
    padding: 32px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .pricing .price-num {
    color: #fff;
  }

  .pricing button {
    display: flex;
  }

  .advanced-options-col-holder {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }
  .advanced-options-col {
    width: 100%;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
  }
  .advanced-options-col-holder::after {
    display: none;
  }
  .advanced-options-col .price-num h4 {
    margin-bottom: 8px;
  }

  .pricing-points {
    padding: 20px;
    padding-left: 0;
  }
  .pricing-points li {
    width: 100%;
    padding-left: 0;
  }

  .advanced-options-holder .pricing-points__dash {
    margin-top: 12px;
  }

  .advanced-options-col .pricing-points {
    padding: 20px;
    padding-left: 0;
  }

  .advanced-options-col .pricing-points li {
    padding-left: 0;
  }

  .program-example .content-holder {
    max-width: none;
    margin: 0 16px;
  }
  .program-example .col.left {
    padding-left: 0;
  }
  .program-example .col.left::after {
    display: none;
  }
  .program-example .col.right {
    width: 100%;
  }
  .program-example h4 {
    margin-top: -32px;
  }
  .program-example h3 {
    font-size: 32px;
    font-style: italic;
    line-height: 40px;
    white-space: pre-line;
  }
  .program-example .yt-overlay {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .two-col-list {
    flex-direction: column;
    padding: 0 16px;
  }
  .list-holder:first-child {
    margin-right: 0;
  }
  .list-holder {
    margin-bottom: 50px;
    width: 100%;
  }
  .list-holder:nth-child(2) {
    margin-right: 0;
  }
  .pricing {
    padding: 0 16px;
    box-sizing: border-box;
    margin: 80px auto 100px auto;
  }

  .pricing h3 {
    white-space: normal;
    width: auto;
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .pricing p {
    font-weight: 400;
  }

  .pricing .pricing-title-description {
    margin: 0 -16px 32px -16px !important;
    padding: 16px !important;
    width: calc(100% + 32px) !important;
    max-width: none !important;
    box-sizing: border-box !important;
    background-color: #4b29d1;
    transform: skew(0deg) !important;
    display: block;
    text-align: center !important;
  }

  .pricing .pricing-title-description::after {
    display: none;
  }

  .pricing .holder {
    margin: 0;
  }
  .pricing::after {
    display: none;
  }
  .pricing .col p {
    max-width: 268px;
    text-align: center;
  }

  .pricing .col::after {
    display: none;
  }

  .pricing .two-col-holder {
    flex-direction: column;
    align-items: center;
  }
  .pricing .col {
    margin-bottom: 30px;
    width: 100%;
    padding: 32px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .pricing .price-num {
    color: #fff;
  }

  .pricing button {
    display: flex;
  }

  .advanced-options-col-holder {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }
  .advanced-options-col {
    width: 100%;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
  }
  .advanced-options-col-holder::after {
    display: none;
  }
  .advanced-options-col .price-num h4 {
    margin-bottom: 8px;
  }

  .pricing-points {
    padding: 20px;
    padding-left: 0;
  }
  .pricing-points li {
    width: 100%;
    padding-left: 0;
  }

  .advanced-options-holder .pricing-points__dash {
    margin-top: 12px;
  }

  .advanced-options-col .pricing-points {
    padding: 20px;
    padding-left: 0;
  }

  .advanced-options-col .pricing-points li {
    padding-left: 0;
  }

  .program-example .content-holder {
    max-width: none;
    margin: 0 16px;
  }
  .program-example .col.left {
    padding-left: 0;
  }
  .program-example .col.left::after {
    display: none;
  }
  .program-example .col.right {
    width: 100%;
  }
  .program-example h4 {
    margin-top: -32px;
  }
  .program-example h3 {
    font-size: 32px;
    font-style: italic;
    line-height: 40px;
    white-space: pre-line;
  }
  .program-example .yt-overlay {
    padding: 0;
  }
}

@media screen and (max-width: 600px) {
  .page-program .program-example h3.reveal-text div span {
    padding-right: 5px;
  }
}
