.levels-section {
  padding: 50px 0;
  position: relative; }
  @media (max-width: 992px) {
    .levels-section {
      padding: 25px 0; } }
  .levels-section h2 {
    font-size: var(--typo-title);
    line-height: var(--lh-title);
    font-weight: var(--fw-title);
    letter-spacing: var(--ls-title);
    /* Mobile styles (under 992px) */
    color: var(--white); }
    @media (max-width: 992px) {
      .levels-section h2 {
        font-size: var(--typo-title-m); } }
  .levels-section .levels-wrapper {
    padding: 40px; }
  .levels-section .zk-top {
    margin-bottom: 50px; }
    @media (max-width: 992px) {
      .levels-section .zk-top {
        margin-bottom: 20px; } }
  .levels-section .level-box {
    display: block;
    padding-left: 140px;
    padding-right: 20px;
    position: relative;
    margin-bottom: 40px;
    height: 130px;
    align-content: center;
    border-radius: 40px;
    cursor: pointer; }
    [dir="rtl"] .levels-section .level-box {
      padding-right: null;
      padding-left: 20px; }
    .levels-section .level-box:last-child {
      margin-bottom: 0; }
    .levels-section .level-box .level-number {
      position: absolute;
      left: 30px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: 1px solid var(--primary);
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      font-size: var(--typo-text);
      line-height: var(--lh-text);
      font-weight: var(--fw-text);
      letter-spacing: var(--ls-text);
      /* Mobile styles (under 992px) */
      font-weight: 600;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white); }
      [dir="rtl"] .levels-section .level-box .level-number {
        left: auto;
        right: 30px; }
      @media (max-width: 992px) {
        .levels-section .level-box .level-number {
          font-size: var(--typo-text-m); } }
      .levels-section .level-box .level-number small {
        font-size: var(--typo-small-text);
        line-height: var(--lh-small-text);
        font-weight: var(--fw-small-text);
        letter-spacing: var(--ls-small-text);
        /* Mobile styles (under 992px) */ }
        @media (max-width: 992px) {
          .levels-section .level-box .level-number small {
            font-size: var(--typo-small-text-m); } }
    @media (max-width: 992px) {
      .levels-section .level-box {
        padding: 15px;
        text-align: center;
        height: auto; }
        .levels-section .level-box .level-number {
          position: unset;
          margin: auto;
          transform: unset;
          margin-bottom: 25px; } }
  .levels-section .level-highlight {
    background: var(--primary); }
    .levels-section .level-highlight .level-number {
      border-color: var(--base-black);
      color: var(--base-black); }
    .levels-section .level-highlight.level-highlight h5, .levels-section .level-highlight.level-highlight p {
      color: var(--base-black); }
  .levels-section .level-box h5 {
    font-size: var(--typo-subtitle);
    line-height: var(--lh-subtitle);
    font-weight: var(--fw-subtitle);
    letter-spacing: var(--ls-subtitle);
    /* Mobile styles (under 992px) */
    color: var(--white); }
    @media (max-width: 992px) {
      .levels-section .level-box h5 {
        font-size: var(--typo-subtitle-m); } }
  .levels-section .level-box p {
    margin: 0;
    color: var(--primary);
    font-size: var(--typo-text);
    line-height: var(--lh-text);
    font-weight: var(--fw-text);
    letter-spacing: var(--ls-text);
    /* Mobile styles (under 992px) */ }
    @media (max-width: 992px) {
      .levels-section .level-box p {
        font-size: var(--typo-text-m); } }
  .levels-section .label-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--white);
    border-radius: 30px;
    font-size: var(--typo-text);
    line-height: var(--lh-text);
    font-weight: var(--fw-text);
    letter-spacing: var(--ls-text);
    /* Mobile styles (under 992px) */
    color: var(--white);
    margin-bottom: 20px; }
    @media (max-width: 992px) {
      .levels-section .label-tag {
        font-size: var(--typo-text-m); } }
  @media (max-width: 992px) {
    .levels-section .img-wrap {
      margin-bottom: 10px; } }
  .levels-section .img-wrap .level-image {
    padding: 40px;
    align-content: center;
    place-items: anchor-center;
    height: 100%; }
  .levels-section .img-wrap img {
    max-width: 100%;
    border-radius: 24px;
    max-height: 450px;
    transition: all 0.3s ease; }
  .levels-section .level-nav {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px; }
    [dir="rtl"] .levels-section .level-nav {
      right: auto;
      left: 30px; }
    .levels-section .level-nav .dot {
      width: 2px;
      height: 40px;
      cursor: pointer;
      background: var(--neutral-700);
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s; }
      .levels-section .level-nav .dot.active {
        background: var(--primary); }
  .levels-section .zk-loader {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid var(--neutral-700);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; }
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }
