body {
  background-color: #181a1f;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .journey-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  .social-icons {
    order: 1;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: white;
  flex-wrap: wrap;
  width: 100%;
}


/* Wrapper and popup styles */
.wrapper-mevx {
  position: relative;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 991px) {
  .wrapper-mevx {
    max-width: 570px;
  }
}

.popup-wrapper {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}

.popup-inner {
  display: flex;
  text-align: center;
  gap: 5px;
}

#popup {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  z-index: 100;
  pointer-events: none;
}

#popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

#popup-img {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#popup.show #popup-img {
  opacity: 1;
}

.popup-content {
  background: #1e6cfc;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px 10px 10px;
  width: 360px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.popup-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 20px solid #1e6cfc;
}

.arrow-left {
  width: 14px;
}

@media (max-width: 991px) {
  #popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }

  #popup.show {
    transform: translate(-50%, -50%) scale(1);
  }

  .popup-content {
    width: 270px;
    height: 150px;
  }

  #popup.show #popup-img {
    width: 100%;
    height: 150px;
  }

  .popup-arrow {
    top: 0;
    left: -100px;
    transform: rotate(90deg);
  }
  .arrow-left {
    width: 10px;
  }
}

.day-label {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: transparent;
  position: relative;
  background-image: linear-gradient(
    45deg,
    rgba(30, 108, 252, 1),
    rgba(255, 255, 255, 0.9),
    rgba(0, 0, 0, 0.7)
  );
  background-size: 150% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 2s linear infinite;
  text-shadow: 0 0 5px rgba(30, 108, 252, 0.5);
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes shineText {
  0% {
    background-position: -150% center;
  }
  100% {
    background-position: 150% center;
  }
}

.trigger .day-label {
  color: #fff;
  transition: transform 0.2s ease-in-out;
}

.trigger.hovering .day-label {
  background-image: linear-gradient(to right, #1e6cfc, #1e6cfc);
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .stage-number-day {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
    transform: scale(0.8);
    background-color: rgba(30, 108, 252, 1);
    border-radius: 50%;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
    font-style: italic;
    transition: transform 0.2s ease-in-out;
  }
}

.day-mobile {
  /* color: white; */
  font-size: 15px;
  font-weight: normal;
}

.trigger.hovering .day-mobile {
  transform: scale(1);
}

.trigger.hovering .stage-number-day {
  transform: scale(1);
}

.trigger {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: white;
  cursor: pointer;
  height: fit-content;
  line-height: normal;
  z-index: 10;
}

@media (max-width: 991px) {
  .trigger {
    display: flex;
    align-items: center;
    gap: 18px;
  }
}

.trading-journey {
  background-color: rgba(24, 26, 31, 1);
  display: flex;
  padding-top: 25px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  .trading-journey {
    padding-top: 0;
    width: 390px;
  }
}

.day-1,
.day-2,
.day-3,
.day-4,
.day-5,
.day-6,
.day-7,
.day-8,
.day-9,
.day-10,
.day-11,
.day-12,
.day-13,
.day-14,
.day-15,
.day-16,
.day-17,
.day-18,
.day-19,
.day-20 {
  position: absolute;
  transition: transform 0.2s ease-in-out;
  z-index: 10;
}

.day-1 {
  left: 42%;
  top: 33%;
}
.day-2 {
  left: 55%;
  top: 35.5%;
}
.day-3 {
  left: 69%;
  top: 38.5%;
}
.day-4 {
  left: 56%;
  top: 49.5%;
}
.day-5 {
  left: 40%;
  top: 52%;
}
.day-6 {
  left: 25%;
  top: 55%;
}
.day-7 {
  left: 32%;
  top: 65%;
}
.day-8 {
  left: 44.5%;
  top: 67.5%;
}
.day-9 {
  left: 57%;
  top: 70%;
}
.day-10 {
  left: 69%;
  top: 72.5%;
}
.day-11 {
  left: 57%;
  top: 83%;
}
.day-12 {
  left: 47%;
  top: 85%;
}
.day-13 {
  left: 35%;
  top: 87%;
}
.day-14 {
  left: 23%;
  top: 89%;
}
.day-15 {
  left: 31%;
  top: 99%;
  z-index: 2;
}
.day-16 {
  left: 41%;
  top: 101%;
  z-index: 2;
}
.day-17 {
  left: 52.5%;
  top: 103.5%;
  z-index: 2;
}
.day-18 {
  left: 66%;
  top: 106%;
  z-index: 2;
}
.day-19 {
  left: 61%;
  top: 36%;
}
.day-20 {
  left: 41%;
  top: 36%;
}

@media (max-width: 991px) {
  .day-1 {
    left: 0;
    top: 12.5%;
  }
  .day-2 {
    left: 0;
    top: 16.5%;
  }
  .day-3 {
    left: 0;
    top: 20.5%;
  }
  .day-4 {
    left: 0;
    top: 32%;
  }
  .day-5 {
    left: 0;
    top: 36%;
  }
  .day-6 {
    left: 0;
    top: 40%;
  }
  .day-7 {
    left: 0;
    top: 49%;
  }
  .day-8 {
    left: 0;
    top: 52%;
  }
  .day-9 {
    left: 0;
    top: 55%;
  }
  .day-10 {
    left: 0;
    top: 58%;
  }
  .day-11 {
    left: 0;
    top: 71%;
  }
  .day-12 {
    left: 0;
    top: 74%;
  }
  .day-13 {
    left: 0;
    top: 77%;
  }
  .day-14 {
    left: 0;
    top: 80%;
  }
  .day-15 {
    left: 0;
    top: 90%;
    z-index: 2;
  }
  .day-16 {
    left: 0;
    top: 93%;
    z-index: 2;
  }
  .day-17 {
    left: 0;
    top: 96%;
    z-index: 2;
  }
  .day-18 {
    left: 0;
    top: 99%;
    z-index: 2;
  }
  .day-19 {
    left: 0;
    top: 14%;
  }
  .day-20 {
    left: 0;
    top: 32%;
  }
}

.Vector8,
.Vector81,
.Vector11,
.Vector111,
.Vector14 {
  position: absolute;
}

.Vector8 {
  left: 8%;
  top: 24%;
}
.Vector81 {
  left: 8%;
  top: 41%;
  transform: rotate(122deg);
}
.Vector11 {
  left: 6.5%;
  top: 57.5%;
}
.Vector111 {
  left: 8%;
  top: 74.5%;
  transform: rotate(120deg);
}
.Vector14 {
  left: 10%;
  top: 91.5%;
  z-index: 1;
}

.Vector114,
.Vector112 {
  display: none;
}

@media (max-width: 991px) {
  .Vector8 {
    left: -272px;
    top: 14%;
  }
  .Vector8 svg {
    width: 600px;
    height: 450px;
    transform: rotate(59.5deg);
  }
  .Vector81 {
    left: -272px;
    top: 32.5%;
    transform: rotate(59.5deg);
  }
  .Vector81 svg {
    width: 600px;
    height: 450px;
  }
  .Vector11 {
    left: -272px;
    top: 50.5%;
  }
  .Vector11 svg {
    width: 600px;
    height: 450px;
    transform: rotate(59.5deg);
  }
  .Vector111 {
    left: -272px;
    top: 72%;
    transform: rotate(59.5deg);
  }
  .Vector111 svg {
    width: 600px;
    height: 450px;
  }
  .Vector114 {
    display: block;
    position: absolute;
    z-index: 1;
    left: -272px;
    top: 91%;
    transform: rotate(59.5deg);
  }
  .Vector114 svg {
    width: 600px;
    height: 450px;
  }
  .Vector112 {
    display: block;
    position: absolute;
    z-index: 1;
    left: -30%;
    top: 101%;
    transform: rotate(90deg);
  }
  .Vector112 svg {
    width: 280px;
    height: 250px;
  }
  .Vector14 {
    display: none;
  }
}

.content-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .content-wrapper {
    max-width: 100%;
    min-height: 1120px;
  }
}

.header-social {
  display: flex;
  gap: 30px;
}

.journey-header {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .journey-header {
    max-width: 570px;
    align-items: center;
    gap: 10px;
  }
}

.main-logo {
  aspect-ratio: 4.35;
  object-fit: contain;
  object-position: center;
  width: 183px;
  margin-top: 7px;
  flex-shrink: 0;
  max-width: 100%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .main-logo {
    width: 120px;
    margin-top: 5px;
  }
}

.header-nav {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .header-nav {
    gap: 15px;
  }
}

.text-day {
  display: none;
}

@media (max-width: 991px) {
  .btn-footer {
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 0;
    img {
      width: 12px;
    }
  }
}

@media (max-width: 991px) {
  .text-day {
    display: block;
    font-size: 16px;
    margin: 0;
    font-weight: normal;
  }
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  justify-content: end;
}

.icon:hover path {
  fill: #71aefc;
  transition: fill 0.2s ease;
}

@media (max-width: 991px) {
  .social-icons {
    gap: 3px;
  }
  .icon {
    width: 32px;
    height: 32px;
  }
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 48px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .social-icon {
    width: 30px;
  }
}

.trade-button {
  border-radius: 12px;
  padding: 12px 40px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 21px;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  background: radial-gradient(
    47.94% 41.67% at 50% 100%,
    #71aefc 0%,
    #1e6cfc 100%
  );
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.trade-button:hover {
  background: radial-gradient(
    47.94% 41.67% at 50% 100%,
    #65d3ff 0%,
    #1e6cfc 100%
  );
}

@media (max-width: 991px) {
  .trade-button {
    padding: 8px 20px;
    font-size: 16px;
  }
}

.divider-line {
  aspect-ratio: 500;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 23px;
  max-width: 1200px;
}

@media (max-width: 991px) {
  .divider-line {
    margin-top: 10px;
    max-width: 570px;
  }
}

.journey-banner {
  aspect-ratio: 2.4;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .journey-banner {
    max-width: 570px;
    margin-top: 20px;
  }
}

.stage-section {
  margin-top: 7px;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 991px) {
  .stage-section {
    max-width: 570px;
    margin-top: 0;
    min-height: 800px;
  }
}

.stage-content {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .stage-content {
    flex-direction: column;
    align-items: end;
    min-height: 800px;
    justify-content: start;
    gap: 5px;
  }
}

.stage-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 46%;
  margin-left: 0px;
  z-index: 1;
}

@media (max-width: 991px) {
  .stage-text {
    width: 100%;
    margin-left: 0;
  }
}

.stage-info {
  margin-top: 143px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

@media (max-width: 991px) {
  .stage-info {
    max-width: 100%;
    margin-top: 50px;
    font-size: 16px;
  }
}

.stage-number {
  background-color: rgba(30, 108, 252, 1);
  border-radius: 50%;
  width: 72px;
  padding: 16px;
  font-size: 36px;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  transition: transform 0.2s ease-in-out;
}

.stage-number:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .stage-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
  }
}

.stage-title {
  font-size: 96px;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

@media (max-width: 991px) {
  .stage-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.title-light {
  font-weight: 275;
}

.stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .stage-description {
    max-width: 100%;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 10px;
  }
}

.stage-image {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .stage-image {
    margin-left: 0;
    padding: 0 10px;
  }
}

.stage-img {
  aspect-ratio: 1.2;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 530px;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .stage-img {
    max-width: 100%;
    margin-top: 10px;
  }
}

.beginner-stage {
  margin-top: 200px;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 991px) {
  .beginner-stage {
    margin-top: 380px;
    min-height: 800px;
    max-width: 570px;
  }
}

.stage-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 100%;
  margin-left: 0px;
}

.day-container {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: stretch;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 30px;
  color: rgba(255, 255, 255, 1);
  font-weight: 275;
  line-height: 3;
}

@media (max-width: 991px) {
  .day-container {
    max-width: 100%;
    font-size: 18px;
    margin-top: 10px;
  }
}

.day-label {
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 275;
  font-style: italic;
  padding: 5px;
}

.day-label:first-child {
  align-self: end;
}

@media (max-width: 991px) {
  .day-label {
    font-size: 22px;
  }
}

.day-number {
  font-weight: 900;
}

.day-container .stage-img {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 470px;
  margin-top: -270px;
}

