.learning {
  padding: var(--sp) 0;
}

.learning .section-head {
  position: relative;
  z-index: 2;
}

.learning .section-head__title > *[class^=_row-] {
  justify-content: center;
}

.learning .section-head__title ._row-1 {
  justify-content: space-between !important;
}

.learning__body {
  display: flex;
  gap: 32px;
  position: relative;
}

.learning__body:before {
  background: var(--secondary);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 680px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(120px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.learning__cards {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: cards;
  max-height: 454px;
}

.learning__cards .item {
  background: var(--yellow-gray-100);
  position: relative;
  counter-increment: cards;
  color: var(--bg);
  padding: 32px 20px;
  min-height: 100%;
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
}

.learning__cards .item > * {
  opacity: 0.7;
}

.learning__cards .item:before {
  font: 500 var(--h5)/115% var(--heading-font-family);
  content: counter(cards, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
}

.learning__cards .item:after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 16px;
  background: center/contain no-repeat url("../../img/icons/checked-circle.svg");
  position: absolute;
  top: 31px;
  right: 26px;
}

.learning__cards .item h1,
.learning__cards .item h2,
.learning__cards .item h3,
.learning__cards .item h4,
.learning__cards .item h5,
.learning__cards .item h6 {
  font: 500 var(--h5)/115% var(--heading-font-family);
  margin-bottom: 12px;
  opacity: 1;
}

.learning__correlation-wrap {
  flex: 1 1 50%;
}

.correlation {
  background: var(--black-20);
  padding: 24px;
  position: relative;
}

.correlation__head {
  display: flex;
  justify-content: space-between;
}

.correlation__head > div {
  font-weight: 300;
  font-size: 180px;
  line-height: 80%;
  display: flex;
  flex-direction: column;
}

.correlation__head > div:before {
  content: attr(data-title);
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}

.correlation__head > div:after {
  font: 500 var(--h6)/120% var(--heading-font-family);
  content: "%";
}

.correlation__head > div:nth-child(2) {
  color: var(--primary);
  text-align: right;
}

.correlation__body {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.correlation__body:before,
.correlation__body:after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: center/contain no-repeat url("../../img/icons/learning-ship-white.svg");
}

.correlation__body:after {
  background: center/contain no-repeat url("../../img/icons/theory-white.svg");
}

.correlation__indicator {
  flex: 1 1 auto;
  position: relative;
}

.correlation__indicator-circle {
  aspect-ratio: 427/212;
  width: 100%;
  overflow: hidden;
  -webkit-mask: top center/contain no-repeat url(../../img/icons/indicator-mask.svg);
  mask: top center/contain no-repeat url(../../img/icons/indicator-mask.svg);
}

.correlation__indicator-circle-inner {
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(270deg);
  pointer-events: none;
  transition: 1s linear 0s;
}

.correlation__indicator-circle-inner:before,
.correlation__indicator-circle-inner:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--yellow-gray-100);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.correlation__indicator-circle-inner:after {
  background: var(--primary);
  left: auto;
  right: 0;
}

.correlation__indicator-arrow {
  aspect-ratio: 56/238;
  width: 13.11%;
  background: center/contain no-repeat url("../../img/icons/indicator-arrow.svg");
  position: absolute;
  bottom: -14.5%;
  left: 50.3%;
  transform: translateX(-50%) rotate(270deg);
  transform-origin: 50% 87.75%;
  transition: 1s linear 0s;
}

@media (max-width: 1600px) {
  .learning .section-head__title {
    width: 600px !important;
  }

  .learning__body:before {
    width: 586.67px;
  }

  .learning__cards {
    max-height: 428px;
  }

  .correlation__head > div {
    font-size: 150px;
  }
}

@media (max-width: 1260px) {
  .learning .section-head__title ._row-1 {
    justify-content: space-around !important;
  }

  .learning__body:before {
    width: 493.34px;
    filter: blur(120px);
  }

  .learning__body {
    gap: 24px;
    flex-direction: column;
  }

  .learning__cards {
    max-height: initial;
  }

  .learning__cards .item {
    padding: 20px;
    min-height: initial;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }

  .correlation {
    padding: 16px;
  }

  .correlation__head > div {
    font-size: 120px;
  }

  .correlation__head > div {
    font-size: 75px;
  }

  .correlation__head > div:before {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }

  .correlation__body:before,
  .correlation__body:after {
    width: 24px;
  }
}

@media (max-width: 760px) {
  .learning .section-head__title {
    width: 100% !important;
  }

  .learning .section-head__title ._row-1 {
    justify-content: flex-start !important;
  }

  .learning .section-head__title ._row-1 span {
    display: flex;
    width: 100%;
  }

  .learning .section-head__title ._row-1 span:last-child {
    justify-content: center;
    padding-left: 50px;
  }

  .learning__body:before {
    width: 400px;
    filter: blur(70px);
  }

  .learning__body {
    gap: 32px;
    flex-direction: column;
  }

  .learning__body:before {
    left: 0;
  }

  .learning__cards .item {
    padding: 32px 20px;
  }

  .correlation {
    padding: 12px;
  }

  .correlation__head > div {
    font-size: 90px;
  }

  .correlation__head > div {
    font-weight: 300;
    font-size: 180px;
    line-height: 80%;
  }

  .correlation__body {
    gap: 14px;
  }
}

@media (max-width: 760px) and (max-width: 1600px) {
  .correlation__head > div {
    font-size: 150px;
  }
}

@media (max-width: 760px) and (max-width: 1260px) {
  .correlation__head > div {
    font-size: 120px;
  }
}

@media (max-width: 760px) and (max-width: 760px) {
  .correlation__head > div {
    font-size: 90px;
  }
}