#curriculumEsl .tit-banner .content .image {
  position: relative;
  bottom: -80px;
  width: 59.3%;
}

.esl-intro {
  background-color: #fdf7ff;
}

.esl-intro .content-title h2 span {
  color: #9d4dd0;
}

.esl-intro .road-map {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/325;
  position: relative;
}

.esl-intro .road-map .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  animation-duration: 1.5s;
}

.esl-intro .road-map .obj {
  position: absolute;
}

.esl-intro .road-map .obj img {
  margin: 0 auto;
}

.esl-intro .road-map .rhyme {
  left: 7.01%;
  top: 0.18%;
}

.esl-intro .road-map .genius {
  left: 25.97%;
  top: 16.18%;
}

.esl-intro .road-map .talk {
  left: 45%;
  top: 0.18%;
}

.esl-intro .road-map .sound {
  left: 63.03%;
  top: 16.18%;
}

.esl-intro .road-map .read {
  left: 80.79%;
  top: 0.18%;
}

.esl-intro .road-map p {
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  color: var(--color-mute);
  margin-top: 5px;
  white-space: nowrap;
}

.esl-intro .road-map .top-text {
  font-size: var(--font-size-default);
  font-weight: 600;
  margin: 0 0 15px 0;
}

.esl-intro .road-map .obj {
  width: 13.71%;
}

.esl-method .method-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.esl-method .method-wrap h2 {
  font-size: var(--f70);
}

.esl-method .desc-box {
  background-color: #fafafa;
  padding: 70px 100px;
  border-radius: 30px;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  column-gap: 90px;
}

.esl-method .desc-box .text-wrap .text ~ .text {
  margin-top: 50px;
}

.esl-method .desc-box .text-wrap .text h5 {
  font-weight: 700;
}

.esl-method .desc-box .text-wrap .text h5 span {
  letter-spacing: -0.4px;
}

.esl-method .desc-box .text-wrap .text p {
  margin-top: 8px;
  color: var(--color-mute);
}

.esl-acquisition {
  background-color: #fafafa;
}

.esl-acquisition .content-title h2 {
  font-size: var(--f50);
}

.esl-acquisition .content-title .tit {
  color: #9d4dd0;
  font-size: var(--f70);
}

.esl-acquisition .content {
  display: flex;
  position: relative;
}

.esl-acquisition .obj {
  position: relative;
  width: 100%;
  max-width: 41.66%;
  height: auto;
  aspect-ratio: 13/15;
}

.esl-acquisition .obj img {
  position: absolute;
}

.esl-acquisition .text div {
  position: absolute;
  padding: 0 30px;
  height: 65px;
  border-radius: 0 50px 50px 50px;
  display: flex;
  align-items: center;
  width: -webkit-fill-available;
}

.esl-acquisition .text div p {
  font-family: "gulim", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.esl-acquisition .text .step5 {
  top: 1.6268%;
  background-color: #00b0a7;
}

.esl-acquisition .text .step4 {
  top: 18.36%;
  background-color: #5d9bd3;
}

.esl-acquisition .text .step3 {
  top: 36.6%;
  background-color: #9c60a4;
}

.esl-acquisition .text .step2 {
  top: 54.17%;
  background-color: #ec7067;
}

.esl-acquisition .text .step1 {
  top: 72.52%;
  background-color: #f18900;
}

.scroll-event[data-scroll="move-right"] {
  animation: move-right 1.2s ease forwards;
  opacity: 0;
}

@keyframes move-right {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #curriculumEsl .tit-banner .content .image {
    bottom: -20px;
  }

  .esl-intro .road-map .dot {
    display: none;
  }

  .esl-intro .road-map .obj-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .esl-intro .road-map .obj {
    position: static;
    width: calc((100% - 40px) / 3);
    background-color: #fff;
    border-radius: 30px;
    padding: 40px 0;
  }

  .esl-intro .road-map .obj img {
    max-width: 130px;
  }

  .esl-intro .road-map .top-text {
    font-family: "gulim", sans-serif;
    margin: 0 0 10px 0;
  }

  .esl-intro .road-map .rhyme .top-text {
    color: var(--rhyme-color);
  }

  .esl-intro .road-map .genius .top-text {
    color: var(--genius-color);
  }

  .esl-intro .road-map .talk .top-text {
    color: var(--talk-color);
  }

  .esl-intro .road-map .sound .top-text {
    color: var(--sound-color);
  }

  .esl-intro .road-map .read .top-text {
    color: var(--read-color);
  }

  .esl-method .method-wrap {
    flex-direction: column;
  }

  .esl-method .method-wrap .content-title * {
    text-align: center;
  }

  .esl-method .desc-box {
    padding: 50px;
    margin-top: 60px;
    flex-direction: column;
  }

  .esl-method .desc-box .text-wrap .text ~ .text,
  .esl-method .desc-box .text-wrap ~ .text-wrap {
    margin-top: 35px;
  }

  .esl-acquisition .obj {
    max-width: 55%;
  }

  .esl-acquisition .text div {
    height: 60px;
  }

  .esl-acquisition .text div p {
    font-size: 0.8rem;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  #curriculumEsl .tit-banner .content .image {
    position: static;
    width: 100%;
  }

  .esl-intro .road-map .dot {
    display: none;
  }

  .esl-intro .road-map .obj-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .esl-intro .road-map .obj {
    position: static;
    width: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 35px 0;
  }

  .esl-intro .road-map .obj img {
    max-width: 130px;
  }

  .esl-intro .road-map .top-text {
    font-size: 18px;
    font-family: "gulim", sans-serif;
    margin: 0 0 10px 0;
  }

  .esl-intro .road-map .rhyme .top-text {
    color: var(--rhyme-color);
  }

  .esl-intro .road-map .genius .top-text {
    color: var(--genius-color);
  }

  .esl-intro .road-map .talk .top-text {
    color: var(--talk-color);
  }

  .esl-intro .road-map .sound .top-text {
    color: var(--sound-color);
  }

  .esl-intro .road-map .read .top-text {
    color: var(--read-color);
  }

  .esl-method .method-wrap {
    flex-direction: column;
  }

  .esl-method .method-wrap .content-title * {
    text-align: center;
  }

  .esl-method .desc-box {
    padding: 40px;
    margin-top: 50px;
    flex-direction: column;
  }

  .esl-method .desc-box .text-wrap .text ~ .text,
  .esl-method .desc-box .text-wrap ~ .text-wrap {
    margin-top: 25px;
  }

  .esl-method .desc-box .text-wrap .text p {
    margin-top: 5px;
  }

  .esl-acquisition .content-title h2 {
    font-size: 20px;
  }

  .esl-acquisition .content {
    flex-direction: column;
  }

  .esl-acquisition .obj {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .esl-acquisition .obj img:nth-child(2) {
    display: none;
  }

  .esl-acquisition .text div {
    position: static;
    margin-top: 15px;
    padding: 20px;
    height: auto;
    border-radius: 20px;
  }
}
