.learnJourneyOuter {
  height: 400vh;
  position: sticky !important;
  top: 0rem !important;
  transition: filter 0.3s ease-in-out;
}

.StudentLearnJourney {
  background-color: black;
  color: white;
  height: 110vh;
  padding: 7rem 10vw 1rem;
  overflow: auto;

  position: sticky;
  top: 0rem;
}

.sectionHeadingBig_white {
  color: white;
  text-align: center;
  margin-bottom: 1.25rem;
}

.sectionParagrah_white {
  color: #999;
  text-align: center;
  margin-bottom: 12rem;
}

/* -------------------------------------- */

.SvgMotionSection {
  position: relative;
  top: -3.5rem;
}

.StudentJourneyContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}

.plane {
  position: absolute;
  transform: translate(-50%, -50%);
}

.plane img {
  transform: rotate(30deg);
}

.SvgPinPoint {
  position: absolute;

  width: 0.75rem;
  height: 0.75rem;
  background-color: #00ebd4;
  border-radius: 50%;
}

.SvgPinPoint::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  background-image: url("/homepage/assets/img/location.svg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  top: -3.5rem;
  left: -1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--rotation, -50deg));
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out;
}

#SvgPinPointA {
  left: 15%;
  bottom: 0%;
  transition: opacity 0.3s ease-in-out;
}

#SvgPinPointB {
  left: 38%;
  top: 5%;
  transition: opacity 0.3s ease-in-out;
}

#SvgPinPointC {
  left: 66%;
  top: 21%;
  transition: opacity 0.3s ease-in-out;
}

#SvgPinPointD {
  right: 15%;
  top: 48%;
  transition: opacity 0.3s ease-in-out;
}

.dotstart {
  width: 1rem;
  height: 1rem;
  display: inline-block;

  aspect-ratio: 1;
  border-radius: 50%;

  position: absolute;
  top: 14rem;

  background: linear-gradient(0deg,
      rgba(255, 188, 15, 1) 0%,
      rgba(255, 233, 157, 1) 100%);
}

.SvgPinPointContent {
  width: 200px;
  text-align: left;
}

.SvgPinPointContent h3 {
  color: var(--text-white, #fff);

  /* Web/Title */
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 1.65rem */
  letter-spacing: -0.03125rem;
}

.SvgPinPointContent p {
  color: var(--text-secondary-dark, #999);

  /* Web/Footnote */
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 1.21875rem */
  letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Body,
      -0.02813rem);
}

.SvgPinPointContent_A {
  position: relative;
  top: -1.8rem;
}

.SvgPinPointContent_B {
  position: relative;
  top: -1.3rem;
  left: -2rem;
}

.SvgPinPointContent_C {
  position: relative;
  top: -5rem;
  left: 2.7rem;
}

.SvgPinPointContent_D {
  position: relative;
  top: -3rem;
  left: 2rem;
}

.brightText {
  color: var(--text-white, #fff);
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 1.21875rem */
  letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Body,
      -0.02813rem);
}

.webSvgPath {
  display: block;
}

.mobileSvgPath {
  display: none;
}

@media (max-height: 600px) {
  .SvgMotionSection {
    top: -13rem !important;
    transform: scale(0.7) !important;
  }
}

@media screen and (width <=1370px) {
  .SvgMotionSection {
    position: relative;
    top: -7rem;
    transform: scale(0.9);
  }
}

@media screen and (width <=700px) {
  .webSvgPath {
    display: none;
  }

  .mobileSvgPath {
    display: block;
  }

  /* ------------- pins  */

  #SvgPinPointA {
    left: 2%;
    top: 10%;
    transition: opacity 0.3s ease-in-out;
  }

  #SvgPinPointB {
    left: 95%;
    top: 23%;
    transition: opacity 0.3s ease-in-out;
  }

  #SvgPinPointC {
    top: 60%;
    left: 0%;
    transition: opacity 0.3s ease-in-out;
  }

  #SvgPinPointD {
    right: 45%;
    top: 78%;
    transition: opacity 0.3s ease-in-out;
  }

  .dotstart {
    width: 1rem;
    height: 1rem;
    display: inline-block;

    aspect-ratio: 1;
    border-radius: 50%;

    position: absolute;
    top: -1%;
    left: 50%;

    background: linear-gradient(0deg,
        rgba(255, 188, 15, 1) 0%,
        rgba(255, 233, 157, 1) 100%);
  }

  .SvgPinPointContent {
    width: 200px;
    text-align: left;
  }

  .SvgPinPointContent h3 {
    color: var(--text-white, #fff);

    /* Web/Title */
    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    /* 1.65rem */
    letter-spacing: -0.03125rem;
  }

  .SvgPinPointContent p {
    color: var(--text-secondary-dark, #999);

    /* Web/Footnote */
    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 1.21875rem */
    letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Body,
        -0.02813rem);
  }

  .SvgPinPointContent_A {
    position: relative;
    top: -11rem;
    left: 2.4rem;
  }

  .SvgPinPointContent_B {
    position: relative;
    top: -12rem;
    left: -7rem;
  }

  .SvgPinPointContent_C {
    position: relative;
    top: -4.5rem;
    left: 2.7rem;
  }

  .SvgPinPointContent_D {
    position: relative;
    top: -1rem;
    left: -6rem;
  }

  .learnJourneyOuter {
    height: 450vh;
  }

  .StudentLearnJourney {
    height: 100vh;
    overflow: hidden;
  }


  .sectionHeadingBig_white {
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 2.4rem;
    width: 90vw;
  }
}


@media screen and (width <=430px) {
  .sectionHeadingBig_white {
    font-size: 2rem;
  }

  .StudentLearnJourney {
    height: 130vh;
  }



  .sectionParagrah_white {
    margin-bottom: 10rem;
  }

  .SvgMotionSection {
    position: relative;
    top: -7rem;
    transform: scale(0.75);
  }
}