@media (max-width: 991px) {
  .day-container .stage-img {
    max-width: 100%;
    position: relative;
    margin-top: -100px;
  }
}

.stage-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .stage-right {
    width: 100%;
    margin-left: 0;
  }
}

.stage-info-right {
  display: flex;
  margin-top: 9px;
  flex-direction: column;
  align-items: stretch;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 991px) {
  .stage-info-right {
    max-width: 100%;
    margin-top: 0;
  }
}

.stage-background {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0px 0px 0px 0px;
  aspect-ratio: 1.824;
  width: 352px;
  max-width: 100%;
  padding: 173px 70px 0 86px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 275;
  line-height: 3;
}

@media (max-width: 991px) {
  .stage-background {
    padding: 50px 10px 0 10px;
    width: 250px;
    font-size: 20px;
  }
}

.background-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.stage-overlay {
  position: relative;
}

.stage-info-right .stage-number {
  background-color: rgba(30, 108, 252, 1);
  border-radius: 50%;
  align-self: end;
  margin-top: 37px;
  width: 72px;
  padding: 14px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .stage-info-right .stage-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
    margin-top: 10px;
    align-self: start;
    z-index: 1;
  }
}

.stage-text-right {
  display: flex;
  padding-left: 12px;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
  z-index: 1;
}

