Build your perfect startup

Whatever your goal - we will get your there.

Image Description

Try it free for 7 days starting at $59

              
                <!-- Hero Section -->
                <div class="container position-relative z-index-4 space-top-2 space-top-md-4 space-top-lg-3">
                  <div class="row justify-content-lg-between align-items-lg-center">
                    <div class="col-md-10 col-lg-5 mb-9 mb-lg-0">
                      <div class="mb-7">
                        <h1 class="display-4 mb-4">Build your perfect startup</h1>
                        <p class="lead">Whatever your goal - we will get your there.</p>
                      </div>

                      <img class="img-fluid" src="../../assets/svg/illustrations/we-are-in-office-1.svg" alt="Image Description">
                    </div>

                    <div class="col-lg-6">
                      <!-- Form -->
                      <form class="js-validate card shadow-lg">
                        <div class="card-header bg-light text-center py-4 px-5 px-md-6">
                          <h2 class="h4 mb-0">Try it free for 7 days <span class="text-body font-size-1 font-weight-bold">starting at $59</span></h2>
                        </div>

                        <div class="card-body p-4 p-md-6">
                          <div class="row">
                            <div class="col-sm-6 mb-3">
                              <!-- Form Group -->
                              <div class="js-form-message form-group">
                                <label for="firstName" class="input-label">First name</label>
                                <input type="text" class="form-control" name="firstName" id="firstName" placeholder="Nataly" aria-label="Nataly" required
                                       data-msg="Please enter first your name">
                              </div>
                              <!-- End Form Group -->
                            </div>

                            <div class="col-sm-6 mb-3">
                              <!-- Form Group -->
                              <div class="js-form-message form-group">
                                <label for="lastName" class="input-label">Last name</label>
                                <input type="text" class="form-control" name="lastName" id="lastName" placeholder="Gaga" aria-label="Gaga" required
                                       data-msg="Please enter last your name">
                              </div>
                              <!-- End Form Group -->
                            </div>

                            <div class="col-sm-12 mb-3">
                              <!-- Form Group -->
                              <div class="js-form-message form-group">
                                <label for="emailAddress" class="input-label">Email address</label>
                                <input type="email" class="form-control" name="emailAddress" id="emailAddress" placeholder="nayagaga@pixeel.com" aria-label="alex@pixeel.com" required
                                       data-msg="Please enter a valid email address">
                              </div>
                              <!-- End Form Group -->
                            </div>

                            <div class="col-sm-6 mb-3">
                              <!-- Form Group -->
                              <div class="js-form-message form-group">
                                <label for="password" class="input-label">Password</label>
                                <input type="text" class="form-control" name="passowrd" id="password" placeholder="*********" aria-label="*********" required
                                       data-msg="Your password is invalid. Please try again">
                              </div>
                              <!-- End Form Group -->
                            </div>

                            <div class="col-sm-6 mb-3">
                              <!-- Form Group -->
                              <div class="js-form-message form-group">
                                <label for="confirmPassword" class="input-label">Confirm password</label>
                                <input type="text" class="form-control" name="confirmPassword" id="confirmPassword" placeholder="*********" aria-label="*********" required
                                       data-msg="Password does not match the confirm password">
                              </div>
                              <!-- End Form Group -->
                            </div>
                          </div>

                          <!-- Checkbox -->
                          <div class="js-form-message mb-5">
                            <div class="custom-control custom-checkbox d-flex align-items-center text-muted">
                              <input type="checkbox" class="custom-control-input" id="termsCheckbox" name="termsCheckbox" required
                                     data-msg="Please accept our Terms and Conditions.">
                              <label class="custom-control-label" for="termsCheckbox">
                                <small>
                                  I agree to the
                                  <a class="link-underline" href="#">Terms and Conditions</a>
                                </small>
                              </label>
                            </div>
                          </div>
                          <!-- End Checkbox -->

                          <button type="submit" class="btn btn-block btn-primary transition-3d-hover">
                            Claim your free trial
                            <i class="fas fa-angle-right fa-sm ml-1"></i>
                          </button>
                        </div>
                      </form>
                      <!-- End Form -->
                    </div>
                  </div>
                </div>
                <!-- End Hero Section -->
              
            
              
                <!-- JS Implementing Plugins -->
                <script src="../../assets/vendor/jquery-validation/dist/jquery.validate.min.js"></script>

                <!-- JS Front -->
                <script src="../../assets/js/hs.validation.js"></script>

                <!-- JS Plugins Init. -->
                <script>
                  $(document).on('ready', function () {
                    // initialization of form validation
                    $('.js-validate').each(function() {
                      $.HSCore.components.HSValidation.init($(this));
                    });
                  });
                </script>