@media (max-width: 767px) {
  #step2 .modal-body {
    max-height: none !important;
    overflow-y: visible !important;
  }
}


 .it-header-slim-wrapper a,
      .it-nav-wrapper a {
        color: #fff;
      }

      /* Wizard steps */
      .wizard-steps {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
        counter-reset: step;
      }
      .wizard-steps li {
        flex: 1;
        position: relative;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
        cursor: pointer;
      }
      .wizard-steps li.active,
      .wizard-steps li.completed {
        color: #036;
        font-weight: 600;
      }
      .wizard-steps li::before {
        content: counter(step);
        counter-increment: step;
        display: inline-block;
        margin-right: 0.5rem;
        background: #e9ecef;
        color: #6c757d;
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
        border-radius: 50%;
      }
      .wizard-steps li.active::before,
      .wizard-steps li.completed::before {
        background: #036;
        color: #fff;
      }

      /* Step contents */
      .step-content {
        display: none;
      }
      .step-content.active {
        display: block;
      }

      /* Box header & content */
      .box-header {
        background: #036;
        color: #fff;
        font-weight: 600;
        padding: 0.75rem 1rem;
      }
      .box-content {
        background: #e9f5fc;
        padding: 1rem;
      }