@media (max-width: 991px) {
  .stage-text-right {
    max-width: 100%;
    padding-left: 0;
    text-align: left;
  }
}

.stage-text-right .stage-title {
  font-size: 96px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 991px) {
  .stage-text-right .stage-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.stage-text-right .stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  align-self: end;
  margin-top: 19px;
}

@media (max-width: 991px) {
  .stage-text-right .stage-description {
    font-size: 14px;
    align-self: normal;
    margin-top: 10px;
  }
}

.middle-section {
  align-self: center;
  display: flex;
  width: 100%;
  max-width: 1200px;
  padding: 93px 0 8px;
  flex-direction: column;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 275;
}

@media (max-width: 991px) {
  .middle-section {
    max-width: 570px;
    padding: 40px 0 0;
    font-size: 18px;
    margin-top: 180px;
    min-height: 800px;
  }
}

.student-section {
  display: flex;
  margin-top: 93px;
  width: 444px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  z-index: 1;
}

@media (max-width: 991px) {
  .student-section {
    margin-top: 40px;
    width: 100%;
  }
}

.student-days {
  align-self: end;
  display: flex;
  width: 228px;
  max-width: 100%;
  flex-direction: column;
  font-size: 30px;
  line-height: 3;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
  .student-days {
    width: 100%;
    font-size: 18px;
  }
}

.student-days .day-label:first-child {
  align-self: end;
}
.student-days .day-label:last-child {
  align-self: start;
}

@media (max-width: 991px) {
  .student-days .day-label:last-child {
  }
}

.student-section .stage-number {
  background-color: rgba(30, 108, 252, 1);
  border-radius: 50%;
  margin-top: 23px;
  width: 72px;
  padding: 13px;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .student-section .stage-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
  }
}

.student-section .stage-title {
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .student-section .stage-title {
    font-size: 40px;
    margin-right: 5px;
  }
}

.student-section .stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  align-self: start;
  margin-top: 19px;
}

@media (max-width: 991px) {
  .student-section .stage-description {
    font-size: 14px;
    margin-top: 10px;
  }
}

.student-section > .day-label {
  font-size: 30px;
  line-height: 3;
  align-self: end;
}

@media (max-width: 991px) {
  .student-section > .day-label {
    font-size: 18px;
  }
}

.student-right {
  align-self: end;
  display: flex;
  margin-top: -541px;
  width: 528px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-size: 30px;
  line-height: 3;
}

@media (max-width: 991px) {
  .student-right {
    width: 100%;
    margin-top: -150px;
    font-size: 18px;
    align-items: end;
  }
}

.student-image-section {
  display: flex;
  padding-left: 40px;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 991px) {
  .student-image-section {
    padding-left: 10px;
  }
}

.student-image-section .day-label {
  align-self: start;
}

@media (max-width: 991px) {
  .student-image-section .day-label {
    margin-left: 5px;
  }
}

.student-image-section .stage-img {
  aspect-ratio: 1.02;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 470px;
  margin-top: 80px;
}

.mobile {
  display: none;
}

@media (max-width: 991px) {
  .student-image-section .stage-img {
    max-width: 100%;
    margin-top: 20px;
    display: none;
  }
  .mobile {
    display: block;
  }
  .student-3 {
    min-height: 800px;
  }
}

.student-right > .day-label {
  align-self: start;
}

@media (max-width: 991px) {
  .student-right > .day-label {
    margin-top: 5px;
  }
}

.day-group {
  align-self: center;
  display: flex;
  margin-top: 49px;
  width: 191px;
  max-width: 100%;
  flex-direction: column;
}

@media (max-width: 991px) {
  .day-group {
    margin-top: 20px;
    width: 100px;
  }
}

.day-group .day-label:first-child {
  align-self: start;
}
.day-group .day-label:last-child {
  align-self: end;
}

@media (max-width: 991px) {
  .day-group .day-label:last-child {
    margin-top: 10px;
  }
}

.practitioner-image {
  aspect-ratio: 0.82;
  object-fit: contain;
  object-position: center;
  max-width: 450px;
  z-index: 10;
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 991px) {
  .practitioner-image {
    margin-top: 200px;
    position: relative;
  }
}

.practitioner-section {
  align-self: end;
  display: flex;
  margin-top: -340px;
  width: 644px;
  max-width: 100%;
  flex-direction: column;
  align-items: end;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 991px) {
  .practitioner-section {
    min-height: 800px;
    margin-top: 0;
    text-align: left;
    align-items: start;
    width: 100%;
  }
}

.practitioner-section .stage-number {
  background-color: rgba(30, 108, 252, 1);
  border-radius: 50%;
  width: 72px;
  padding: 14px;
  font-size: 36px;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .practitioner-section .stage-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
  }
}

.practitioner-section .stage-title {
  font-size: 96px;
  line-height: 1;
}

@media (max-width: 991px) {
  .practitioner-section .stage-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.practitioner-section .stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  margin-top: 19px;
}

@media (max-width: 991px) {
  .practitioner-section .stage-description {
    font-size: 14px;
    margin-top: 10px;
  }
}

.practitioner-days {
  align-self: end;
  z-index: 10;
  display: flex;
  margin-top: 49px;
  width: 488px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-size: 30px;
  line-height: 3;
}

@media (max-width: 991px) {
  .practitioner-days {
    width: 100%;
    margin-top: 0;
    font-size: 18px;
    align-items: end;
  }
}

.practitioner-days .day-label {
  align-self: start;
}

@media (max-width: 991px) {
  .practitioner-days .day-label {
    margin-left: 5px;
    align-self: end;
  }
}

.practitioner-days .stage-img {
  aspect-ratio: 1.02;
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-width: 470px;
  margin-top: 65px;
}

@media (max-width: 991px) {
  .practitioner-days .stage-img {
    margin-top: 20px;
    position: relative;
  }
}

.trader-section {
  display: flex;
  margin-top: -350px;
  width: 526px;
  max-width: 100%;
  flex-direction: column;
  align-items: start;
  z-index: 1;
}

@media (max-width: 991px) {
  .trader-section {
    margin-top: 0;
    min-height: 800px;
    width: 100%;
  }
}

.trader-days {
  align-self: end;
  display: flex;
  width: 323px;
  max-width: 100%;
  flex-direction: column;
  font-size: 30px;
  line-height: 3;
}

@media (max-width: 991px) {
  .trader-days {
    width: 100%;
    font-size: 18px;
  }
}

.trader-days .day-label:first-child {
  align-self: end;
}
.trader-days .day-label:nth-child(2) {
  align-self: center;
}
.trader-days .day-label:last-child {
  align-self: start;
}

@media (max-width: 991px) {
  .trader-days .day-label:nth-child(2) {
    margin-top: 10px;
  }
}

.trader-section .stage-number {
  background-color: rgba(30, 108, 252, 1);
  border-radius: 50%;
  margin-top: 8px;
  width: 72px;
  padding: 13px;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .trader-section .stage-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
  }
}

.trader-section .stage-title {
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 991px) {
  .trader-section .stage-title {
    font-size: 40px;
  }
}

.trader-section .stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .trader-section .stage-description {
    font-size: 14px;
    margin-top: 10px;
  }
}

.trader-section > .day-label {
  font-size: 30px;
  align-self: end;
}

@media (max-width: 991px) {
  .trader-section > .day-label {
    font-size: 18px;
  }
}

.final-section {
  display: flex;
  margin-top: 40px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .final-section {
    max-width: 100%;
    margin-top: 0;
  }
}

.final-section > .day-label:first-child,
.final-section > .day-label:nth-child(2),
.final-section > .day-label:nth-child(3) {
  color: rgba(255, 255, 255, 1);
  font-size: 30px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 275;
}

.final-section > .day-label:first-child {
  line-height: 3;
}

@media (max-width: 991px) {
  .final-section > .day-label:first-child,
  .final-section > .day-label:nth-child(2),
  .final-section > .day-label:nth-child(3) {
    font-size: 18px;
  }
}

.master-container {
  display: flex;
  flex-direction: column;
  border-radius: 47px;
  position: relative;
  margin-top: 240px;
  width: 100%;
  padding: 82px 80px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .master-container {
    max-width: 100%;
    padding: 30px 10px;
    margin-top: 60px;
  }
}

.master-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-position: center;
}

@media (max-width: 991px) {
  .master-background {
    width: auto;
    inset: unset;
  }
}

.master-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 991px) {
  .master-content {
    max-width: 570px;
  }
}

.master-header {
  align-self: center;
  display: flex;
  width: 652px;
  max-width: 100%;
  flex-direction: column;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

@media (max-width: 991px) {
  .master-header {
    width: 100%;
    max-width: 100%;
  }
}

.master-header .stage-title {
  font-size: 96px;
  line-height: 1;
  align-self: start;
}

@media (max-width: 991px) {
  .master-header .stage-title {
    max-width: 100%;
    font-size: 40px;
    align-self: center;
  }
}

.master-header .stage-description {
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  align-self: end;
  margin-top: 16px;
  margin-right: 35px;
}

@media (max-width: 991px) {
  .master-header .stage-description {
    font-size: 14px;
    margin: 0;
    align-self: center;
  }
}

.footer-number {
  z-index: 2;
  position: absolute;
  left: 80%;
  top: 20%;
}

@media (max-width: 991px) {
  .footer-number {
    left: 0%;
    top: -10%;
  }
}

.master-number {
  background-color: rgba(189, 30, 45, 1);
  border-radius: 50%;
  align-self: end;
  margin-top: 7px;
  width: 72px;
  padding: 13px;
  font-size: 36px;
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .master-number {
    width: 38px;
    height: 38px;
    padding: 10px;
    font-size: 24px;
    margin-top: 32px;
  }
}

.master-days {
  align-self: center;
  display: flex;
  width: 307px;
  max-width: 100%;
  align-items: stretch;
  gap: 20px;
  font-size: 30px;
  font-weight: 275;
  line-height: 3;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .master-days {
    width: 200px;
    gap: 10px;
    font-size: 18px;
  }
}

.content-divider {
  aspect-ratio: 500;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 200px;
}

@media (max-width: 991px) {
  .content-divider {
    max-width: 100%;
    margin-top: 280px;
  }
}

.download-section {
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .download-section {
    max-width: 100%;
    margin-right: 2px;
    margin-top: 20px;
  }
}

.download-content {
  gap: 90px;
  display: flex;
}

@media (max-width: 991px) {
  .download-content {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

.download-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 25%;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .download-left {
    width: 100%;
    padding: 0 10px;
  }
}

.platform-info {
  text-align: center;
  border-radius: 32px;
  background-color: rgba(24, 26, 31, 1);
  flex-grow: 1;
  padding: 46px 33px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
  text-transform: uppercase;
  width: 100%;
}

@media (max-width: 991px) {
  .platform-info {
    padding: 20px 10px;
    font-size: 12px;
    width: 89%;
    margin: 10px;
  }
}

.platform-logo {
  aspect-ratio: 4.35;
  object-fit: contain;
  object-position: center;
  width: 183px;
}

@media (max-width: 991px) {
  .platform-logo {
    width: 120px;
    margin-right: 2px;
  }
}

.platform-text {
  margin-top: 13px;
}

@media (max-width: 991px) {
  .platform-text {
    margin-top: 5px;
  }
}

.download-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 75%;
}

@media (max-width: 991px) {
  .download-right {
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }
}

.download-form {
  border-radius: 32px;
  background-color: rgba(24, 26, 31, 1);
  display: flex;
  flex-grow: 1;
  padding: 27px 35px;
  align-items: center;
  font-weight: 300;
  width: 90%;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .download-form {
    padding: 15px 10px;
    margin: 0 10px;
    width: auto;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .form-text {
    max-width: 100%;
    text-align: center;
  }
}

.form-title {
  color: rgba(255, 255, 255, 1);
  font-size: 34px;
  font-family: Kanit, -apple-system, Roboto, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 991px) {
  .form-title {
    max-width: 100%;
    font-size: 18px;
    margin-right: 0;
  }
}

.form-subtitle {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(113, 174, 252, 1);
  margin-top: 11px;
  padding: 20px 27px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  color: rgba(55, 59, 72, 1);
  width: 90%;
}

@media (max-width: 991px) {
  .form-subtitle {
    padding: 10px;
    font-size: 14px;
    width: 70%;
  }
}

.form-divider {
  aspect-ratio: 0.02;
  object-fit: contain;
  object-position: center;
  width: 2px;
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .form-divider {
    display: none;
  }
}

.download-button {
  aspect-ratio: 0.97;
  object-fit: contain;
  object-position: center;
  width: 102px;
  border-radius: 12px;
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
  max-width: 100%;
}

@media (max-width: 991px) {
  .download-button {
    width: 80px;
    margin-top: 10px;
  }
}

.footer-divider {
  aspect-ratio: 500;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 41px;
}

@media (max-width: 991px) {
  .footer-divider {
    max-width: 100%;
    margin-top: 20px;
  }
}

.copyright {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  align-self: center;
  margin-top: 58px;
}

@media (max-width: 991px) {
  .copyright {
    margin-top: 20px;
    font-size: 14px;
  }
}

.copyright a {
  text-decoration: underline;
  color: inherit;
}
