From cc21d6238207c2f948b5458238dd7352a825800a Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 25 Jun 2021 18:21:49 +0300 Subject: [PATCH] refactor: erase unused sections --- .../attention-catchers/notifications.html | 1024 ---- sections/elements/button-groups.html | 1212 ----- sections/elements/social-buttons.html | 1098 ----- sections/elements/tables.html | 2132 -------- sections/input-areas/contact-sections.html | 2630 ---------- sections/input-areas/newsletters.html | 1010 ---- sections/page-sections/applications.html | 2867 ----------- sections/page-sections/blog-posts.html | 3133 ------------ sections/page-sections/call-to-actions.html | 1616 ------- sections/page-sections/content-sections.html | 2284 --------- sections/page-sections/faq.html | 1040 ---- sections/page-sections/footers.html | 3342 ------------- sections/page-sections/general-cards.html | 1803 ------- sections/page-sections/logo-areas.html | 1422 ------ sections/page-sections/pricing.html | 4287 ----------------- sections/page-sections/stats.html | 1125 ----- sections/page-sections/teams.html | 2296 --------- sections/page-sections/testimonials.html | 3345 ------------- 18 files changed, 37666 deletions(-) delete mode 100644 sections/attention-catchers/notifications.html delete mode 100644 sections/elements/button-groups.html delete mode 100644 sections/elements/social-buttons.html delete mode 100644 sections/elements/tables.html delete mode 100644 sections/input-areas/contact-sections.html delete mode 100644 sections/input-areas/newsletters.html delete mode 100644 sections/page-sections/applications.html delete mode 100644 sections/page-sections/blog-posts.html delete mode 100644 sections/page-sections/call-to-actions.html delete mode 100644 sections/page-sections/content-sections.html delete mode 100644 sections/page-sections/faq.html delete mode 100644 sections/page-sections/footers.html delete mode 100644 sections/page-sections/general-cards.html delete mode 100644 sections/page-sections/logo-areas.html delete mode 100644 sections/page-sections/pricing.html delete mode 100644 sections/page-sections/stats.html delete mode 100644 sections/page-sections/teams.html delete mode 100644 sections/page-sections/testimonials.html diff --git a/sections/attention-catchers/notifications.html b/sections/attention-catchers/notifications.html deleted file mode 100644 index 808a4ab0..00000000 --- a/sections/attention-catchers/notifications.html +++ /dev/null @@ -1,1024 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Notifications

-
- -
-
-
-
-

Toast Basic

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<div class="container">
-  <div class="row">
-    <div class="col-6 mx-auto mt-7">
-      <div class="toast fade show p-2 mx-auto" role="alert" aria-live="assertive" aria-atomic="true">
-        <div class="toast-header border-0">
-          <i class="ni ni-diamond me-2"></i>
-          <span class="me-auto font-weight-bold">Soft UI Design</span>
-          <small class="text-body">11 mins ago</small>
-          <i class="fas fa-times text-md ms-3 cursor-pointer" data-bs-dismiss="toast" aria-label="Close"></i>
-        </div>
-        <hr class="horizontal dark m-0">
-        <div class="toast-body">
-          Hello, world! This is a notification message.
-        </div>
-      </div>
-    </div>
-</div>
-
-
-
-
-
-
-
-
-
-

Toast Message

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<div class="container">
-  <div class="row">
-    <div class="col-6 mt-8 pt-3 mx-auto">
-      <div class="toast fade show d-flex align-items-center justify-content-between bg-gradient-primary border-0 pe-2 mx-auto" role="alert" aria-live="assertive" aria-atomic="true">
-        <div class="toast-body text-white">
-          Hello, world! This is a notification message.
-        </div>
-        <i class="fas fa-times text-md cursor-pointer pe-2 text-white" data-bs-dismiss="toast" aria-label="Close"></i>
-      </div>
-    </div>
-  </div>
-</div>
-
-
-
-
-
-
-
-
-
-

Toast with Actions

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<div class="container">
-  <div class="row">
-    <div class="col-6 mx-auto">
-      <div class="toast fade show p-2 mx-auto mt-7" role="alert" aria-live="assertive" aria-atomic="true">
-        <div class="toast-body text-center">
-          Hello, world! This is a toast message.
-          <hr class="horizontal dark">
-          <div class="d-flex justify-content-center">
-            <button type="button" class="btn bg-gradient-primary btn-sm me-2 mb-0">Take action</button>
-            <button type="button" class="btn bg-gradient-secondary btn-sm mb-0" data-bs-dismiss="toast">Close</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</div>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/elements/button-groups.html b/sections/elements/button-groups.html deleted file mode 100644 index a14da71e..00000000 --- a/sections/elements/button-groups.html +++ /dev/null @@ -1,1212 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Button Groups

-
- -
-
-
-
-

Button Groups Simple

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 mt-3">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-6 mx-auto">
-        <div class="btn-group" role="group" aria-label="Basic example">
-          <button type="button" class="btn btn-primary">Left</button>
-          <button type="button" class="btn btn-primary">Middle</button>
-          <button type="button" class="btn btn-primary">Right</button>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Button Groups Outline

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 mt-3">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-6 mx-auto">
-        <div class="btn-group" role="group" aria-label="Basic example">
-          <button type="button" class="btn btn-outline-dark">Left</button>
-          <button type="button" class="btn btn-outline-dark">Middle</button>
-          <button type="button" class="btn btn-outline-dark">Right</button>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Button Groups Checkbox

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 mt-3">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-6 mx-auto">
-        <div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
-          <input type="checkbox" class="btn-check" id="btncheck1" autocomplete="off">
-          <label class="btn btn-outline-dark" for="btncheck1">Checkbox 1</label>
-
-          <input type="checkbox" class="btn-check" id="btncheck2" autocomplete="off">
-          <label class="btn btn-outline-dark" for="btncheck2">Checkbox 2</label>
-
-          <input type="checkbox" class="btn-check" id="btncheck3" autocomplete="off">
-          <label class="btn btn-outline-dark" for="btncheck3">Checkbox 3</label>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Button Groups Radio

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 mt-3">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-6 mx-auto">
-        <div class="btn-group" role="group" aria-label="Basic radio toggle button group">
-          <input type="radio" class="btn-check" name="btnradio" id="btnradio1" autocomplete="off" checked>
-          <label class="btn btn-outline-dark" for="btnradio1">Radio 1</label>
-
-          <input type="radio" class="btn-check" name="btnradio" id="btnradio2" autocomplete="off">
-          <label class="btn btn-outline-dark" for="btnradio2">Radio 2</label>
-
-          <input type="radio" class="btn-check" name="btnradio" id="btnradio3" autocomplete="off">
-          <label class="btn btn-outline-dark" for="btnradio3">Radio 3</label>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Button Groups Sizing

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-6 mt-2">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="btn-group btn-group-lg" role="group" aria-label="Basic example">
-          <button type="button" class="btn btn-primary">Left</button>
-          <button type="button" class="btn btn-primary">Middle</button>
-          <button type="button" class="btn btn-primary">Right</button>
-        </div>
-
-        <div class="btn-group" role="group" aria-label="Basic example">
-          <button type="button" class="btn btn-primary">Left</button>
-          <button type="button" class="btn btn-primary">Middle</button>
-          <button type="button" class="btn btn-primary">Right</button>
-        </div>
-
-        <div class="btn-group btn-group-sm" role="group" aria-label="Basic example">
-          <button type="button" class="btn btn-primary">Left</button>
-          <button type="button" class="btn btn-primary">Middle</button>
-          <button type="button" class="btn btn-primary">Right</button>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/elements/social-buttons.html b/sections/elements/social-buttons.html deleted file mode 100644 index fafac71b..00000000 --- a/sections/elements/social-buttons.html +++ /dev/null @@ -1,1098 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Social Buttons

-
- -
-
-
-
-

Social Buttons

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-12 mx-auto">
-        <button type="button" class="btn-icon btn btn-facebook">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-facebook"></i></span>
-          <span class="btn-inner--text">Facebook</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-twitter">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-twitter"></i></span>
-          <span class="btn-inner--text">Twitter</span>
-        </button>
-        <button type="button" class="btn-instagram btn-icon btn">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-instagram"></i></span>
-          <span class="btn-inner--text">Instagram</span>
-        </button>
-        <button type="button" class="btn-github btn-icon btn">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-github"></i></span>
-          <span class="btn-inner--text">Github</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-pinterest">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-pinterest"></i></span>
-          <span class="btn-inner--text">Pinterest</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-youtube">
-          <span class="btn-inner--icon"><i class="fab fa-youtube"></i></span>
-          <span class="btn-inner--text">Youtube</span>
-        </button>
-        <button type="button" class="btn btn-vimeo btn-icon">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-vimeo-v"></i></span>
-          <span class="btn-inner--text">Vimeo</span>
-        </button>
-        <button type="button" class="btn-slack btn btn-icon">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-slack"></i></span>
-          <span class="btn-inner--text">Slack</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-dribbble">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-dribbble"></i></span>
-          <span class="btn-inner--text">Dribbble</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-reddit">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-reddit"></i></span>
-          <span class="btn-inner--text">Reddit</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-tumblr">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-tumblr"></i></span>
-          <span class="btn-inner--text">Tumblr</span>
-        </button>
-        <button type="button" class="btn-icon btn btn-linkedin">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-linkedin"></i></span>
-          <span class="btn-inner--text">LinkedIn</span>
-        </button>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Social Buttons Icon Only

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 mt-3">
-  <div class="container">
-    <div class="row justify-space-between text-center py-2">
-      <div class="col-12 mx-auto">
-        <button type="button" class="btn btn-icon-only btn-facebook">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-facebook"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-twitter">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-twitter"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-instagram">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-instagram"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-github">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-github"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-pinterest">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-pinterest"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-youtube">
-          <span class="btn-inner--icon"><i class="fab fa-youtube"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-vimeo">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-vimeo-v"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-slack">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-slack"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-dribbble">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-dribbble"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-reddit">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-reddit"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-tumblr">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-tumblr"></i></span>
-        </button>
-        <button type="button" class="btn btn-icon-only btn-linkedin">
-          <span class="btn-inner--icon mr-1"><i class="fab fa-linkedin"></i></span>
-        </button>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/elements/tables.html b/sections/elements/tables.html deleted file mode 100644 index 55158e5b..00000000 --- a/sections/elements/tables.html +++ /dev/null @@ -1,2132 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Tables

-
- -
-
-
-
-

Table 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="pt-5">
-  <div class="container">
-    <div class="row justify-content-center">
-      <div class="col-12 text-center">
-        <h2 class="text-gradient text-primary text-center">Compare Features</h2>
-        <p class="lead mb-5">Join the world&#39;s largest developer community</p>
-      </div>
-      <div class="col-lg-10">
-        <div class="table-responsive">
-          <table class="table table-pricing">
-            <thead class="text-light">
-              <tr>
-                <th class="ps-2">
-                  <h6 class="mb-0">Space individual</h6>
-                </th>
-                <th class="text-center">
-                  <h6 class="font-weight-bold">Team</h6>
-                  <h5 class="font-weight-bolder text-darker mb-0">$39</h5>
-                </th>
-                <th class="text-center">
-                  <h6 class="font-weight-bold">Growth</h6>
-                  <h5 class="font-weight-bolder text-darker mb-0">$79</h5>
-                </th>
-                <th class="text-center">
-                  <h6 class="font-weight-bold">Enterprise</h6>
-                  <h5 class="font-weight-bolder text-darker mb-0">$99</h5>
-                </th>
-              </tr>
-            </thead>
-            <tbody>
-              <tr>
-                <td class="py-3">
-                  <span class="text-xs">Community support</span>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-              </tr>
-              <tr>
-                <td class="py-3">
-                    <span class="text-xs">100+ Example Pages</span>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-              </tr>
-              <tr>
-                <td class="py-3">
-                  <span class="text-xs">50+ Section Examples</span>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-              </tr>
-              <tr>
-                <td class="py-3">
-                  <span class="text-xs">Multiple use</span>
-                </td>
-                <td class="text-center py-3">
-
-                </td>
-                <td class="text-center py-3">
-                  <span class="text-xs">
-                    upon request
-                  </span>
-                </td>
-                <td class="text-center py-3">
-                  <span class="text-xs">
-                    upon request
-                  </span>
-                </td>
-              </tr>
-              <tr>
-                <th class="pt-4 pb-2 ps-2">
-                  <h6 class="mb-0">Developer tools</h6>
-                </th>
-                <th></th>
-                <th></th>
-                <th></th>
-              </tr>
-              <tr>
-                <td class="py-3">
-                  <span class="text-xs">Custom messages</span>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-minus text-secondary text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-              </tr>
-              <tr>
-                <td class="py-3">
-                  <span class="text-xs">Multiple requests</span>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-minus text-secondary text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-minus text-secondary text-xs"></i>
-                </td>
-                <td class="text-center py-3">
-                  <i class="fas fa-check text-success text-xs"></i>
-                </td>
-              </tr>
-              <tr>
-                <th class="border-bottom-0"></th>
-                <th class="text-center align-items-center border-bottom-0">
-                  <a href="javascript:;" class="btn btn-dark mt-3">Choose Plan</a>
-                </th>
-                <th class="text-center align-items-center border-bottom-0">
-                  <a href="javascript:;" class="btn btn-dark mt-3">Choose Plan</a>
-                </th>
-                <th class="text-center align-items-center border-bottom-0">
-                  <a href="javascript:;" class="btn bg-gradient-primary mt-3">Choose Plan</a>
-                </th>
-              </tr>
-            </tbody>
-          </table>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Table 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="pt-5 mt-5">
-  <div class="container">
-    <div class="row justify-content-center">
-      <div class="col-lg-10">
-        <div class="card">
-          <div class="table-responsive">
-            <table class="table align-items-center mb-0">
-              <thead>
-                <tr>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Author</th>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Function</th>
-                  <th class="text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Technology</th>
-                  <th class="text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Employed</th>
-                  <th class="text-secondary opacity-7"></th>
-                </tr>
-              </thead>
-              <tbody>
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-2.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">John Michael</h6>
-                        <p class="text-xs text-secondary mb-0">john@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Manager</p>
-                    <p class="text-xs text-secondary mb-0">Organization</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-success">Online</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">23/04/18</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="javascript:;" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-3.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">Alexa Liras</h6>
-                        <p class="text-xs text-secondary mb-0">alexa@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Programator</p>
-                    <p class="text-xs text-secondary mb-0">Developer</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-secondary">Offline</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">11/01/19</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="#!" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-4.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">Laurent Perrier</h6>
-                        <p class="text-xs text-secondary mb-0">laurent@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Executive</p>
-                    <p class="text-xs text-secondary mb-0">Projects</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-success">Online</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">19/09/17</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="#!" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-3.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">Michael Levi</h6>
-                        <p class="text-xs text-secondary mb-0">michael@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Programator</p>
-                    <p class="text-xs text-secondary mb-0">Developer</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-success">Online</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">24/12/08</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="#!" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-2.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">Richard Gran</h6>
-                        <p class="text-xs text-secondary mb-0">richard@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Manager</p>
-                    <p class="text-xs text-secondary mb-0">Executive</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-secondary">Offline</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">04/10/21</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="#!" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2 py-1">
-                      <div>
-                        <img src="../../assets/img/team-4.jpg" class="avatar avatar-sm me-3">
-                      </div>
-                      <div class="d-flex flex-column justify-content-center">
-                        <h6 class="mb-0 text-xs">Miriam Eric</h6>
-                        <p class="text-xs text-secondary mb-0">miriam@creative-tim.com</p>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">Programtor</p>
-                    <p class="text-xs text-secondary mb-0">Developer</p>
-                  </td>
-                  <td class="align-middle text-center text-sm">
-                    <span class="badge badge-sm badge-secondary">Offline</span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <span class="text-secondary text-xs font-weight-bold">14/09/20</span>
-                  </td>
-                  <td class="align-middle">
-                    <a href="#!" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user">
-                      Edit
-                    </a>
-                  </td>
-                </tr>
-              </tbody>
-            </table>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Table 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="pt-5 mt-5">
-  <div class="container">
-    <div class="row justify-content-center">
-      <div class="col-lg-10">
-        <div class="card">
-          <div class="table-responsive">
-            <table class="table align-items-center mb-0">
-              <thead>
-                <tr>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Project</th>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Budget</th>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th>
-                  <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Completion</th>
-                  <th></th>
-                </tr>
-              </thead>
-              <tbody>
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-spotify.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Spotify</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$2,500</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-info"></i>
-                      <span class="text-dark text-xs">working</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">60%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-info" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-invision.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Invision</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$5,000</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-success"></i>
-                      <span class="text-dark text-xs">done</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">100%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-jira.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Jira</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$3,400</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-danger"></i>
-                      <span class="text-dark text-xs">canceled</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">30%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-danger" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="30" style="width: 30%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-slack.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Slack</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$1,000</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-danger"></i>
-                      <span class="text-dark text-xs">canceled</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">0%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-success" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="0" style="width: 0%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-webdev.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Webdev</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$14,000</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-info"></i>
-                      <span class="text-dark text-xs">working</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">80%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 80%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-                <tr>
-                  <td>
-                    <div class="d-flex px-2">
-                      <div>
-                        <img src="../../assets/img/logos/small-logos/logo-xd.svg" class="avatar avatar-sm rounded-circle me-2">
-                      </div>
-                      <div class="my-auto">
-                        <h6 class="mb-0 text-xs">Adobe XD</h6>
-                      </div>
-                    </div>
-                  </td>
-                  <td>
-                    <p class="text-xs font-weight-bold mb-0">$2,300</p>
-                  </td>
-                  <td>
-                    <span class="badge badge-dot me-4">
-                      <i class="bg-success"></i>
-                      <span class="text-dark text-xs">done</span>
-                    </span>
-                  </td>
-                  <td class="align-middle text-center">
-                    <div class="d-flex align-items-center">
-                      <span class="me-2 text-xs">100%</span>
-                      <div>
-                        <div class="progress">
-                          <div class="progress-bar bg-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;"></div>
-                        </div>
-                      </div>
-                    </div>
-                  </td>
-
-                  <td class="align-middle">
-                    <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false">
-                      <i class="fa fa-ellipsis-v text-xs"></i>
-                    </button>
-                  </td>
-                </tr>
-
-              </tbody>
-            </table>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/input-areas/contact-sections.html b/sections/input-areas/contact-sections.html deleted file mode 100644 index 0bd7b08f..00000000 --- a/sections/input-areas/contact-sections.html +++ /dev/null @@ -1,2630 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Contact Sections

-
- -
-
-
-
-

Contact us 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row align-items-center">
-      <div class="col-lg-8 mx-auto text-center">
-        <div class="ms-3 mb-md-5">
-          <div class="icon icon-shape bg-gradient-info shadow text-center mb-4">
-            <i class="fas fa-user"></i>
-          </div>
-          <h3>Contact us</h3>
-          <p>
-            For further questions, including partnership opportunities, please email hello@creative-tim.com
-            or contact using our contact form.
-          </p>
-        </div>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-8 mx-auto">
-        <div class="card card-plain">
-          <form id="contact-form" method="post" autocomplete="off">
-            <div class="card-body">
-              <div class="row">
-                <div class="col-md-6">
-                  <label>First Name</label>
-                  <div class="input-group mb-4">
-                    <input class="form-control" placeholder="eg. Michael" aria-label="First Name..." type="text">
-                  </div>
-                </div>
-                <div class="col-md-6 ps-2">
-                  <label>Last Name</label>
-                  <div class="input-group">
-                    <input type="text" class="form-control" placeholder="eg. Jordan" aria-label="Last Name...">
-                  </div>
-                </div>
-              </div>
-              <div class="mb-4">
-                <label>Company</label>
-                <div class="input-group">
-                  <input type="text" class="form-control" placeholder="eg. Apple Inc.">
-                </div>
-              </div>
-              <div class="mb-4">
-                <label>Email Address</label>
-                <div class="input-group">
-                  <input type="email" class="form-control" placeholder="eg. michael@creative-tim.com">
-                </div>
-              </div>
-              <div class="mb-4">
-                <label>Phone Number</label>
-                <div class="input-group mb-3">
-                  <select class="input-group-text" id="inputGroupSelect01">
-                    <option selected>RU</option>
-                    <option value="1">EN</option>
-                    <option value="2">US</option>
-                    <option value="3">AR</option>
-                  </select>
-                  <input type="number" class="form-control ps-3" aria-label="Phone Number" placeholder="+(1111) 32322 11">
-                </div>
-              </div>
-              <div class="form-group mb-4">
-                <label>Your message</label>
-                <textarea name="message" class="form-control" placeholder="Type here" id="message" rows="6"></textarea>
-              </div>
-              <div class="row">
-                <div class="col-md-6">
-                  <div class="form-check form-switch mb-4">
-                    <input class="form-check-input" type="checkbox" id="flexSwitchCheckDefault" checked="">
-                    <label class="form-check-label" for="flexSwitchCheckDefault">I agree to the <a href="javascript:;" class="text-dark"><u>Terms and Conditions</u></a>.</label>
-                  </div>
-                </div>
-                <div class="col-md-12">
-                  <button type="submit" class="btn bg-gradient-info w-100">Send Message</button>
-                </div>
-              </div>
-            </div>
-          </form>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-10 bg-gradient-dark position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-0 h-100 z-index-1 opacity-6">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <div class="container position-relative z-index-1">
-    <div class="row">
-      <div class="col-lg-6 col-md-12 d-flex justify-content-center flex-column">
-        <h2 class="text-white">Get in Touch</h2>
-        <p class="lead pe-5 text-white opacity-8 z-index-1">You need more information? Check what other persons are saying about our product. They are very happy with their purchase.</p>
-        <p class="mt-4 text-white opacity-8 z-index-1">730 Dyonisie Wolf <br> Bucharest, RO 010458</p>
-        <div class="d-flex p-2 text-white opacity-8">
-          <div>
-            <i class="fas fa-phone text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span class="text-sm">(+40) 772 100 200</span>
-          </div>
-        </div>
-        <div class="d-flex p-2 text-white opacity-8">
-          <div>
-            <i class="fas fa-envelope text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span class="text-sm">hello@creative-tim.com</span>
-          </div>
-        </div>
-        <div class="d-flex p-2 text-white opacity-8">
-          <div>
-            <i class="fas fa-ticket-alt text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span class="text-sm">Open Support Ticket</span>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6">
-        <div class="card mt-5 mt-lg-0">
-          <form id="contact-form" method="post" autocomplete="off">
-            <div class="card-body">
-              <div class="row">
-                <div class="col-md-6">
-                  <label>First name</label>
-                  <div class="input-group mb-4">
-                    <input class="form-control" placeholder="eg. William" aria-label="First Name..." type="text">
-                  </div>
-                </div>
-                <div class="col-md-6 ps-2">
-                  <label>Last name</label>
-                  <div class="input-group mb-4">
-                    <input type="text" class="form-control" placeholder="eg. Smith" aria-label="Last Name...">
-                  </div>
-                </div>
-              </div>
-              <div>
-                <label>Email address</label>
-                <div class="input-group">
-                  <input type="email" class="form-control" placeholder="will@creative-tim.com">
-                </div>
-              </div>
-              <div class="form-group mt-4">
-                <label>Your message</label>
-                <textarea name="message" class="form-control" placeholder="Type here" id="message" rows="3"></textarea>
-              </div>
-              <div class="row">
-                <div class="col-md-8">
-                  <div class="form-check form-switch mb-2">
-                    <input class="form-check-input" type="checkbox" id="flexSwitchCheckDefault" checked="">
-                    <label class="form-check-label" for="flexSwitchCheckDefault">I agree to the <a href="javascript:;" class="text-dark text-underline">Terms and Conditions</a>.</label>
-                  </div>
-                </div>
-                <div class="col-md-12">
-                  <button type="submit" class="btn bg-gradient-info mt-3">Submit</button>
-                </div>
-              </div>
-            </div>
-          </form>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 bg-cover position-relative" style="background-image: url(&#39;../../assets/img/curved-images/curved1.jpg&#39;)">
-  <div class="mask bg-gradient-dark"></div>
-  <div class="container position-relative z-index-2">
-    <div class="row">
-      <div class="col-lg-5 my-auto">
-        <h2 class="text-white">Get in Touch</h2>
-        <p class="text-white text-lg mb-lg-5">You need more information? Check what other persons are saying about our product. They are very happy with their purchase.</p>
-        <div class="p-3 d-flex">
-          <div class="icon">
-            <svg width="30px" height="35px" viewBox="0 0 45 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-              <title>map-big</title>
-              <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                <g transform="translate(-2321.000000, -593.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                  <g transform="translate(1716.000000, 291.000000)">
-                    <g id="map-big" transform="translate(605.000000, 302.000000)">
-                      <polygon points="31.875 0.71625 24.375 4.46625 24.375 40.53375 31.875 36.78375"></polygon>
-                      <polygon points="20.625 4.46625 13.125 0.71625 13.125 36.78375 20.625 40.53375"></polygon>
-                      <path d="M9.375,0.81375 L0.909375,5.893125 C0.346875,6.230625 0,6.84 0,7.5 L0,43.125 L9.375,37.06125 L9.375,0.81375 Z" opacity="0.70186942"></path>
-                      <path d="M44.090625,5.893125 L35.625,0.81375 L35.625,37.06125 L45,43.125 L45,7.5 C45,6.84 44.653125,6.230625 44.090625,5.893125 Z" opacity="0.70186942"></path>
-                    </g>
-                  </g>
-                </g>
-              </g>
-            </svg>
-          </div>
-          <div class="ms-5">
-            <h5 class="text-white">Find us at the office</h5>
-            <p class="text-white text-sm"> Bld Mihail Kogalniceanu, nr. 8,<br>
-              7652 Bucharest,<br>
-              Romania
-            </p>
-          </div>
-        </div>
-        <div class="p-3 d-flex">
-          <div class="icon">
-            <?xml version="1.0" encoding="UTF-8"?>
-            <svg width="30px" height="35px" viewBox="0 0 42 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-              <title>time-alarm</title>
-              <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                <g transform="translate(-2319.000000, -440.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                  <g transform="translate(1716.000000, 291.000000)">
-                    <g id="time-alarm" transform="translate(603.000000, 149.000000)">
-                      <path
-                        d="M18.8086957,4.70034783 C15.3814926,0.343541521 9.0713063,-0.410050841 4.7145,3.01715217 C0.357693695,6.44435519 -0.395898667,12.7545415 3.03130435,17.1113478 C5.53738466,10.3360568 11.6337901,5.54042955 18.8086957,4.70034783 L18.8086957,4.70034783 Z"
-                        opacity="0.6"></path>
-                      <path
-                        d="M38.9686957,17.1113478 C42.3958987,12.7545415 41.6423063,6.44435519 37.2855,3.01715217 C32.9286937,-0.410050841 26.6185074,0.343541521 23.1913043,4.70034783 C30.3662099,5.54042955 36.4626153,10.3360568 38.9686957,17.1113478 Z"
-                        opacity="0.6"></path>
-                      <path
-                        d="M34.3815652,34.7668696 C40.2057958,27.7073059 39.5440671,17.3375603 32.869743,11.0755718 C26.1954189,4.81358341 15.8045811,4.81358341 9.13025701,11.0755718 C2.45593289,17.3375603 1.79420418,27.7073059 7.61843478,34.7668696 L3.9753913,40.0506522 C3.58549114,40.5871271 3.51710058,41.2928217 3.79673036,41.8941824 C4.07636014,42.4955431 4.66004722,42.8980248 5.32153275,42.9456105 C5.98301828,42.9931963 6.61830436,42.6784048 6.98113043,42.1232609 L10.2744783,37.3434783 C16.5555112,42.3298213 25.4444888,42.3298213 31.7255217,37.3434783 L35.0188696,42.1196087 C35.6014207,42.9211577 36.7169135,43.1118605 37.53266,42.5493622 C38.3484064,41.9868639 38.5667083,40.8764423 38.0246087,40.047 L34.3815652,34.7668696 Z M30.1304348,25.5652174 L21,25.5652174 C20.49574,25.5652174 20.0869565,25.1564339 20.0869565,24.6521739 L20.0869565,15.5217391 C20.0869565,15.0174791 20.49574,14.6086957 21,14.6086957 C21.50426,14.6086957 21.9130435,15.0174791 21.9130435,15.5217391 L21.9130435,23.7391304 L30.1304348,23.7391304 C30.6346948,23.7391304 31.0434783,24.1479139 31.0434783,24.6521739 C31.0434783,25.1564339 30.6346948,25.5652174 30.1304348,25.5652174 Z"
-                       ></path>
-                    </g>
-                  </g>
-                </g>
-              </g>
-            </svg>
-          </div>
-          <div class="ms-5">
-            <h5 class="text-white">Give us a ring</h5>
-            <p class="text-white text-sm"> Michael Jordan<br>
-              +40 762 321 762<br>
-              Mon - Fri, 8:00-22:00
-            </p>
-          </div>
-        </div>
-
-      </div>
-      <div class="col-lg-5 m-auto">
-        <div class="card card-contact card-raised">
-          <form id="contact-form1" method="post">
-            <div class="card-header text-center pt-4">
-              <h5 class="card-title text-primary text-gradient">Contact Us</h5>
-            </div>
-            <div class="card-body">
-              <div class="row">
-                <div class="col-md-6 pe-2">
-                  <label>First name</label>
-                  <div class="input-group input-group-sm mb-4">
-                    <span class="input-group-text"><i class="fas fa-user text-secondary"></i></span>
-                    <input class="form-control" placeholder="First Name" type="text" >
-                  </div>
-                </div>
-                <div class="col-md-6 ps-2">
-                  <div class="form-group">
-                    <label>Last name</label>
-                    <div class="input-group input-group-sm mb-4">
-                      <span class="input-group-text"><i class="far fa-user text-secondary"></i></span>
-                      <input class="form-control" placeholder="Last Name" type="text" >
-                    </div>
-                  </div>
-                </div>
-              </div>
-              <div class="form-group">
-                <label>Email address</label>
-                <div class="input-group input-group-sm mb-4">
-                  <span class="input-group-text"><i class="ni ni-email-83 text-secondary"></i></span>
-                  <input class="form-control" placeholder="Email" type="email" >
-                </div>
-              </div>
-              <div class="form-group">
-                <label>Your message</label>
-                <textarea name="message" class="form-control form-control-sm" placeholder="Type here" id="message" rows="6"></textarea>
-              </div>
-
-              <div class="row">
-                <div class="col-md-6 text-end my-auto ms-auto">
-                  <button type="submit" class="btn btn-primary btn-round bg-gradient-primary mb-0">Send Message</button>
-                </div>
-              </div>
-            </div>
-          </form>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 bg-white position-relative">
-  <div class="page-header min-vh-50 m-3 border-radius-xl" style="background-image: url(&#39;../../assets/img/curved-images/curved8.jpg&#39;);">
-    <span class="mask bg-gradient-dark opacity-4"></span>
-    <div class="container">
-      <div class="row justify-content-center">
-        <div class="col-lg-6 text-center mx-auto">
-          <h1 class="text-white mt-4 mb-1">Got a question?</h1>
-          <p class="lead text-white mb-6">We&#39;d like to talk more about what you need</p>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="container">
-    <div class="row mt-n7 blur border-radius-lg shadow-blur">
-      <div class="col-lg-3 col-md-6 col-6 position-relative my-auto">
-        <div class="p-3 text-center">
-          <div class="icon icon-shape bg-gradient-primary shadow text-center rounded-circle">
-            <svg class="mt-3" width="15px" height="15px" viewBox="0 0 45 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>map-big</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2321.000000, -593.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="map-big" transform="translate(605.000000, 302.000000)">
-                                <polygon points="31.875 0.71625 24.375 4.46625 24.375 40.53375 31.875 36.78375"></polygon>
-                                <polygon points="20.625 4.46625 13.125 0.71625 13.125 36.78375 20.625 40.53375"></polygon>
-                                <path d="M9.375,0.81375 L0.909375,5.893125 C0.346875,6.230625 0,6.84 0,7.5 L0,43.125 L9.375,37.06125 L9.375,0.81375 Z" opacity="0.70186942"></path>
-                                <path d="M44.090625,5.893125 L35.625,0.81375 L35.625,37.06125 L45,43.125 L45,7.5 C45,6.84 44.653125,6.230625 44.090625,5.893125 Z" opacity="0.70186942"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          <h5 class="mt-3 mb-1">Address</h5>
-          <p class="mb-0">12124 First Street, nr 54</p>
-          <hr class="vertical dark">
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 col-6 position-relative my-auto">
-        <div class="p-3 text-center">
-          <div class="icon icon-shape bg-gradient-primary shadow text-center rounded-circle">
-            <svg class="mt-3" width="15px" height="15px" viewBox="0 0 40 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>document</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-1870.000000, -591.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g transform="translate(154.000000, 300.000000)">
-                                <path d="M40,40 L36.3636364,40 L36.3636364,3.63636364 L5.45454545,3.63636364 L5.45454545,0 L38.1818182,0 C39.1854545,0 40,0.814545455 40,1.81818182 L40,40 Z" opacity="0.603585379"></path>
-                                <path d="M30.9090909,7.27272727 L1.81818182,7.27272727 C0.814545455,7.27272727 0,8.08727273 0,9.09090909 L0,41.8181818 C0,42.8218182 0.814545455,43.6363636 1.81818182,43.6363636 L30.9090909,43.6363636 C31.9127273,43.6363636 32.7272727,42.8218182 32.7272727,41.8181818 L32.7272727,9.09090909 C32.7272727,8.08727273 31.9127273,7.27272727 30.9090909,7.27272727 Z M18.1818182,34.5454545 L7.27272727,34.5454545 L7.27272727,30.9090909 L18.1818182,30.9090909 L18.1818182,34.5454545 Z M25.4545455,27.2727273 L7.27272727,27.2727273 L7.27272727,23.6363636 L25.4545455,23.6363636 L25.4545455,27.2727273 Z M25.4545455,20 L7.27272727,20 L7.27272727,16.3636364 L25.4545455,16.3636364 L25.4545455,20 Z"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          <h5 class="mt-3 mb-1">Email</h5>
-          <p class="mb-0">hello@creative-tim.com</p>
-        </div>
-        <hr class="vertical dark">
-      </div>
-      <div class="col-lg-3 col-md-6 col-6 position-relative my-auto">
-        <div class="p-3 text-center">
-          <div class="icon icon-shape bg-gradient-primary shadow text-center rounded-circle">
-            <svg class="mt-3" width="15px" height="15px" viewBox="0 0 44 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>megaphone</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2168.000000, -591.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="megaphone" transform="translate(452.000000, 300.000000)">
-                              <path d="M35.7958333,0.273166667 C35.2558424,-0.0603712374 34.5817509,-0.0908856664 34.0138333,0.1925 L19.734,7.33333333 L9.16666667,7.33333333 C4.10405646,7.33333333 0,11.4373898 0,16.5 C0,21.5626102 4.10405646,25.6666667 9.16666667,25.6666667 L19.734,25.6666667 L34.0138333,32.8166667 C34.5837412,33.1014624 35.2606401,33.0699651 35.8016385,32.7334768 C36.3426368,32.3969885 36.6701539,31.8037627 36.6666942,31.1666667 L36.6666942,1.83333333 C36.6666942,1.19744715 36.3370375,0.607006911 35.7958333,0.273166667 Z"></path>
-                              <path d="M38.5,11 L38.5,22 C41.5375661,22 44,19.5375661 44,16.5 C44,13.4624339 41.5375661,11 38.5,11 Z" opacity="0.601050967"></path>
-                              <path d="M18.5936667,29.3333333 L10.6571667,29.3333333 L14.9361667,39.864 C15.7423448,41.6604248 17.8234451,42.4993948 19.6501416,41.764381 C21.4768381,41.0293672 22.3968823,38.982817 21.7341667,37.1286667 L18.5936667,29.3333333 Z" opacity="0.601050967"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          <h5 class="mt-3 mb-1">Phone</h5>
-          <p class="mb-0">+1(424) 535 3523</p>
-        </div>
-        <hr class="vertical dark">
-      </div>
-      <div class="col-lg-3 col-md-6 col-6 position-relative my-auto">
-        <div class="p-3 text-center">
-          <div class="icon icon-shape bg-gradient-primary shadow text-center rounded-circle">
-            <svg class="mt-3" width="15px" height="15px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>ungroup</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2170.000000, -442.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="ungroup" transform="translate(454.000000, 151.000000)">
-                                <path d="M38.1818182,10.9090909 L32.7272727,10.9090909 L32.7272727,30.9090909 C32.7272727,31.9127273 31.9127273,32.7272727 30.9090909,32.7272727 L10.9090909,32.7272727 L10.9090909,38.1818182 C10.9090909,39.1854545 11.7236364,40 12.7272727,40 L38.1818182,40 C39.1854545,40 40,39.1854545 40,38.1818182 L40,12.7272727 C40,11.7236364 39.1854545,10.9090909 38.1818182,10.9090909 Z" opacity="0.6"></path>
-                                <path d="M27.2727273,29.0909091 L1.81818182,29.0909091 C0.812727273,29.0909091 0,28.2781818 0,27.2727273 L0,1.81818182 C0,0.814545455 0.812727273,0 1.81818182,0 L27.2727273,0 C28.2781818,0 29.0909091,0.814545455 29.0909091,1.81818182 L29.0909091,27.2727273 C29.0909091,28.2781818 28.2781818,29.0909091 27.2727273,29.0909091 Z"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          <h5 class="mt-3 mb-1">Contact</h5>
-          <p class="mb-0">Andrew Samian</p>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row align-items-center">
-      <div class="col-lg-8 mx-auto text-center">
-        <div class="ms-3 mb-md-5">
-          <h3>Contact us</h3>
-          <p>
-            For further questions, including partnership opportunities, please email hello@creative-tim.com
-            or contact using our contact form.
-          </p>
-        </div>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-8 mx-auto">
-        <div class="card card-plain">
-          <form id="contact-form" method="post" autocomplete="off">
-            <div class="card-body">
-              <div class="row">
-                <div class="col-md-6">
-                  <label>Full Name</label>
-                  <div class="input-group mb-4">
-                    <input class="form-control" placeholder="Full Name" aria-label="Full Name" type="text">
-                  </div>
-                </div>
-                <div class="col-md-6 ps-md-2">
-                  <label>Email</label>
-                  <div class="input-group">
-                    <input type="email" class="form-control" placeholder="hello@creative-tim.com">
-                  </div>
-                </div>
-              </div>
-              <div class="form-group mb-4 mt-md-0 mt-4">
-                <label>What can we help you?</label>
-                <textarea name="message" class="form-control" id="message" rows="6" placeholder="Describe your problem in at least 250 characters"></textarea>
-              </div>
-              <div class="row">
-                <div class="col-md-12 text-center">
-                  <button type="submit" class="btn bg-gradient-primary mt-4">Send Message</button>
-                </div>
-              </div>
-            </div>
-          </form>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 bg-gray-100 position-relative">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center">
-        <h2>Contact Us</h2>
-        <p class="lead">Amy questions or remarks? Just write us a messaage!</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-10 mx-auto">
-        <div class="card">
-          <div class="row">
-            <div class="col-lg-5 d-flex">
-              <div class="bg-gradient-dark my-lg-3 ms-lg-3 border-radius-md">
-                <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-0 h-100 opacity-6">
-                <div class="card-body p-5 position-relative">
-                  <h3 class="text-white">Contact Information</h3>
-                  <p class="text-white opacity-8 mb-4">Fill up the form and our Team will get back to you within 24 hours.</p>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-phone text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">(+40) 772 100 200</span>
-                    </div>
-                  </div>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-envelope text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">hello@creative-tim.com</span>
-                    </div>
-                  </div>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-map-marker-alt text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">730 Dyonisie Wolf <br> Bucharest, RO 010458</span>
-                    </div>
-                  </div>
-                  <div class="mt-4">
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Facebook">
-                      <i class="fab fa-facebook"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Twitter">
-                      <i class="fab fa-twitter"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Dribbble">
-                      <i class="fab fa-dribbble"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Instagram">
-                      <i class="fab fa-instagram"></i>
-                    </button>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <div class="col-lg-7">
-              <form id="contact-form" method="post" autocomplete="off">
-                <div class="card-body position-relative p-3 ps-0">
-                  <div class="row mt-4">
-                    <div class="col-md-6">
-                      <label>First name</label>
-                      <div class="input-group mb-4">
-                        <input class="form-control" placeholder="eg. Lucas" aria-label="First Name..." type="text">
-                      </div>
-                    </div>
-                    <div class="col-md-6 ps-2">
-                      <label>Last name</label>
-                      <div class="input-group mb-4">
-                        <input type="text" class="form-control" placeholder="eg. Jones" aria-label="Last Name...">
-                      </div>
-                    </div>
-                  </div>
-                  <div>
-                    <label>Email address</label>
-                    <div class="input-group mb-4">
-                      <input type="email" class="form-control" placeholder="eg. lucas@creative-tim.com">
-                    </div>
-                  </div>
-                  <label>What are you interested on?</label>
-                  <div class="d-flex">
-                    <div>
-                      <div class="form-check me-3">
-                        <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault1" checked>
-                        <label class="form-check-label" for="flexRadioDefault1">
-                          Design
-                        </label>
-                      </div>
-                    </div>
-                    <div>
-                      <div class="form-check me-3">
-                        <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault2">
-                        <label class="form-check-label" for="flexRadioDefault2">
-                          Development
-                        </label>
-                      </div>
-                    </div>
-                    <div>
-                      <div class="form-check me-3">
-                        <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault3">
-                        <label class="form-check-label" for="flexRadioDefault3">
-                          Support
-                        </label>
-                      </div>
-                    </div>
-                    <div>
-                      <div class="form-check">
-                        <input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault4">
-                        <label class="form-check-label" for="flexRadioDefault4">
-                          Other
-                        </label>
-                      </div>
-                    </div>
-                  </div>
-                  <div class="form-group mt-4">
-                    <label>Your message</label>
-                    <textarea name="message" class="form-control" id="message" rows="3"></textarea>
-                  </div>
-                  <div class="text-end">
-                    <button type="button" class="btn bg-gradient-dark mb-0">Send message</button>
-                  </div>
-                </div>
-              </form>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row">
-      <div class="col">
-        <div class="card overflow-hidden">
-          <div class="row">
-            <div class="col-lg-7">
-              <form class="p-3" id="contact-form" method="post">
-                <div class="card-header px-4 py-sm-5 py-3">
-                  <h2>Say Hi!</h2>
-                  <p class="lead"> We&#39;d like to talk with you.</p>
-                </div>
-                <div class="card-body pt-1">
-                    <div class="row">
-                      <div class="col-md-12 pe-2 mb-3">
-                        <label>My name is</label>
-                        <input class="form-control" placeholder="Full Name" type="text" >
-                      </div>
-
-                      <div class="col-md-12 pe-2 mb-3">
-                        <label>I&#39;m looking for</label>
-                        <input class="form-control" placeholder="What you love" type="text" >
-                      </div>
-
-                      <div class="col-md-12 pe-2 mb-3">
-                        <div class="form-group mb-0">
-                            <label>Your message</label>
-                            <textarea name="message" class="form-control" id="message" rows="6" placeholder="I want to say that..."></textarea>
-                        </div>
-                      </div>
-                    </div>
-
-                    <div class="row">
-                      <div class="col-md-6 text-end ms-auto">
-                          <button type="submit" class="btn btn-primary btn-round bg-gradient-primary mb-0">Send Message</button>
-                      </div>
-                    </div>
-                </div>
-              </form>
-            </div>
-            <div class="col-lg-5 position-relative bg-cover px-0" style="background-image: url(&#39;../../assets/img/curved-images/curved5.jpg&#39;)">
-              <div class="position-absolute z-index-2 w-100 h-100 top-0 start-0 d-lg-block d-none">
-                <img src="../../assets/img/wave-1.svg" class="h-100 ms-n2">
-              </div>
-              <div class="z-index-2 text-center d-flex h-100 w-100 d-flex m-auto justify-content-center">
-                <div class="mask bg-gradient-primary opacity-9"></div>
-                <div class="p-5 ps-sm-8 position-relative text-start my-auto">
-                  <h3 class="text-white">Contact Information</h3>
-                  <p class="text-white opacity-8 mb-4">Fill up the form and our Team will get back to you within 24 hours.</p>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-phone text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">(+40) 772 100 200</span>
-                    </div>
-                  </div>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-envelope text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">hello@creative-tim.com</span>
-                    </div>
-                  </div>
-                  <div class="d-flex p-2 text-white">
-                    <div>
-                      <i class="fas fa-map-marker-alt text-sm"></i>
-                    </div>
-                    <div class="ps-3">
-                      <span class="text-sm opacity-8">Dyonisie Wolf Bucharest, RO 010458</span>
-                    </div>
-                  </div>
-                  <div class="mt-4">
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Facebook">
-                      <i class="fab fa-facebook"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Twitter">
-                      <i class="fab fa-twitter"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Dribbble">
-                      <i class="fab fa-dribbble"></i>
-                    </button>
-                    <button type="button" class="btn btn-icon-only btn-link text-white btn-lg mb-0" data-toggle="tooltip" data-placement="bottom" data-original-title="Log in with Instagram">
-                      <i class="fab fa-instagram"></i>
-                    </button>
-                  </div>
-                </div>
-              </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Contact us 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 bg-white position-relative">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 col-md-5 mb-5">
-        <div class="icon icon-shape bg-gradient-primary shadow text-center mb-4">
-          <i class="ni ni-single-02"></i>
-        </div>
-        <h2>Premium Support</h2>
-        <p class="pe-5">You need more information? Check what other persons are saying about our product. They are very happy with their purchase.</p>
-        <div class="d-flex p-2">
-          <div>
-            <i class="fas fa-map text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span>730 Dyonisie Wolf <br> Bucharest, RO 010458</span>
-          </div>
-        </div>
-        <div class="d-flex p-2">
-          <div>
-            <i class="fas fa-envelope text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span>hello@creative-tim.com</span>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6 col-md-5">
-        <div class="icon icon-shape bg-gradient-primary shadow text-center mb-4">
-          <i class="ni ni-chart-pie-35"></i>
-        </div>
-        <h2>Free Updates</h2>
-        <p class="pe-5">You need more information? Check what other persons are saying about our product. They are very happy with their purchase.</p>
-        <div class="d-flex p-2">
-          <div>
-            <i class="fas fa-phone text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span>(+40) 772 100 200  <br> (+40) 763 310 190</span>
-          </div>
-        </div>
-        <div class="d-flex p-2">
-          <div>
-            <i class="fas fa-envelope text-sm"></i>
-          </div>
-          <div class="ps-3">
-            <span>hello@creative-tim.com</span>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/input-areas/newsletters.html b/sections/input-areas/newsletters.html deleted file mode 100644 index 9ef3e4d2..00000000 --- a/sections/input-areas/newsletters.html +++ /dev/null @@ -1,1010 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Newsletters

-
- -
-
-
-
-

Newsletter 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-5 me-auto">
-        <h4 class="title">Get Tips &amp; Tricks every Week!</h4>
-        <p class="description">
-          Join our newsletter and get news in your inbox every week!
-        </p>
-      </div>
-      <div class="col-lg-6 d-flex justify-content-center flex-column ms-auto">
-        <form method="" action="">
-          <div class="row">
-            <div class="col-sm-8">
-              <div class="input-group mb-4">
-                <span class="input-group-text"><i class="fas fa-envelope"></i></span>
-                <input class="form-control" placeholder="Your Email..." type="text">
-              </div>
-            </div>
-            <div class="col-sm-4">
-              <button type="button" class="btn bg-gradient-primary w-100">Subscribe</button>
-            </div>
-          </div>
-        </form>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Newsletter 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-9">
-  <div class="container">
-    <div class="row justify-content-center text-center">
-      <div class="col-lg-4">
-        <div class="icon icon-shape icon-sm rounded-circle bg-gradient-warning shadow text-center mb-4">
-          <i class="fas fa-user"></i>
-        </div>
-        <h3>Subscribe</h3>
-        <p>This is the paragraph where you can write more details about your product.</p>
-      </div>
-    </div>
-    <div class="row justify-content-center mt-4">
-      <div class="col-lg-6">
-        <form method="" action="">
-          <div class="row">
-            <div class="col-sm-8">
-              <div class="input-group mb-4">
-                <span class="input-group-text"><i class="fas fa-envelope"></i></span>
-                <input class="form-control" placeholder="Your Email..." type="text">
-              </div>
-            </div>
-            <div class="col-sm-4">
-              <button type="button" class="btn bg-gradient-warning w-100">Subscribe</button>
-            </div>
-          </div>
-        </form>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/applications.html b/sections/page-sections/applications.html deleted file mode 100644 index 9ca9ca77..00000000 --- a/sections/page-sections/applications.html +++ /dev/null @@ -1,2867 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Applications

-
- -
-
-
-
-

Project 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Project section w/ 3 images & quote & text -->
-<section class="py-5">
-  <div class="container">
-    <div class="row mb-5">
-      <div class="col-lg-8 text-center mx-auto">
-        <p class="mb-1 text-success">Our Work</p>
-        <h3>Some of our awesome projects - 1</h3>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-md-6 position-relative">
-        <img class="image-left border-radius-lg img-fluid shadow position-relative top-0 end-0 ms-md-5 bg-cover" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/asus.jpg">
-
-        <p class="blockquote border border-primary rounded w-50 p-3 text-sm text-primary float-md-end mx-auto mt-4 me-md-n2">"Over the span of the satellite record, Arctic sea ice has been declining significantly, while sea ice in the Antarctichas increased very
-          slightly"
-          <br>
-          <br>
-          <small>-NOAA</small>
-        </p>
-
-      </div>
-      <div class="col-md-5">
-        <!-- First image on the right side, above the article -->
-        <img class="image-right border-radius-lg img-fluid shadow ms-md-n4 mb-4 mt-md-8 position-relative bg-cover" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/acer.jpg">
-        <div class="px-4">
-          <p class="text-gradient text-primary">Design</p>
-          <h3 class="mb-4">Jeff Bezos</h3>
-          <p>
-            For a start, it does not automatically follow that a record amount of ice will melt this summer. More important for determining the size of the annual thaw is the state of the weather as the midnight sun approaches and temperatures rise.
-          </p>
-        </div>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-md-6 position-relative">
-        <img class="image-left border-radius-lg img-fluid shadow position-relative top-0 end-0 ms-md-5 bg-cover" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/cristal-laptop.jpg">
-        <p class="blockquote border border-info rounded w-50 p-3 text-sm text-info float-md-end mt-4 me-md-n2 mx-auto">"Over the span of the satellite record, Arctic sea ice has been declining significantly, while sea ice in the Antarctichas increased very
-          slightly"
-          <br>
-          <br>
-          <small>-NOAA</small>
-        </p>
-
-      </div>
-      <div class="col-md-5">
-        <!-- First image on the right side, above the article -->
-        <img class="image-right border-radius-lg img-fluid shadow ms-md-n4 mb-4 mt-md-8 position-relative bg-cover" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/toshiba.jpg">
-        <div class="px-4">
-          <p class="text-gradient text-info">Development</p>
-          <h3 class="mb-4">Mike Alfonso</h3>
-          <p>
-            For a start, it does not automatically follow that a record amount of ice will melt this summer. More important for determining the size of the annual thaw is the state of the weather as the midnight sun approaches and temperatures rise.
-          </p>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Project section w/ 3 images & quote & text -->
-
-
-
-
-
-
-
-
-
-

Project 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 ms-auto me-auto text-center">
-        <h3>Some of Our Awesome Projects</h3>
-        <p>This is the paragraph where you can write more details about your projects. Keep you user engaged by providing meaningful information.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-md-5 ms-auto">
-        <div class="card bg-cover text-center" style="background-image: url(&#39;../../assets/img/curved-images/curved1.jpg&#39;)">
-          <div class="card-body z-index-2 py-9">
-            <h2 class="text-white">Social Analytics</h2>
-            <p class="text-white">
-              Insight to help you create, connect, and convert. Understand Your Audience&#39;s Interests, Influence, Interactions, and Intent. Discover emerging topics and influencers to reach new audiences.
-            </p>
-            <label class="badge badge-light text-dark">Analytics</label>
-          </div>
-          <div class="mask bg-gradient-primary border-radius-lg"></div>
-        </div>
-      </div>
-
-      <div class="col-md-5 me-auto my-auto mt-md-auto mt-5">
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon icon-md">
-            <div class="icon icon-shape text-center">
-            <svg class="text-primary" width="25px" height="25px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>customer-support</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g transform="translate(1.000000, 0.000000)">
-                                <path class="color-background" d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" opacity="0.59858631"></path>
-                                <path class="color-foreground" d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z"></path>
-                                <path class="color-foreground" d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          </div>
-          <div class="ms-4">
-            <h4>Listen to Social Conversations</h4>
-            <p>
-              Gain access to the demographics, psychographics, and location of unique people who talk about your brand.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon me-4 mt-1">
-            <div class="icon icon-md">
-                <svg class="text-primary" width="25px" height="25px" viewBox="0 0 42 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>time-alarm</title>
-                    <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <g transform="translate(-2319.000000, -440.000000)" fill="#923DFA" fill-rule="nonzero">
-                            <g transform="translate(1716.000000, 291.000000)">
-                                <g id="time-alarm" transform="translate(603.000000, 149.000000)">
-                                    <path class="color-background" d="M18.8086957,4.70034783 C15.3814926,0.343541521 9.0713063,-0.410050841 4.7145,3.01715217 C0.357693695,6.44435519 -0.395898667,12.7545415 3.03130435,17.1113478 C5.53738466,10.3360568 11.6337901,5.54042955 18.8086957,4.70034783 L18.8086957,4.70034783 Z" opacity="0.6"></path>
-                                    <path class="color-background" d="M38.9686957,17.1113478 C42.3958987,12.7545415 41.6423063,6.44435519 37.2855,3.01715217 C32.9286937,-0.410050841 26.6185074,0.343541521 23.1913043,4.70034783 C30.3662099,5.54042955 36.4626153,10.3360568 38.9686957,17.1113478 Z" opacity="0.6"></path>
-                                    <path class="color-foreground" d="M34.3815652,34.7668696 C40.2057958,27.7073059 39.5440671,17.3375603 32.869743,11.0755718 C26.1954189,4.81358341 15.8045811,4.81358341 9.13025701,11.0755718 C2.45593289,17.3375603 1.79420418,27.7073059 7.61843478,34.7668696 L3.9753913,40.0506522 C3.58549114,40.5871271 3.51710058,41.2928217 3.79673036,41.8941824 C4.07636014,42.4955431 4.66004722,42.8980248 5.32153275,42.9456105 C5.98301828,42.9931963 6.61830436,42.6784048 6.98113043,42.1232609 L10.2744783,37.3434783 C16.5555112,42.3298213 25.4444888,42.3298213 31.7255217,37.3434783 L35.0188696,42.1196087 C35.6014207,42.9211577 36.7169135,43.1118605 37.53266,42.5493622 C38.3484064,41.9868639 38.5667083,40.8764423 38.0246087,40.047 L34.3815652,34.7668696 Z M30.1304348,25.5652174 L21,25.5652174 C20.49574,25.5652174 20.0869565,25.1564339 20.0869565,24.6521739 L20.0869565,15.5217391 C20.0869565,15.0174791 20.49574,14.6086957 21,14.6086957 C21.50426,14.6086957 21.9130435,15.0174791 21.9130435,15.5217391 L21.9130435,23.7391304 L30.1304348,23.7391304 C30.6346948,23.7391304 31.0434783,24.1479139 31.0434783,24.6521739 C31.0434783,25.1564339 30.6346948,25.5652174 30.1304348,25.5652174 Z"></path>
-                                </g>
-                            </g>
-                        </g>
-                    </g>
-                </svg>
-              </div>
-          </div>
-          <div class="ms-4">
-            <h4>Performance Analyze</h4>
-            <p>
-              Unify data from Facebook, Instagram, Twitter, LinkedIn, and Youtube to gain rich insights from easy-to-use reports.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon me-4 mt-1">
-            <div class="icon icon-md">
-            <svg class="text-primary" width="25px" height="25px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>box-3d-50</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2319.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="box-3d-50" transform="translate(603.000000, 0.000000)">
-                                <path class="color-foreground" d="M22.7597136,19.3090182 L38.8987031,11.2395234 C39.3926816,10.9925342 39.592906,10.3918611 39.3459167,9.89788265 C39.249157,9.70436312 39.0922432,9.5474453 38.8987261,9.45068056 L20.2741875,0.1378125 L20.2741875,0.1378125 C19.905375,-0.04725 19.469625,-0.04725 19.0995,0.1378125 L3.1011696,8.13815822 C2.60720568,8.38517662 2.40701679,8.98586148 2.6540352,9.4798254 C2.75080129,9.67332903 2.90771305,9.83023153 3.10122239,9.9269862 L21.8652864,19.3090182 C22.1468139,19.4497819 22.4781861,19.4497819 22.7597136,19.3090182 Z"></path>
-                                <path class="color-background" d="M23.625,22.429159 L23.625,39.8805372 C23.625,40.4328219 24.0727153,40.8805372 24.625,40.8805372 C24.7802551,40.8805372 24.9333778,40.8443874 25.0722402,40.7749511 L41.2741875,32.673375 L41.2741875,32.673375 C41.719125,32.4515625 42,31.9974375 42,31.5 L42,14.241659 C42,13.6893742 41.5522847,13.241659 41,13.241659 C40.8447549,13.241659 40.6916418,13.2778041 40.5527864,13.3472318 L24.1777864,21.5347318 C23.8390024,21.7041238 23.625,22.0503869 23.625,22.429159 Z" opacity="0.7"></path>
-                                <path class="color-background" d="M20.4472136,21.5347318 L1.4472136,12.0347318 C0.953235098,11.7877425 0.352562058,11.9879669 0.105572809,12.4819454 C0.0361450918,12.6208008 6.47121774e-16,12.7739139 0,12.929159 L0,30.1875 L0,30.1875 C0,30.6849375 0.280875,31.1390625 0.7258125,31.3621875 L19.5528096,40.7750766 C20.0467945,41.0220531 20.6474623,40.8218132 20.8944388,40.3278283 C20.963859,40.1889789 21,40.0358742 21,39.8806379 L21,22.429159 C21,22.0503869 20.7859976,21.7041238 20.4472136,21.5347318 Z" opacity="0.7"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          </div>
-          <div class="ms-4">
-            <h4>Social Conversions</h4>
-            <p>
-              Track actions taken on your website that originated from social, and understand the impact on your bottom line.
-            </p>
-          </div>
-        </div>
-      </div>
-    </div>
-
-    <hr class="horizontal dark my-6 mx-7">
-    <div class="row">
-      <div class="col-md-5 ms-auto my-auto">
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon me-4 mt-1">
-            <div class="icon icon-md">
-            <svg class="text-info" width="25px" height="25px" viewBox="0 0 43 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-              <title>credit-card</title>
-              <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                <g transform="translate(-2169.000000, -745.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                  <g transform="translate(1716.000000, 291.000000)">
-                    <g id="credit-card" transform="translate(453.000000, 454.000000)">
-                      <path class="color-background" d="M43,10.7482083 L43,3.58333333 C43,1.60354167 41.3964583,0 39.4166667,0 L3.58333333,0 C1.60354167,0 0,1.60354167 0,3.58333333 L0,10.7482083 L43,10.7482083 Z" opacity="0.593633743">
-                      </path>
-                      <path class="color-foreground" d="M0,16.125 L0,32.25 C0,34.2297917 1.60354167,35.8333333 3.58333333,35.8333333 L39.4166667,35.8333333 C41.3964583,35.8333333 43,34.2297917 43,32.25 L43,16.125 L0,16.125 Z M19.7083333,26.875 L7.16666667,26.875 L7.16666667,23.2916667 L19.7083333,23.2916667 L19.7083333,26.875 Z M35.8333333,26.875 L28.6666667,26.875 L28.6666667,23.2916667 L35.8333333,23.2916667 L35.8333333,26.875 Z"></path>
-                    </g>
-                  </g>
-                </g>
-              </g>
-            </svg>
-          </div>
-          </div>
-          <div class="ms-4">
-            <h4>Always In Sync</h4>
-            <p>
-              No matter where you are, Trello stays in sync across all of your devices.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon me-4 mt-1">
-            <div class="icon icon-md">
-            <svg class="text-info" width="25px" height="25px" viewBox="0 0 52 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>sound-wave</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2015.000000, -596.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="sound-wave" transform="translate(299.000000, 305.000000)">
-                                <path class="color-foreground" d="M15.2941176,30.5882353 C14.6024837,30.5882353 13.9754248,30.1667974 13.7154248,29.5210458 L8.11777778,15.5269281 L6.51189542,17.9366013 C6.19581699,18.4090196 5.66562092,18.6928105 5.09803922,18.6928105 L0,18.6928105 L0,15.2941176 L4.18888889,15.2941176 L7.08287582,10.9522876 C7.43294118,10.4288889 8.03281046,10.1467974 8.67346405,10.2045752 C9.30052288,10.2708497 9.84261438,10.6769935 10.0754248,11.263268 L15.0969935,23.8214379 L22.1696732,1.19294118 C22.3905882,0.482614379 23.0465359,0 23.7908497,0 C23.792549,0 23.792549,0 23.7942484,0 C24.5385621,0.00169934641 25.1962092,0.487712418 25.4154248,1.19973856 L31.2305882,20.1015686 L34.3267974,15.9738562 C34.6462745,15.5456209 35.1509804,15.2941176 35.6862745,15.2941176 L40.7843137,15.2941176 L40.7843137,18.6928105 L36.5359477,18.6928105 L31.9477124,24.8104575 C31.5653595,25.3202614 30.9298039,25.5717647 30.2959477,25.4647059 C29.6671895,25.3542484 29.1522876,24.9005229 28.9636601,24.2904575 L23.7772549,7.43803922 L16.9152941,29.3952941 C16.7011765,30.0818301 16.0792157,30.5593464 15.3603922,30.5865359 C15.3366013,30.5882353 15.3162092,30.5882353 15.2941176,30.5882353 Z"></path>
-                                <path class="color-background" d="M26.5098039,34.6666667 C25.8181699,34.6666667 25.1911111,34.2452288 24.9311111,33.5994771 L19.3334641,19.6053595 L17.7275817,22.0150327 C17.4115033,22.487451 16.8813072,22.7712418 16.3137255,22.7712418 L11.2156863,22.7712418 L11.2156863,19.372549 L15.4045752,19.372549 L18.2985621,15.030719 C18.6486275,14.5073203 19.2484967,14.2252288 19.8891503,14.2830065 C20.5162092,14.349281 21.0583007,14.7554248 21.2911111,15.3416993 L26.3126797,27.8998693 L33.3853595,5.27137255 C33.6062745,4.56104575 34.2622222,4.07843137 35.0065359,4.07843137 C35.0082353,4.07843137 35.0082353,4.07843137 35.0099346,4.07843137 C35.7542484,4.08013072 36.4118954,4.56614379 36.6311111,5.27816993 L42.4462745,24.18 L45.5424837,20.0522876 C45.8619608,19.6240523 46.3666667,19.372549 46.9019608,19.372549 L52,19.372549 L52,22.7712418 L47.751634,22.7712418 L43.1633987,28.8888889 C42.7810458,29.3986928 42.1454902,29.6501961 41.511634,29.5431373 C40.8828758,29.4326797 40.3679739,28.9789542 40.1793464,28.3688889 L34.9929412,11.5164706 L28.1309804,33.4737255 C27.9168627,34.1602614 27.294902,34.6377778 26.5760784,34.6649673 C26.5522876,34.6666667 26.5318954,34.6666667 26.5098039,34.6666667 Z" id="Path-Copy" opacity="0.604957217"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-            </svg>
-          </div>
-          </div>
-          <div class="ms-4">
-            <h4>Work With Any Team</h4>
-            <p>
-              Whether it’s for work or even the next family vacation, Trello helps your team.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div class="icon me-4 mt-1">
-            <div class="icon icon-md">
-              <svg class="text-info" width="25px" height="25px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>spaceship</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                  <g transform="translate(-1720.000000, -592.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                    <g transform="translate(1716.000000, 291.000000)">
-                      <g transform="translate(4.000000, 301.000000)">
-                        <path class="color-foreground" d="M39.3,0.706666667 C38.9660984,0.370464027 38.5048767,0.192278529 38.0316667,0.216666667 C14.6516667,1.43666667 6.015,22.2633333 5.93166667,22.4733333 C5.68236407,23.0926189 5.82664679,23.8009159 6.29833333,24.2733333 L15.7266667,33.7016667 C16.2013871,34.1756798 16.9140329,34.3188658 17.535,34.065 C17.7433333,33.98 38.4583333,25.2466667 39.7816667,1.97666667 C39.8087196,1.50414529 39.6335979,1.04240574 39.3,0.706666667 Z M25.69,19.0233333 C24.7367525,19.9768687 23.3029475,20.2622391 22.0572426,19.7463614 C20.8115377,19.2304837 19.9992882,18.0149658 19.9992882,16.6666667 C19.9992882,15.3183676 20.8115377,14.1028496 22.0572426,13.5869719 C23.3029475,13.0710943 24.7367525,13.3564646 25.69,14.31 C26.9912731,15.6116662 26.9912731,17.7216672 25.69,19.0233333 L25.69,19.0233333 Z"></path>
-                        <path class="color-foreground" d="M1.855,31.4066667 C3.05106558,30.2024182 4.79973884,29.7296005 6.43969145,30.1670277 C8.07964407,30.6044549 9.36054508,31.8853559 9.7979723,33.5253085 C10.2353995,35.1652612 9.76258177,36.9139344 8.55833333,38.11 C6.70666667,39.9616667 0,40 0,40 C0,40 0,33.2566667 1.855,31.4066667 Z"></path>
-                        <path class="color-background" d="M17.2616667,3.90166667 C12.4943643,3.07192755 7.62174065,4.61673894 4.20333333,8.04166667 C3.31200265,8.94126033 2.53706177,9.94913142 1.89666667,11.0416667 C1.5109569,11.6966059 1.61721591,12.5295394 2.155,13.0666667 L5.47,16.3833333 C8.55036617,11.4946947 12.5559074,7.25476565 17.2616667,3.90166667 L17.2616667,3.90166667 Z" opacity="0.598539807"></path>
-                        <path class="color-background" d="M36.0983333,22.7383333 C36.9280725,27.5056357 35.3832611,32.3782594 31.9583333,35.7966667 C31.0587397,36.6879974 30.0508686,37.4629382 28.9583333,38.1033333 C28.3033941,38.4890431 27.4704606,38.3827841 26.9333333,37.845 L23.6166667,34.53 C28.5053053,31.4496338 32.7452344,27.4440926 36.0983333,22.7383333 L36.0983333,22.7383333 Z" id="color-3" opacity="0.598539807"></path>
-                      </g>
-                    </g>
-                  </g>
-                </g>
-              </svg>
-            </div>
-          </div>
-          <div class="ms-4">
-            <h4>A Productivity Platform</h4>
-            <p>
-              Integrate the apps your team already uses directly into your workflow.
-            </p>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-5 me-auto">
-        <div class="card bg-cover text-center" style="background-image: url(&#39;../../assets/img/curved-images/curved2.jpg&#39;)">
-          <div class="card-body z-index-2 py-9">
-            <h2 class="text-white">Trello lets you work.</h2>
-            <p class="text-white">
-              Trello’s boards, lists, and cards enable you to organize and prioritize your projects in a fun, flexible and rewarding way.
-            </p>
-            <label class="badge badge-light text-dark">Trello</label>
-          </div>
-          <div class="mask bg-gradient-info border-radius-lg"></div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Project 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Project section w/ 3 tilt cards -->
-<section class="py-5">
-  <div class="container">
-    <div class="row mb-5">
-      <div class="col-lg-8 text-center mx-auto">
-        <p class="mb-1 text-gradient text-primary">Our Work</p>
-        <h3>Some of our awesome projects - 3</h3>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-4 col-md-6">
-        <a href="javascript:;">
-          <div class="card card-background card-background-mask-primary tilt" data-tilt>
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/team-working.jpg&#39;)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-5">
-                <svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>chart-pie-35</title>
-                  <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-1720.000000, -742.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                      <g transform="translate(1716.000000, 291.000000)">
-                        <g transform="translate(4.000000, 451.000000)">
-                          <path d="M21.6666667,18.3333333 L39.915,18.3333333 C39.11,8.635 31.365,0.89 21.6666667,0.085 L21.6666667,18.3333333 Z" opacity="0.602864583"></path>
-                          <path d="M20.69,21.6666667 L7.09833333,35.2583333 C10.585,38.21 15.085,40 20,40 C30.465,40 39.0633333,31.915 39.915,21.6666667 L20.69,21.6666667 Z"></path>
-                          <path d="M18.3333333,19.31 L18.3333333,0.085 C8.085,0.936666667 0,9.535 0,20 C0,24.915 1.79,29.415 4.74166667,32.9016667 L18.3333333,19.31 Z"></path>
-                        </g>
-                      </g>
-                    </g>
-                  </g>
-                </svg>
-              </div>
-              <h1 class="text-white up mb-0">Search and Discover!</h1>
-              <p class="lead up">Website visitors</p>
-              <button type="button" class="btn btn-outline-white btn-lg mt-3 up">Get Started</button>
-            </div>
-          </div>
-        </a>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <a href="javascript:;">
-          <div class="card card-background card-background-mask-primary tilt mt-md-0 mt-5" data-tilt>
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/toboshar.jpg&#39;)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-5">
-                <svg width="40px" height="40px" viewBox="0 0 44 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>megaphone</title>
-                  <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2168.000000, -591.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                      <g transform="translate(1716.000000, 291.000000)">
-                        <g id="megaphone" transform="translate(452.000000, 300.000000)">
-                          <path
-                            d="M35.7958333,0.273166667 C35.2558424,-0.0603712374 34.5817509,-0.0908856664 34.0138333,0.1925 L19.734,7.33333333 L9.16666667,7.33333333 C4.10405646,7.33333333 0,11.4373898 0,16.5 C0,21.5626102 4.10405646,25.6666667 9.16666667,25.6666667 L19.734,25.6666667 L34.0138333,32.8166667 C34.5837412,33.1014624 35.2606401,33.0699651 35.8016385,32.7334768 C36.3426368,32.3969885 36.6701539,31.8037627 36.6666942,31.1666667 L36.6666942,1.83333333 C36.6666942,1.19744715 36.3370375,0.607006911 35.7958333,0.273166667 Z"
-                           ></path>
-                          <path d="M38.5,11 L38.5,22 C41.5375661,22 44,19.5375661 44,16.5 C44,13.4624339 41.5375661,11 38.5,11 Z" opacity="0.601050967"></path>
-                          <path
-                            d="M18.5936667,29.3333333 L10.6571667,29.3333333 L14.9361667,39.864 C15.7423448,41.6604248 17.8234451,42.4993948 19.6501416,41.764381 C21.4768381,41.0293672 22.3968823,38.982817 21.7341667,37.1286667 L18.5936667,29.3333333 Z"
-                            opacity="0.601050967"></path>
-                        </g>
-                      </g>
-                    </g>
-                  </g>
-                </svg>
-              </div>
-              <h1 class="text-white up mb-0">Find music and play it!</h1>
-              <p class="lead up">Music search</p>
-              <button type="button" class="btn btn-outline-white btn-lg mt-3 up">Get Started</button>
-            </div>
-          </div>
-        </a>
-      </div>
-      <div class="col-lg-4 col-md-6 mx-md-auto">
-        <a href="javascript:;">
-          <div class="card card-background card-background-mask-primary tilt mt-lg-0 mt-5" data-tilt>
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/umbrellas.jpg&#39;)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-5">
-                <svg width="40px" height="40px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>customer-support</title>
-                    <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <g transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                            <g transform="translate(1716.000000, 291.000000)">
-                                <g transform="translate(1.000000, 0.000000)">
-                                    <path d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" opacity="0.59858631"></path>
-                                    <path d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z"></path>
-                                    <path d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z"></path>
-                                </g>
-                            </g>
-                        </g>
-                    </g>
-                </svg>
-              </div>
-                <h1 class="text-white up mb-0">Check bugs and fix!</h1>
-                <p class="lead up">Support requests</p>
-                <button type="button" class="btn btn-outline-white btn-lg mt-3 up">Get Started</button>
-              </div>
-            </div>
-        </a>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Project section w/ 3 images & quote & text -->
-
-
-
-
-
-
-
-
-
-

Project 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5 bg-gray-200">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 ms-auto me-auto text-center">
-        <h3>Some of Our Awesome Products</h3>
-        <p>You get rewarded for unique knowledge, not for effort. Effort is required to create unique knowledge.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-slack.svg">
-            <h5 class="mt-2">Slack bot</h5>
-            <p class="mb-3">If everything I did failed - which it doesn&#39;t, it actually succeeds - just the fact that I&#39;m willing to fail is an inspiration. People are so scared to lose that they don&#39;t even try. And this is sad.</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder text-info icon-move-right">
-              Check more
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-spotify.svg">
-            <h5 class="mt-2">Looking great</h5>
-            <p class="mb-3">You have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s motivating the doers.</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder text-success icon-move-right">
-              See details
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-asana.svg">
-            <h5 class="mt-2">Developer First</h5>
-            <p class="mb-3">For standing out. But the time is now to be okay to be the greatest you. Would you believe in what you believe in, if you were the only one who believed it? What do you think?</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder text-danger icon-move-right">
-              View journey
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-invision.svg">
-            <h5 class="mt-2">Prepare launch</h5>
-            <p class="mb-3">Society has put up so many boundaries, so many limitations on what’s right and wrong that it’s almost impossible to get a pure thought out. It’s like a little kid, a little boy.</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder icon-move-right">
-              Check out more
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-jira.svg">
-            <h5 class="mt-2">Premium support</h5>
-            <p class="mb-3">Pink is obviously a better color. Everyone’s born confident, and everything’s taken away from you matters is the people who are sparked by it follow their dreams, too.</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder text-info icon-move-right">
-              See all
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-5">
-        <div class="card">
-          <div class="card-body border-radius-lg position-relative overflow-hidden pb-4 px-5">
-            <img class="w-25 mb-3 ms-n2" src="../../assets/img/logos/small-logos/logo-weave.svg">
-            <h5 class="mt-2">Design tools</h5>
-            <p class="mb-3">Constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams the position that we want to be.</p>
-            <a href="javascript:;" class="font-weight-bold text-xs text-uppercase font-weight-bolder text-danger icon-move-right">
-              Find story
-              <i class="fas fa-arrow-right text-xs ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Project 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-5 ms-auto me-auto text-center">
-        <div class="p-3 info-hover-warning">
-          <div class="icon icon-shape bg-gradient-primary shadow icon-shape-circle text-primary">
-            <i class="fa fa-cogs"></i>
-          </div>
-        </div>
-        <h3 class="text-gradient text-primary mb-0 mt-4">Beware The Components</h3>
-        <h3>How To Handle Them</h3>
-        <p>We’re constantly trying to express ourselves and actualize our dreams. Don&#39;t stop.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-md-4 ms-auto my-auto">
-        <a href="javascript:;">
-          <div class="card card-background tilt" data-tilt="">
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/team-working.jpg&#39;)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-3">
-                <svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>chart-pie-35</title>
-                  <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-1720.000000, -742.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                      <g transform="translate(1716.000000, 291.000000)">
-                        <g transform="translate(4.000000, 451.000000)">
-                          <path d="M21.6666667,18.3333333 L39.915,18.3333333 C39.11,8.635 31.365,0.89 21.6666667,0.085 L21.6666667,18.3333333 Z" opacity="0.602864583"></path>
-                          <path d="M20.69,21.6666667 L7.09833333,35.2583333 C10.585,38.21 15.085,40 20,40 C30.465,40 39.0633333,31.915 39.915,21.6666667 L20.69,21.6666667 Z"></path>
-                          <path d="M18.3333333,19.31 L18.3333333,0.085 C8.085,0.936666667 0,9.535 0,20 C0,24.915 1.79,29.415 4.74166667,32.9016667 L18.3333333,19.31 Z"></path>
-                        </g>
-                      </g>
-                    </g>
-                  </g>
-                </svg>
-              </div>
-              <h1 class="text-white up mb-0">Search and Discover!</h1>
-              <p class="lead up">Website visitors</p>
-              <button type="button" class="btn btn-white btn-lg mt-3 up">Get Started</button>
-            </div>
-          </div>
-        </a>
-      </div>
-
-      <div class="col-md-5 me-auto my-auto ms-5">
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>1. Listen to Social Conversations</h5>
-            <p>
-              Gain access to the demographics, psychographics, and location of unique people who are interested and talk about your brand.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>2. Performance Analyze</h5>
-            <p>
-              Unify data from Facebook, Instagram, Twitter, LinkedIn, and Youtube to gain rich insights from easy-to-use reports.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>3. Social Conversions</h5>
-            <p>
-              Track actions taken on your website that originated from social, and understand the impact on your bottom line.
-            </p>
-          </div>
-        </div>
-      </div>
-    </div>
-
-    <hr class="dark my-6 mx-7">
-    <div class="row">
-      <div class="col-md-5 ms-auto my-auto">
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>1. Always In Sync</h5>
-            <p>
-              No matter where you are, Trello stays in sync across all of your devices.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>2. Work With Any Team</h5>
-            <p>
-              Whether it’s for work or even the next family vacation, Trello helps your team.
-            </p>
-          </div>
-        </div>
-
-        <div class="p-3 info-horizontal d-flex">
-          <div>
-            <h5>3. A Productivity Platform</h5>
-            <p>
-              Integrate the apps your team already uses directly into your workflow.
-            </p>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-md-4 me-auto my-auto ms-5">
-        <a href="javascript:;">
-          <div class="card card-background tilt" data-tilt="">
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/coffee-shop.jpg&#39;)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-3">
-                <svg width="40px" height="40px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>customer-support</title>
-                    <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <g transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                            <g transform="translate(1716.000000, 291.000000)">
-                                <g transform="translate(1.000000, 0.000000)">
-                                    <path d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" opacity="0.59858631"></path>
-                                    <path d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z"></path>
-                                    <path d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z"></path>
-                                </g>
-                            </g>
-                        </g>
-                    </g>
-                </svg>
-              </div>
-              <h1 class="text-white up mb-0">Talk and Meet!</h1>
-              <p class="lead up">Social activities</p>
-              <button type="button" class="btn btn-white btn-lg mt-3 up">Get Started</button>
-            </div>
-          </div>
-        </a>
-      </div>
-
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Project 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5 bg-gray-200">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 me-auto text-start">
-        <h3>Projects</h3>
-        <p>See all our projects</p>
-      </div>
-    </div>
-    <div class="row mt-lg-4 mt-2">
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card">
-          <div class="card-body p-3">
-            <div class="d-flex">
-              <div class="avatar avatar-xl bg-gradient-dark border-radius-md p-2">
-                <img src="../../assets/img/logos/small-logos/logo-slack.svg">
-              </div>
-              <div class="ms-3 my-auto">
-                <h6>Slack Bot</h6>
-                <div class="avatar-group">
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                </div>
-              </div>
-              <div class="ms-auto">
-                <div class="dropdown">
-                  <button class="btn btn-link text-secondary ps-0 pe-2" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                    <i class="fa fa-ellipsis-v text-lg"></i>
-                  </button>
-                  <div class="dropdown-menu ms-n4" aria-labelledby="navbarDropdownMenuLink">
-                    <a class="dropdown-item" href="javascript:;">Action</a>
-                    <a class="dropdown-item" href="javascript:;">Another action</a>
-                    <a class="dropdown-item" href="javascript:;">Something else here</a>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <p class="text-sm mt-3"> If everything I did failed - which it doesn&#39;t, it actually succeeds. </p>
-            <hr class="horizontal dark">
-            <div class="row">
-              <div class="col-6">
-                <h6 class="text-sm mb-0">5</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Participants</p>
-              </div>
-              <div class="col-6 text-end">
-                <h6 class="text-sm mb-0">02.03.22</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Due date</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card">
-          <div class="card-body p-3">
-            <div class="d-flex">
-              <div class="avatar avatar-xl bg-gradient-dark border-radius-md p-2">
-                <img src="../../assets/img/logos/small-logos/logo-spotify.svg">
-              </div>
-              <div class="ms-3 my-auto">
-                <h6>Premium support</h6>
-                <div class="avatar-group">
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                </div>
-              </div>
-              <div class="ms-auto">
-                <div class="dropdown">
-                  <button class="btn btn-link text-secondary ps-0 pe-2" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                    <i class="fa fa-ellipsis-v text-lg"></i>
-                  </button>
-                  <div class="dropdown-menu ms-n4" aria-labelledby="navbarDropdownMenuLink">
-                    <a class="dropdown-item" href="javascript:;">Action</a>
-                    <a class="dropdown-item" href="javascript:;">Another action</a>
-                    <a class="dropdown-item" href="javascript:;">Something else here</a>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <p class="text-sm mt-3"> Pink is obviously a better color. Everyone’s born confident, and everything’s taken away from you. </p>
-            <hr class="horizontal dark">
-            <div class="row">
-              <div class="col-6">
-                <h6 class="text-sm mb-0">3</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Participants</p>
-              </div>
-              <div class="col-6 text-end">
-                <h6 class="text-sm mb-0">22.11.21</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Due date</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card">
-          <div class="card-body p-3">
-            <div class="d-flex">
-              <div class="avatar avatar-xl bg-gradient-dark border-radius-md p-2">
-                <img src="../../assets/img/logos/small-logos/logo-xd.svg">
-              </div>
-              <div class="ms-3 my-auto">
-                <h6>Design tools</h6>
-                <div class="avatar-group">
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="">
-                  </a>
-                </div>
-              </div>
-              <div class="ms-auto">
-                <div class="dropdown">
-                  <button class="btn btn-link text-secondary ps-0 pe-2" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                    <i class="fa fa-ellipsis-v text-lg"></i>
-                  </button>
-                  <div class="dropdown-menu ms-n4" aria-labelledby="navbarDropdownMenuLink">
-                    <a class="dropdown-item" href="javascript:;">Action</a>
-                    <a class="dropdown-item" href="javascript:;">Another action</a>
-                    <a class="dropdown-item" href="javascript:;">Something else here</a>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <p class="text-sm mt-3"> Constantly growing. We’re constantly making mistakes. </p>
-            <hr class="horizontal dark">
-            <div class="row">
-              <div class="col-6">
-                <h6 class="text-sm mb-0">4</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Participants</p>
-              </div>
-              <div class="col-6 text-end">
-                <h6 class="text-sm mb-0">06.03.20</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Due date</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card">
-          <div class="card-body p-3">
-            <div class="d-flex">
-              <div class="avatar avatar-xl bg-gradient-dark border-radius-md p-2">
-                <img src="../../assets/img/logos/small-logos/logo-asana.svg">
-              </div>
-              <div class="ms-3 my-auto">
-                <h6>Looking great</h6>
-                <div class="avatar-group">
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                </div>
-              </div>
-              <div class="ms-auto">
-                <div class="dropdown">
-                  <button class="btn btn-link text-secondary ps-0 pe-2" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                    <i class="fa fa-ellipsis-v text-lg"></i>
-                  </button>
-                  <div class="dropdown-menu ms-n4" aria-labelledby="navbarDropdownMenuLink">
-                    <a class="dropdown-item" href="javascript:;">Action</a>
-                    <a class="dropdown-item" href="javascript:;">Another action</a>
-                    <a class="dropdown-item" href="javascript:;">Something else here</a>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <p class="text-sm mt-3"> You have the opportunity to play this game of life you need to appreciate every moment. </p>
-            <hr class="horizontal dark">
-            <div class="row">
-              <div class="col-6">
-                <h6 class="text-sm mb-0">6</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Participants</p>
-              </div>
-              <div class="col-6 text-end">
-                <h6 class="text-sm mb-0">14.03.24</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Due date</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card">
-          <div class="card-body p-3">
-            <div class="d-flex">
-              <div class="avatar avatar-xl bg-gradient-dark border-radius-md p-2">
-                <img src="../../assets/img/logos/small-logos/logo-invision.svg">
-              </div>
-              <div class="ms-3 my-auto">
-                <h6>Developer First</h6>
-                <div class="avatar-group">
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Jessica Rowland">
-                    <img alt="Image placeholder" src="../../assets/img/team-3.jpg" class="">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Michael Lewis">
-                    <img alt="Image placeholder" src="../../assets/img/team-2.jpg" class="rounded-circle">
-                  </a>
-                  <a href="javascript:;" class="avatar avatar-xs rounded-circle" data-toggle="tooltip" data-original-title="Audrey Love">
-                    <img alt="Image placeholder" src="../../assets/img/team-4.jpg" class="rounded-circle">
-                  </a>
-                </div>
-              </div>
-              <div class="ms-auto">
-                <div class="dropdown">
-                  <button class="btn btn-link text-secondary ps-0 pe-2" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                    <i class="fa fa-ellipsis-v text-lg"></i>
-                  </button>
-                  <div class="dropdown-menu ms-n4" aria-labelledby="navbarDropdownMenuLink">
-                    <a class="dropdown-item" href="javascript:;">Action</a>
-                    <a class="dropdown-item" href="javascript:;">Another action</a>
-                    <a class="dropdown-item" href="javascript:;">Something else here</a>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <p class="text-sm mt-3"> For standing out. But the time is now to be okay to be the greatest you.  </p>
-            <hr class="horizontal dark">
-            <div class="row">
-              <div class="col-6">
-                <h6 class="text-sm mb-0">4</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Participants</p>
-              </div>
-              <div class="col-6 text-end">
-                <h6 class="text-sm mb-0">16.01.22</h6>
-                <p class="text-secondary text-sm font-weight-bold mb-0">Due date</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-md-6 mb-4">
-        <div class="card h-100">
-          <div class="card-body d-flex flex-column justify-content-center text-center">
-            <a href="javascript:;">
-              <i class="fa fa-plus text-secondary mb-3"></i>
-              <h5 class=" text-secondary"> New project </h5>
-            </a>
-          </div>
-        </div>
-      </div>
-
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/blog-posts.html b/sections/page-sections/blog-posts.html deleted file mode 100644 index 625ce5d5..00000000 --- a/sections/page-sections/blog-posts.html +++ /dev/null @@ -1,3133 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Blog Posts

-
- -
-
-
-
-

Blog 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-3">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto">
-        <div class="p-3 text-center mb-5">
-          <div class="icon icon-shape icon-lg bg-gradient-primary shadow mx-auto">
-            <i class="fas fa-user"></i>
-          </div>
-          <h2 class="mt-3">Check out what&#39;s new</h2>
-          <p>We get insulted by others, lose trust for those others. We get back freezes every winter</p>
-        </div>
-      </div>
-    </div>
-    <div class="row mb-5">
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-background align-items-start h-100">
-          <div class="full-background" style="background-image: url(https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/beach.jpg)"></div>
-          <div class="card-body z-index-3">
-            <div class="icon icon-md">
-              <svg width="30px" height="30px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>spaceship</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                  <g transform="translate(-1720.000000, -592.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                    <g transform="translate(1716.000000, 291.000000)">
-                      <g transform="translate(4.000000, 301.000000)">
-                        <path d="M39.3,0.706666667 C38.9660984,0.370464027 38.5048767,0.192278529 38.0316667,0.216666667 C14.6516667,1.43666667 6.015,22.2633333 5.93166667,22.4733333 C5.68236407,23.0926189 5.82664679,23.8009159 6.29833333,24.2733333 L15.7266667,33.7016667 C16.2013871,34.1756798 16.9140329,34.3188658 17.535,34.065 C17.7433333,33.98 38.4583333,25.2466667 39.7816667,1.97666667 C39.8087196,1.50414529 39.6335979,1.04240574 39.3,0.706666667 Z M25.69,19.0233333 C24.7367525,19.9768687 23.3029475,20.2622391 22.0572426,19.7463614 C20.8115377,19.2304837 19.9992882,18.0149658 19.9992882,16.6666667 C19.9992882,15.3183676 20.8115377,14.1028496 22.0572426,13.5869719 C23.3029475,13.0710943 24.7367525,13.3564646 25.69,14.31 C26.9912731,15.6116662 26.9912731,17.7216672 25.69,19.0233333 L25.69,19.0233333 Z"></path>
-                        <path d="M1.855,31.4066667 C3.05106558,30.2024182 4.79973884,29.7296005 6.43969145,30.1670277 C8.07964407,30.6044549 9.36054508,31.8853559 9.7979723,33.5253085 C10.2353995,35.1652612 9.76258177,36.9139344 8.55833333,38.11 C6.70666667,39.9616667 0,40 0,40 C0,40 0,33.2566667 1.855,31.4066667 Z"></path>
-                        <path d="M17.2616667,3.90166667 C12.4943643,3.07192755 7.62174065,4.61673894 4.20333333,8.04166667 C3.31200265,8.94126033 2.53706177,9.94913142 1.89666667,11.0416667 C1.5109569,11.6966059 1.61721591,12.5295394 2.155,13.0666667 L5.47,16.3833333 C8.55036617,11.4946947 12.5559074,7.25476565 17.2616667,3.90166667 L17.2616667,3.90166667 Z" opacity="0.598539807"></path>
-                        <path d="M36.0983333,22.7383333 C36.9280725,27.5056357 35.3832611,32.3782594 31.9583333,35.7966667 C31.0587397,36.6879974 30.0508686,37.4629382 28.9583333,38.1033333 C28.3033941,38.4890431 27.4704606,38.3827841 26.9333333,37.845 L23.6166667,34.53 C28.5053053,31.4496338 32.7452344,27.4440926 36.0983333,22.7383333 L36.0983333,22.7383333 Z" id="color-3" opacity="0.598539807"></path>
-                      </g>
-                    </g>
-                  </g>
-                </g>
-              </svg>
-            </div>
-          </div>
-          <div class="card-footer pb-3 pt-2 z-index-3">
-            <h4 class="text-white mb-1">Nature&#39;s Light</h4>
-            <p class="text-white text-xs font-weight-bolder text-uppercase opacity-7">450 spots</p>
-          </div>
-          <span class="mask bg-gradient-primary border-radius-xl z-index-2 opacity-6"></span>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 d-flex flex-column">
-        <div class="card h-100 card-background align-items-start">
-          <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/indian.jpg&#39;)"></div>
-          <div class="card-body z-index-3">
-            <div class="icon icon-md">
-              <svg width="30px" height="30px" viewBox="0 0 44 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>megaphone</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                  <g transform="translate(-2168.000000, -591.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                    <g transform="translate(1716.000000, 291.000000)">
-                      <g id="megaphone" transform="translate(452.000000, 300.000000)">
-                        <path d="M35.7958333,0.273166667 C35.2558424,-0.0603712374 34.5817509,-0.0908856664 34.0138333,0.1925 L19.734,7.33333333 L9.16666667,7.33333333 C4.10405646,7.33333333 0,11.4373898 0,16.5 C0,21.5626102 4.10405646,25.6666667 9.16666667,25.6666667 L19.734,25.6666667 L34.0138333,32.8166667 C34.5837412,33.1014624 35.2606401,33.0699651 35.8016385,32.7334768 C36.3426368,32.3969885 36.6701539,31.8037627 36.6666942,31.1666667 L36.6666942,1.83333333 C36.6666942,1.19744715 36.3370375,0.607006911 35.7958333,0.273166667 Z"></path>
-                        <path d="M38.5,11 L38.5,22 C41.5375661,22 44,19.5375661 44,16.5 C44,13.4624339 41.5375661,11 38.5,11 Z" opacity="0.601050967"></path>
-                        <path d="M18.5936667,29.3333333 L10.6571667,29.3333333 L14.9361667,39.864 C15.7423448,41.6604248 17.8234451,42.4993948 19.6501416,41.764381 C21.4768381,41.0293672 22.3968823,38.982817 21.7341667,37.1286667 L18.5936667,29.3333333 Z" opacity="0.601050967"></path>
-                      </g>
-                    </g>
-                  </g>
-                </g>
-              </svg>
-            </div>
-          </div>
-          <div class="card-footer pb-3 pt-2 z-index-3">
-            <h4 class="text-white mb-1">Cultural</h4>
-            <p class="text-white text-xs font-weight-bolder text-uppercase opacity-7">257 spots</p>
-          </div>
-          <span class="mask bg-gradient-info border-radius-xl z-index-2 opacity-6"></span>
-        </div>
-        <div class="card h-100 card-background mt-4 align-items-start">
-          <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/greece.jpg&#39;)"></div>
-          <div class="card-body z-index-3">
-            <div class="icon icon-md">
-              <svg width="30px" height="30px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>customer-support</title>
-                  <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                      <g transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                          <g transform="translate(1716.000000, 291.000000)">
-                              <g transform="translate(1.000000, 0.000000)">
-                                  <path d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" opacity="0.59858631"></path>
-                                  <path d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z"></path>
-                                  <path d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z"></path>
-                              </g>
-                          </g>
-                      </g>
-                  </g>
-              </svg>
-            </div>
-          </div>
-          <div class="card-footer pb-3 pt-2 z-index-3">
-            <h4 class="text-white mb-1">Popularity</h4>
-            <p class="text-white text-xs font-weight-bolder text-uppercase opacity-7">363 spots</p>
-          </div>
-          <span class="mask bg-gradient-primary border-radius-xl z-index-2 opacity-6"></span>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 d-flex flex-column">
-        <div class="card card-background align-items-start">
-          <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/city.jpg&#39;)"></div>
-          <div class="card-body z-index-3">
-            <div class="icon icon-md">
-              <svg width="30px" height="30px" viewBox="0 0 52 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                <title>sound-wave</title>
-                <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g transform="translate(-2015.000000, -596.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                        <g transform="translate(1716.000000, 291.000000)">
-                            <g id="sound-wave" transform="translate(299.000000, 305.000000)">
-                                <path d="M15.2941176,30.5882353 C14.6024837,30.5882353 13.9754248,30.1667974 13.7154248,29.5210458 L8.11777778,15.5269281 L6.51189542,17.9366013 C6.19581699,18.4090196 5.66562092,18.6928105 5.09803922,18.6928105 L0,18.6928105 L0,15.2941176 L4.18888889,15.2941176 L7.08287582,10.9522876 C7.43294118,10.4288889 8.03281046,10.1467974 8.67346405,10.2045752 C9.30052288,10.2708497 9.84261438,10.6769935 10.0754248,11.263268 L15.0969935,23.8214379 L22.1696732,1.19294118 C22.3905882,0.482614379 23.0465359,0 23.7908497,0 C23.792549,0 23.792549,0 23.7942484,0 C24.5385621,0.00169934641 25.1962092,0.487712418 25.4154248,1.19973856 L31.2305882,20.1015686 L34.3267974,15.9738562 C34.6462745,15.5456209 35.1509804,15.2941176 35.6862745,15.2941176 L40.7843137,15.2941176 L40.7843137,18.6928105 L36.5359477,18.6928105 L31.9477124,24.8104575 C31.5653595,25.3202614 30.9298039,25.5717647 30.2959477,25.4647059 C29.6671895,25.3542484 29.1522876,24.9005229 28.9636601,24.2904575 L23.7772549,7.43803922 L16.9152941,29.3952941 C16.7011765,30.0818301 16.0792157,30.5593464 15.3603922,30.5865359 C15.3366013,30.5882353 15.3162092,30.5882353 15.2941176,30.5882353 Z"></path>
-                                <path d="M26.5098039,34.6666667 C25.8181699,34.6666667 25.1911111,34.2452288 24.9311111,33.5994771 L19.3334641,19.6053595 L17.7275817,22.0150327 C17.4115033,22.487451 16.8813072,22.7712418 16.3137255,22.7712418 L11.2156863,22.7712418 L11.2156863,19.372549 L15.4045752,19.372549 L18.2985621,15.030719 C18.6486275,14.5073203 19.2484967,14.2252288 19.8891503,14.2830065 C20.5162092,14.349281 21.0583007,14.7554248 21.2911111,15.3416993 L26.3126797,27.8998693 L33.3853595,5.27137255 C33.6062745,4.56104575 34.2622222,4.07843137 35.0065359,4.07843137 C35.0082353,4.07843137 35.0082353,4.07843137 35.0099346,4.07843137 C35.7542484,4.08013072 36.4118954,4.56614379 36.6311111,5.27816993 L42.4462745,24.18 L45.5424837,20.0522876 C45.8619608,19.6240523 46.3666667,19.372549 46.9019608,19.372549 L52,19.372549 L52,22.7712418 L47.751634,22.7712418 L43.1633987,28.8888889 C42.7810458,29.3986928 42.1454902,29.6501961 41.511634,29.5431373 C40.8828758,29.4326797 40.3679739,28.9789542 40.1793464,28.3688889 L34.9929412,11.5164706 L28.1309804,33.4737255 C27.9168627,34.1602614 27.294902,34.6377778 26.5760784,34.6649673 C26.5522876,34.6666667 26.5318954,34.6666667 26.5098039,34.6666667 Z" id="Path-Copy" opacity="0.604957217"></path>
-                            </g>
-                        </g>
-                    </g>
-                </g>
-              </svg>
-            </div>
-          </div>
-          <div class="card-footer pb-3 pt-5 z-index-3">
-            <h4 class="text-white mb-1">Modern Life</h4>
-            <p class="text-white text-xs font-weight-bolder text-uppercase opacity-7">117 spots</p>
-          </div>
-          <span class="mask bg-gradient-info border-radius-xl z-index-2 opacity-6"></span>
-        </div>
-        <div class="card card-background mt-4 align-items-start">
-          <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/laught.jpg&#39;)"></div>
-          <div class="card-body z-index-3">
-            <div class="icon icon-md">
-              <svg width="30px" height="30px" viewBox="0 0 42 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>time-alarm</title>
-                    <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <g transform="translate(-2319.000000, -440.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                            <g transform="translate(1716.000000, 291.000000)">
-                                <g id="time-alarm" transform="translate(603.000000, 149.000000)">
-                                    <path d="M18.8086957,4.70034783 C15.3814926,0.343541521 9.0713063,-0.410050841 4.7145,3.01715217 C0.357693695,6.44435519 -0.395898667,12.7545415 3.03130435,17.1113478 C5.53738466,10.3360568 11.6337901,5.54042955 18.8086957,4.70034783 L18.8086957,4.70034783 Z" opacity="0.6"></path>
-                                    <path d="M38.9686957,17.1113478 C42.3958987,12.7545415 41.6423063,6.44435519 37.2855,3.01715217 C32.9286937,-0.410050841 26.6185074,0.343541521 23.1913043,4.70034783 C30.3662099,5.54042955 36.4626153,10.3360568 38.9686957,17.1113478 Z" opacity="0.6"></path>
-                                    <path d="M34.3815652,34.7668696 C40.2057958,27.7073059 39.5440671,17.3375603 32.869743,11.0755718 C26.1954189,4.81358341 15.8045811,4.81358341 9.13025701,11.0755718 C2.45593289,17.3375603 1.79420418,27.7073059 7.61843478,34.7668696 L3.9753913,40.0506522 C3.58549114,40.5871271 3.51710058,41.2928217 3.79673036,41.8941824 C4.07636014,42.4955431 4.66004722,42.8980248 5.32153275,42.9456105 C5.98301828,42.9931963 6.61830436,42.6784048 6.98113043,42.1232609 L10.2744783,37.3434783 C16.5555112,42.3298213 25.4444888,42.3298213 31.7255217,37.3434783 L35.0188696,42.1196087 C35.6014207,42.9211577 36.7169135,43.1118605 37.53266,42.5493622 C38.3484064,41.9868639 38.5667083,40.8764423 38.0246087,40.047 L34.3815652,34.7668696 Z M30.1304348,25.5652174 L21,25.5652174 C20.49574,25.5652174 20.0869565,25.1564339 20.0869565,24.6521739 L20.0869565,15.5217391 C20.0869565,15.0174791 20.49574,14.6086957 21,14.6086957 C21.50426,14.6086957 21.9130435,15.0174791 21.9130435,15.5217391 L21.9130435,23.7391304 L30.1304348,23.7391304 C30.6346948,23.7391304 31.0434783,24.1479139 31.0434783,24.6521739 C31.0434783,25.1564339 30.6346948,25.5652174 30.1304348,25.5652174 Z"></path>
-                                </g>
-                            </g>
-                        </g>
-                    </g>
-                </svg>
-            </div>
-          </div>
-          <div class="card-footer pb-3 pt-2 z-index-3">
-            <h4 class="text-white mb-1">Good Vibes</h4>
-            <p class="text-white text-xs font-weight-bolder text-uppercase opacity-7">215 spots</p>
-          </div>
-          <span class="mask bg-gradient-primary border-radius-xl z-index-2 opacity-6"></span>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Blogs w/ 3 images & quote & text -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-        <div class="col-md-6 position-relative">
-          <div class="position-relative ms-md-5 me-md-n5">
-            <div class="blur-shadow-image">
-              <img class="image-left rounded-3 img-fluid position-relative top-0 end-0 bg-cover" src="../../assets/img/curved-images/curved5-small.jpg">
-            </div>
-          </div>
-
-          <p class="blockquote border border-primary rounded w-50 p-3 text-sm text-primary float-md-end mt-4 me-md-n2 mx-auto">"Over the span of the satellite record, Arctic sea ice has been declining significantly, while sea ice in the Antarctichas increased very slightly"
-              <br>
-              <br>
-              <small>-NOAA</small>
-          </p>
-          <!-- Second image on the left side of the article -->
-          <div class="position-absolute bottom-0 mb-10 ms-n2 me-3 start-0 end-2 d-md-block d-none">
-            <div class="blur-shadow-image">
-              <img class="image-container rounded-3 img-fluid position-relative bg-cover" src="../../assets/img/curved-images/curved11-small.jpg">
-            </div>
-          </div>
-
-        </div>
-        <div class="col-md-5">
-            <!-- First image on the right side, above the article -->
-            <div class="position-relative ms-n4 mb-5 mt-8 d-md-block d-none">
-              <div class="blur-shadow-image">
-                <img class="image-right rounded-3 img-fluid position-relative bg-cover" src="../../assets/img/curved-images/curved6-small.jpg">
-              </div>
-            </div>
-            <h3 class="mb-4">So what does the new record for the lowest level of winter ice actually mean</h3>
-            <p>The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever happens with climate change. Even if the Arctic continues to be one of the fastest-warming regions of the world, it will always be plunged into bitterly cold polar dark every winter. And year-by-year, for all kinds of natural reasons, there’s huge variety of the state of the ice.
-            </p>
-            <p>
-                For a start, it does not automatically follow that a record amount of ice will melt this summer. More important for determining the size of the annual thaw is the state of the weather as the midnight sun approaches and temperatures rise. But over the more than 30 years of satellite records, scientists have observed a clear pattern of decline, decade-by-decade.
-            </p>
-            <p>The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever happens with climate change. Even if the Arctic continues to be one of the fastest-warming regions of the world, it will always be plunged into bitterly cold polar dark every winter. And year-by-year, for all kinds of natural reasons, there’s huge variety of the state of the ice.
-            </p>
-        </div>
-    </div>
-</div>
-</section>
-<!-- END Blogs w/ 3 images & quote & text -->
-
-
-
-
-
-
-
-
-
-

Blog 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-12">
-        <div class="row">
-          <div class="col-lg-6 justify-content-center d-flex flex-column">
-            <div class="card rounded-3">
-              <div class="d-block blur-shadow-image">
-                <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/spot.jpg" alt="img-blur-shadow-blog-2" class="img-fluid shadow rounded-3">
-              </div>
-            </div>
-          </div>
-          <div class="col-lg-6 justify-content-center d-flex flex-column ps-lg-5 pt-lg-0 pt-3">
-            <h6 class="category text-info mt-3">Coworking</h6>
-            <h3>
-              <a href="javascript:;" class="text-darker">Warner Music Group buys concert discovery service Songkick</a>
-            </h3>
-            <p>
-              Warner Music Group announced today it’s acquiring the selected assets of the music platform Songkick, including its app for finding concerts and the company’s trademark. Songkick has been involved in a lawsuit against the major… <a href="javascript:;" class="text-darker icon-move-right text-sm">Read More
-                <i class="fas fa-arrow-right text-xs ms-1"></i>
-              </a>
-            </p>
-            <p class="author">
-              by <a href="javascript:;" class="ms-1"><span class="font-weight-bold text-info">Sarah Perez</span></a>, 2 days ago
-            </p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-12 mt-5">
-        <div class="row flex-row-reverse">
-          <div class="col-lg-6 justify-content-center d-flex flex-column">
-            <div class="card rounded-3">
-              <div class="blur-shadow-image">
-                <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/couch.jpg" alt="img-blur-shadow-blog-2" class="img-fluid shadow rounded-3">
-              </div>
-            </div>
-          </div>
-          <div class="col-lg-6 pe-lg-5 justify-content-center d-flex flex-column pt-lg-0 pt-3">
-            <h6 class="category text-info mt-3">House</h6>
-            <h3>
-              <a href="javascript:;" class="text-darker">Warner Music Group buys concert discovery service Songkick</a>
-            </h3>
-            <p>
-              Warner Music Group announced today it’s acquiring the selected assets of the music platform Songkick, including its app for finding concerts and the company’s trademark. Songkick has been involved in a lawsuit against the major… <a href="javascript:;" class="text-darker icon-move-right text-sm">Read More
-                <i class="fas fa-arrow-right text-xs ms-1"></i>
-              </a>
-            </p>
-            <p class="author">
-              by <a href="javascript:;" class="ms-1"><span class="font-weight-bold text-info">Millie Borough</span></a>, 10 days ago
-            </p>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="pt-5 pb-0">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/house.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Entire Apartment • 3 Guests • 2 Beds</p>
-            <a href="javascript:;">
-              <h5>
-                Lovely and cosy apartment
-              </h5>
-            </a>
-            <p>
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers to turn on or off their television, change inputs, fast forward.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/pool.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Private Room • 1 Guests • 1 Sofa</p>
-            <a href="javascript:;">
-              <h5>
-                Single room in the center of the city
-              </h5>
-            </a>
-            <p>
-              As Uber works through a huge amount of internal management turmoil, the company is also consolidating and rationalizing more of its international business.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/antalya.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Entire Apartment • 4 Guests • 2 Beds</p>
-            <a href="javascript:;">
-              <h5>
-                Independent house bedroom kitchen
-              </h5>
-            </a>
-            <p>
-              Music is something that every person has his or her own specific opinion about. Different people have different taste, and various types of music.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/tiny-house.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Entire Apartment • 2 Guests • 1 Bed</p>
-            <a href="javascript:;">
-              <h5>
-                Zen Gateway with pool and garden
-              </h5>
-            </a>
-            <p>
-              Fast forward, rewind and more, without having to first invoke a specific skill, or even
-              press a button on their remote.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/air-bnb.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Entire Flat • 8 Guests • 3 Rooms</p>
-            <a href="javascript:;">
-              <h5>
-                Cheapest hotels for a luxury vacation
-              </h5>
-            </a>
-            <p>
-              Today, the company announced it will be combining its rides-on-demand business and UberEATS.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/palm-house.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-dark mb-2 text-sm">Entire Apartment • 2 Guests • 1 Bed</p>
-            <a href="javascript:;">
-              <h5>
-                Cozy Double Room Near Station
-              </h5>
-            </a>
-            <p>
-              Different people have different taste, and various types of music have many ways of leaving an impact on someone.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-sm-7 ms-auto text-end">
-        <ul class="pagination pagination-primary mt-4">
-          <li class="page-item ms-auto">
-            <a class="page-link" href="javascript:;" aria-label="Previous">
-              <span aria-hidden="true"><i class="fa fa-angle-double-left" aria-hidden="true"></i></span>
-            </a>
-          </li>
-          <li class="page-item active">
-            <a class="page-link" href="javascript:;">1</a>
-          </li>
-          <li class="page-item">
-            <a class="page-link" href="javascript:;">2</a>
-          </li>
-          <li class="page-item">
-            <a class="page-link" href="javascript:;">3</a>
-          </li>
-          <li class="page-item">
-            <a class="page-link" href="javascript:;">4</a>
-          </li>
-          <li class="page-item">
-            <a class="page-link" href="javascript:;">5</a>
-          </li>
-          <li class="page-item">
-            <a class="page-link" href="javascript:;" aria-label="Next">
-              <span aria-hidden="true"><i class="fa fa-angle-double-right" aria-hidden="true"></i></span>
-            </a>
-          </li>
-        </ul>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Blogs w/ 3 rows w/ image on left & title, text, author on end-->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-10 ms-auto me-auto">
-        <div class="card card-plain card-blog mt-5">
-          <div class="row">
-            <div class="col-md-4">
-              <div class="card-image position-relative border-radius-lg">
-                <div class="blur-shadow-image">
-                  <img class="img border-radius-lg" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-cart.jpg">
-                </div>
-              </div>
-            </div>
-            <div class="col-md-7 my-auto ms-md-3 mt-md-auto mt-4">
-              <h3>
-                <a href="javascript:;" class="text-dark font-weight-normal">Miami raised $65 million for pet sitting</a>
-              </h3>
-              <p>
-                Finding temporary housing for your dog should be as easy as renting an Airbnb. That’s the idea behind Rover, which raised $65 million to expand its pet sitting and dog-walking businesses.. <a href="javascript:;" class="text-dark"> Read More </a>
-              </p>
-      				<div class="author">
-      				   <img src="../../assets/img/team-1.jpg" alt="..." class="avatar avatar-sm shadow me-2">
-      				   <p class="my-auto">Katie Roof</p>
-      				</div>
-            </div>
-          </div>
-        </div>
-
-        <div class="card card-plain card-blog mt-5">
-          <div class="row">
-            <div class="col-md-4">
-              <div class="card-image position-relative border-radius-lg">
-                <div class="blur-shadow-image">
-                  <img class="img border-radius-lg" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-flower.jpg">
-                </div>
-              </div>
-            </div>
-            <div class="col-md-7 my-auto ms-md-3 mt-md-auto mt-4">
-              <h3>
-                <a href="javascript:;" class="text-dark font-weight-normal">MateLabs mixes machine learning</a>
-              </h3>
-              <p>
-                If you’ve ever wanted to train a machine learning model and integrate it with IFTTT, a new offering from MateLabs. MateVerse, a platform where novices can spin out machine... <a href="javascript:;" class="text-dark"> Read More </a>
-              </p>
-              <div class="author">
-               <img src="../../assets/img/team-3.jpg" alt="..." class="avatar avatar-sm shadow me-2">
-               <p class="my-auto">John Mannes</p>
-              </div>
-            </div>
-          </div>
-        </div>
-
-        <div class="card card-plain card-blog mt-5">
-          <div class="row">
-            <div class="col-md-4">
-              <div class="card-image position-relative border-radius-lg">
-                <div class="blur-shadow-image">
-                  <img class="img border-radius-lg" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-stair.jpg">
-                </div>
-              </div>
-            </div>
-            <div class="col-md-7 my-auto ms-md-3 mt-md-auto mt-4">
-              <h3>
-                  <a href="javascript:;" class="text-dark font-weight-normal">US venture investment ticks up</a>
-              </h3>
-              <p>
-                  Venture investment in U.S. startups rose sequentially in the second quarter of 2017, boosted by large, late-stage financings and a few outsized early-stage rounds in tech and healthcare.. <a href="javascript:;" class="text-dark"> Read More </a>
-              </p>
-              <div class="author">
-                 <img src="../../assets/img/team-4.jpg" alt="..." class="avatar avatar-sm shadow me-2">
-                 <p class="my-auto">Devin Coldewey</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Blogs w/ 3 rows w/ image on left & title, text, author on end-->
-
-
-
-
-
-
-
-
-
-

Blog 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5 bg-gray-100">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-8 mx-auto text-center">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/devices-table.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-0 pt-4">
-            <p class="text-gradient text-primary text-gradient font-weight-bold text-sm text-uppercase">Enterprise</p>
-            <a href="javascript:;">
-              <h4>
-                Siri brings hands-free TV to more devices
-              </h4>
-            </a>
-            <p>
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers to turn on or off their television, change inputs, fast forward, rewind and more, without having to first invoke a specific skill, or even
-              press a button on their remote.
-            </p>
-            <button type="button" class="btn bg-gradient-primary mt-3">Read more</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-8 mx-auto text-center mt-5">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/mic.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body px-0 pt-4">
-            <p class="text-gradient text-warning text-gradient font-weight-bold text-sm text-uppercase">Music</p>
-            <a href="javascript:;">
-              <h4>
-                Shark Week: How to Watch It Scientist
-              </h4>
-            </a>
-            <p>
-              As Uber works through a huge amount of internal management turmoil, the company is also consolidating and rationalizing more of its international business. Today, the company announced it will be combining its rides-on-demand business
-              and UberEATS.
-            </p>
-            <button type="button" class="btn bg-gradient-warning mt-3">Read more</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-6 bg-gray-100">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-4 mb-lg-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="../../assets/img/blog7-1.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <span class="text-gradient text-warning text-uppercase text-xs font-weight-bold my-2">House</span>
-            <a href="javascript:;" class="card-title h5 d-block text-darker">
-              Shared Coworking
-            </a>
-            <p class="card-description mb-4">
-              Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons.
-            </p>
-            <div class="author align-items-center">
-              <img src="../../assets/img/team-2.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-3">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small>Posted on 28 February</small>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 mb-lg-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="../../assets/img/blog7-2.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <span class="text-gradient text-info text-uppercase text-xs font-weight-bold my-2">Office</span>
-            <a href="javascript:;" class="text-darker card-title h5 d-block">
-              Really Housekeeping
-            </a>
-            <p class="card-description mb-4">
-              Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons.
-            </p>
-            <div class="author align-items-center">
-              <img src="../../assets/img/ivana-square.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-3">
-                <span>Chriss Smahos</span>
-                <div class="stats">
-                  <small>Posted 2 min ago</small>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 mb-lg-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="../../assets/img/blog7-3.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <span class="text-gradient text-warning text-uppercase text-xs font-weight-bold my-2">Hub</span>
-            <a href="javascript:;" class="text-darker card-title h5 d-block">
-              Shared Coworking
-            </a>
-            <p class="card-description mb-4">
-              Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons.
-            </p>
-            <div class="author align-items-center">
-              <img src="../../assets/img/marie.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-3">
-                <span>Elijah Miller</span>
-                <div class="stats">
-                  <small>Posted now</small>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Blogs w/ 4 cards w/ image & text & link -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-3 col-sm-6">
-        <div class="card card-plain card-blog mt-4">
-          <div class="card-image border-radius-lg position-relative">
-            <a href="javascript:;">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg move-on-hover" src="../../assets/img/curved-images/curved-8.jpg">
-              </div>
-            </a>
-          </div>
-          <div class="card-body px-0">
-            <h5>
-              <a href="javascript:;" class="text-dark font-weight-bold">Rover raised $65 million for pet sitting</a>
-            </h5>
-            <p>
-              Finding temporary housing for your dog should be as easy as
-              renting an Airbnb. That’s the idea behind Rover ...
-            </p>
-            <a href="javascript:;" class="text-info icon-move-right">Read More
-              <i class="fas fa-arrow-right text-sm"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6">
-        <div class="card card-plain card-blog mt-4">
-          <div class="card-image border-radius-lg position-relative">
-            <a href="javascript:;">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg move-on-hover" src="../../assets/img/curved-images/curved-10.jpg">
-              </div>
-            </a>
-          </div>
-          <div class="card-body px-0">
-            <h5>
-              <a href="javascript:;" class="text-dark font-weight-bold">MateLabs mixes machine learning with IFTTT</a>
-            </h5>
-            <p>
-              If you’ve ever wanted to train a machine learning model
-              and integrate it with IFTTT, you now can with ...
-            </p>
-            <a href="javascript:;" class="text-info icon-move-right">Read More
-              <i class="fas fa-arrow-right text-sm"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6">
-        <div class="card card-plain card-blog mt-4">
-          <div class="card-image border-radius-lg position-relative">
-            <a href="javascript:;">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg move-on-hover" src="../../assets/img/curved-images/curved-6.jpg">
-              </div>
-            </a>
-          </div>
-          <div class="card-body px-0">
-            <h5>
-              <a href="javascript:;" class="text-dark font-weight-bold">US venture investment ticks up</a>
-            </h5>
-            <p>
-              Venture investment in U.S. startups rose sequentially in
-              the second quarter of 2017, boosted by large, ate-stage financings
-            </p>
-            <a href="javascript:;" class="text-info icon-move-right">Read More
-              <i class="fas fa-arrow-right text-sm"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6">
-        <div class="card card-plain card-blog mt-4">
-          <div class="card-image border-radius-lg position-relative">
-            <a href="javascript:;">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg move-on-hover" src="../../assets/img/curved-images/curved-11.jpg">
-              </div>
-            </a>
-          </div>
-          <div class="card-body px-0">
-            <h5>
-              <a href="javascript:;" class="text-dark font-weight-bold"> Startup Insticator raises $5.2M</a>
-            </h5>
-            <p>
-              Insticator is announcing that it has raised $5.2 million in Series A funding.
-              The startup allows online publishers to add quizzes ...
-            </p>
-            <a href="javascript:;" class="text-info icon-move-right">Read More
-              <i class="fas fa-arrow-right text-sm"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Blogs w/ 4 cards w/ image & text & link -->
-
-
-
-
-
-
-
-
-
-

Blog 9

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-8 bg-gradient-primary position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" class="position-absolute top-0 d-lg-block d-none opacity-6" alt="">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <div class="container">
-    <div class="row mb-5">
-      <div class="col-lg-8 mx-auto text-center">
-        <h3 class="text-white">Latest Blog Posts</h3>
-        <p class="lead text-white">The time is now for it to be okay to be great. People in this world should.</p>
-      </div>
-    </div>
-    <div class="row d-flex align-items-center">
-      <div class="col-lg-3 col-md-6 text-center">
-        <div class="card card-blog card-plain">
-          <a href="javascript:;">
-            <img class="w-100 shadow border-radius-md" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/cristal-laptop.jpg">
-          </a>
-          <div class="card-body px-0">
-            <h4 class="text-white">Siri brings hands-free</h4>
-            <p class="text-white opacity-6">
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers
-            </p>
-            <button type="button" class="btn btn-outline-white border-2 btn-rounded">Read more</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 text-center">
-        <div class="card card-blog card-plain">
-          <a href="javascript:;">
-            <img class="w-100 shadow border-radius-md" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/applewatch.jpg">
-          </a>
-          <div class="card-body px-0">
-            <h4 class="text-white">Soft UI Design System</h4>
-            <p class="text-white opacity-6">
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers
-            </p>
-            <button type="button" class="btn btn-outline-white border-2 btn-rounded">Read more</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 text-center">
-        <div class="card card-blog card-plain">
-          <a href="javascript:;">
-            <img class="w-100 shadow border-radius-md" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/morning-coffee.jpg">
-          </a>
-          <div class="card-body px-0">
-            <h4 class="text-white">Grow Your Business</h4>
-            <p class="text-white opacity-6">
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers
-            </p>
-            <button type="button" class="btn btn-outline-white border-2 btn-rounded">Read more</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 text-center">
-        <div class="card card-blog card-plain">
-          <a href="javascript:;">
-            <img class="w-100 shadow border-radius-md" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/imac.jpg">
-          </a>
-          <div class="card-body px-0">
-            <h4 class="text-white">Train Your Brain</h4>
-            <p class="text-white opacity-6">
-              Siri&#39;s latest trick is offering a hands-free TV viewing experience, that will allow consumers
-            </p>
-            <button type="button" class="btn btn-outline-white border-2 btn-rounded">Read more</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 10

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row text-center justify-content-center">
-      <div class="col-lg-6">
-        <h3 class="mt-4">
-          <span class="text-gradient text-info">Build something great</span>
-          <br><span> with our products</span>
-        </h3>
-        <p class="lead">We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game of life you need to appreciate every moment.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-4">
-        <!-- Start Card Blog Fullbackground - text centered -->
-        <a href="javascript:;">
-          <div class="card card-background move-on-hover">
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/white-architecture.jpg&#39;)"></div>
-            <div class="card-body pt-12">
-              <h4 class="text-white">Search and Discovery</h4>
-              <p>Website visitors today demand a frictionless user expericence — especially when using search. Because of the hight standards.</p>
-            </div>
-          </div>
-        </a>
-        <!-- End Card Blog Fullbackground - text centered -->
-      </div>
-      <div class="col-lg-4">
-        <!-- Start Card Blog Fullbackground - text centered -->
-        <a href="javascript:;">
-          <div class="card card-background move-on-hover">
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-flats.jpg&#39;)"></div>
-            <div class="card-body pt-12">
-              <h4 class="text-white">Search and Discovery</h4>
-              <p>Website visitors today demand a frictionless user expericence — especially when using search. Because of the hight standards.</p>
-            </div>
-          </div>
-        </a>
-        <!-- End Card Blog Fullbackground - text centered -->
-      </div>
-      <div class="col-lg-4">
-        <!-- Start Card Blog Fullbackground - text centered -->
-        <a href="javascript:;">
-          <div class="card card-background move-on-hover">
-            <div class="full-background" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-detail.jpg&#39;)"></div>
-            <div class="card-body pt-12">
-              <h4 class="text-white">Search and Discovery</h4>
-              <p>Website visitors today demand a frictionless user expericence — especially when using search. Because of the hight standards.</p>
-            </div>
-          </div>
-        </a>
-        <!-- End Card Blog Fullbackground - text centered -->
-      </div>
-
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Blog 11

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Blogs w/ big image on left -->
-<section class="py-5">
-  <div class="container-fluid">
-    <div class="row">
-      <div class="col-lg-5 col-6 mx-lg-0 mx-auto px-lg-0 px-md-0 my-auto">
-        <img class="w-100 border-radius-lg shadow" src="../../assets/img/toa-heftiba.jpg">
-      </div>
-      <div class="col-lg-4 col-10 d-flex justify-content-center flex-column mx-auto text-lg-start text-center">
-        <h2 class="mb-0 mt-lg-0 mt-4 text-gradient text-info">Read more about us</h2>
-        <h2 class="mb-4">And find some great partners</h2>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter. </p>
-        <ul class="m-lg-2 m-auto">
-          <li class="lead mb-2">People are so scared to lose their hope</li>
-          <li class="lead mb-2">That’s the main thing people </li>
-          <li class="lead mb-2">Thoughts- their perception of themselves!</li>
-        </ul>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter.</p>
-        <h3 class="mt-4">We will be with you forever</h3>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter.</p>
-        <p class="blockquote my-3 ps-2">
-          <span class="text-bold">“And thank you for turning my personal jean jacket into a couture piece.”</span>
-          <br>
-          <small class="blockquote-footer">
-            Kanye West, Producer.
-          </small>
-        </p>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Blogs w/ big image on left -->
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/call-to-actions.html b/sections/page-sections/call-to-actions.html deleted file mode 100644 index c640aaf8..00000000 --- a/sections/page-sections/call-to-actions.html +++ /dev/null @@ -1,1616 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Call to Action

-
- -
-
-
-
-

Prefooter 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START PRE-FOOTER 1 w/ SUBSCRIBE BUTTON AND IMAGE ------- -->
-<section class="py-7 mt-1">
-  <div class="container-fluid px-0">
-    <div class="row justify-content-center text-center">
-      <div class="col-12 position-relative">
-        <div class="row bg-warning-soft bottom-0 py-7">
-          <div class="col-xl-6 text-start ms-auto">
-            <h4>Be the first to see the news</h4>
-            <p class="mb-4">
-              Your company may not be in the software business,
-              but eventually, a software company will be in your business.
-            </p>
-            <div class="row">
-              <div class="col-sm-5">
-                <div class="input-group">
-                  <input type="text" class="form-control mb-sm-0 mb-2" placeholder="Email Here...">
-                </div>
-              </div>
-              <div class="col-sm-4">
-                <button type="button" class="btn bg-gradient-warning mb-0 h-100 position-relative z-index-2">Subscribe</button>
-              </div>
-            </div>
-          </div>
-
-          <div class="col-xl-4 position-relative">
-            <img class="w-100 border-radius-section border-top-end-radius-0 border-bottom-end-radius-0 end-0 position-absolute max-width-300 mt-n10 d-xl-block d-none" src="../../assets/img/curved-images/curved13.jpg" alt="image">
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END PRE-FOOTER 1 w/ SUBSCRIBE BUTTON AND IMAGE ------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START PRE-FOOTER 2 - simple social line w/ title & 3 buttons    -------- -->
-<div class="py-11">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6">
-        <h4 class="mb-1">Thank you for your support!</h4>
-        <p class="lead mb-0">Delivering the best products</p>
-      </div>
-      <div class="col-lg-6 d-flex align-items-center">
-        <a href="javascript:;" class="btn btn-twitter mb-0 me-2">
-          <i class="fab fa-twitter me-1"></i> Twitter
-        </a>
-        <a href="javascript:;" class="btn btn-facebook mb-0 me-2">
-          <i class="fab fa-facebook-square me-1"></i> Facebook
-        </a>
-        <a href="javascript:;" class="btn btn-tumblr mb-0 me-2">
-          <i class="fab fa-tumblr me-1"></i> Tumblr
-        </a>
-        <a href="javascript:;" class="btn btn-dribbble mb-0">
-          <i class="fab fa-dribbble me-1"></i> Dribbble
-        </a>
-      </div>
-    </div>
-  </div>
-</div>
-<!-- -------   END PRE-FOOTER 2 - simple social line w/ title & 3 buttons    -------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START PRE-FOOTER 3 w/ SOCIAL BUTTONS ------- -->
-<section class="my-11">
-  <div class="container bg-gradient-dark border-radius-lg">
-    <div class="row py-4">
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto mb-md-0 mb-4 border-end-md">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-twitter text-white text-lg"></i>
-        </a>
-      </div>
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto mb-md-0 mb-4 border-end-md">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-facebook text-white text-lg"></i>
-        </a>
-      </div>
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto mb-md-0 mb-4 border-end-md">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-pinterest text-white text-lg"></i>
-        </a>
-      </div>
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto border-end-md">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-dribbble text-white text-lg"></i>
-        </a>
-      </div>
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto border-end-md">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-youtube text-white text-lg"></i>
-        </a>
-      </div>
-      <div class="col-md-2 col-sm-4 col-6 text-center my-auto">
-        <a href="javascript:;" class="btn btn-link btn-icon mb-0">
-          <i class="fab fa-instagram text-white text-lg"></i>
-        </a>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END PRE-FOOTER 3 w/ SOCIAL BUTTONS ------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START PRE-FOOTER 4 - title & description and input    -------- -->
-<div class="py-11">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 text-start">
-        <h4>Get tips & tricks every week</h4>
-        <p class="mb-0">The latest news, articles and resources sent to your inbox weekely.</p>
-      </div>
-      <div class="col-lg-5 ms-auto text-end mt-4 mt-lg-0">
-        <div class="row">
-          <div class="col-lg-8 col-md-4 col-7">
-            <div class="form-group mb-0">
-              <div class="input-group">
-                <div class="input-group">
-                  <span class="input-group-text"><i class="ni ni-email-83"></i></span>
-                  <input class="form-control" placeholder="Your Email" type="email" >
-                </div>
-              </div>
-            </div>
-          </div>
-          <div class="col-lg-4 col-md-4 col-5 text-start">
-            <button type="button" class="btn bg-gradient-primary mb-0 h-100">Subscribe</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</div>
-<!-- -------   END PRE-FOOTER 4 - title & description and input    -------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START PRE-FOOTER 5 w/ DARK BACKGROUND ------- -->
-<section class="my-9 py-5 bg-gradient-dark position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-0 w-100 opacity-6">
-  <div class="container position-relative z-index-2">
-    <div class="row">
-      <div class="col-lg-6 col-md-8 m-auto text-center">
-        <h5 class="text-white">Be the first to see the news</h5>
-        <p class="mb-5 text-white">
-          Your company may not be in the software business,
-          but eventually, a software company will be in your business.
-        </p>
-        <div class="row">
-					<div class="col-sm-8 pe-sm-0 mb-sm-0 mb-2">
-            <div class="input-group">
-              <span class="input-group-text border-end-0"><i class="ni ni-email-83"></i></span>
-              <input class="form-control" placeholder="Email Here..." type="email" >
-            </div>
-					</div>
-					<div class="col-sm-4 ps-sm-0">
-						<button type="button" class="btn bg-gradient-primary mb-0 ms-sm-3 me-auto h-100 w-100 d-block">Subscribe</button>
-					</div>
-				</div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END PRE-FOOTER 5 w/ DARK BACKGROUND ------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START PRE-FOOTER 6 - title & description and input    -------- -->
-<div class="py-8">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center">
-        <h3>Our products are built on top</h3>
-        <p class="lead">Very nice logos here on this page, you can check more on our social profiles.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-2 col-md-4 col-6 mb-4 ms-auto">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-apple.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-mailchimp.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-behance.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-mailchimp.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4 me-auto">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-nasa.svg">
-      </div>
-    </div>
-  </div>
-</div>
-<!-- -------   END PRE-FOOTER 6 - title & description and input    -------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START PRE-FOOTER 7 w/ TEXT AND 2 BUTTONS ------- -->
-<section class="my-10 py-5 bg-gradient-dark position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-0 w-100 opacity-6">
-  <div class="container position-relative z-index-2">
-    <div class="row">
-      <div class="col-lg-5 col-md-8 m-auto text-start">
-        <h5 class="text-white mb-lg-0 mb-5">
-          Your company may not be in the software business,
-          but eventually, a software company will be in your business.
-        </h5>
-      </div>
-      <div class="col-lg-6 m-auto">
-        <div class="row">
-          <div class="col-sm-4 col-6 ps-sm-0 ms-auto">
-						<button type="button" class="btn bg-gradient-primary mb-0 ms-lg-3 ms-sm-2 mb-sm-0 mb-2 me-auto w-100 d-block">Start Now</button>
-					</div>
-					<div class="col-sm-4 col-6 ps-sm-0 me-lg-0 me-auto">
-						<button type="button" class="btn btn-white mb-0 ms-lg-3 ms-sm-2 mb-sm-0 mb-2 me-auto w-100 d-block">Our Story</button>
-					</div>
-				</div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END PRE-FOOTER 7 w/ TEXT AND 2 BUTTONS ------- -->
-
-
-
-
-
-
-
-
-
-

Prefooter 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START PRE-FOOTER 8 w/ TEXT, BG IMAGE AND 2 BUTTONS ------- -->
-<section class="my-10 py-5 bg-gradient-dark position-relative" style="background-image:url(../../assets/img/nastuh.jpg)">
-  <span class="mask bg-gradient-dark opacity-8"></span>
-  <div class="container position-relative z-index-2">
-    <div class="row">
-      <div class="col-lg-5 col-md-8 m-auto text-start">
-        <h5 class="text-white mb-lg-0 mb-5">
-          For being a bright color. For standing out. But the time is now to be okay to be the greatest you.
-        </h5>
-      </div>
-      <div class="col-lg-6 m-auto">
-        <div class="row">
-          <div class="col-sm-4 col-6 ps-sm-0 ms-auto">
-						<button type="button" class="btn bg-gradient-warning mb-0 ms-lg-3 ms-sm-2 mb-sm-0 mb-2 me-auto w-100 d-block">Start Now</button>
-					</div>
-				</div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END PRE-FOOTER 8 w/ TEXT, BG IMAGE AND 2 BUTTONS ------- -->
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/content-sections.html b/sections/page-sections/content-sections.html deleted file mode 100644 index 55ec6ac6..00000000 --- a/sections/page-sections/content-sections.html +++ /dev/null @@ -1,2284 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Content Sections

-
- -
-
-
-
-

Content 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START CONTENT 1 - title & description and 6 IMAGES   -------- -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-8 mx-auto text-center mb-5">
-        <span class="badge rounded-pill badge-primary mb-2">Co-working</span>
-        <h2>Explore our places in London </h2>
-        <p>
-          If you can’t decide, the answer is no. If two equally difficult paths,
-          choose the one more painful in the short term (pain avoidance
-          is creating an illusion of equality).
-        </p>
-      </div>
-    </div>
-    <div class="row min-vh-25">
-      <div class="col-sm-4 col-5 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/nastuh.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-      <div class="col-sm-3 col-7 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/card-3.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-      <div class="col-sm-5 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/card-2.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-    </div>
-    <div class="row min-vh-25 mt-4">
-      <div class="col-sm-3 col-7 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/meeting.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-      <div class="col-sm-5 col-5 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/anastasia.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-      <div class="col-sm-4 mb-sm-0 mb-3">
-        <div style="background-image: url(&#39;../../assets/img/annie-spratt.jpg&#39;)" class="w-100 h-100 border-radius-lg bg-cover"></div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------   END CONTENT 1 - title & description and 6 IMAGES   -------- -->
-
-
-
-
-
-
-
-
-
-

Content 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container-fluid">
-    <div class="row">
-      <div class="col-lg-5 col-6 mx-lg-0 mx-auto px-lg-0 px-md-0 my-auto">
-        <img class="w-100 border-radius-lg shadow" src="../../assets/img/toa-heftiba.jpg">
-      </div>
-      <div class="col-lg-4 col-10 d-flex justify-content-center flex-column mx-auto text-lg-start text-center">
-        <h2 class="mb-0 mt-lg-0 mt-4 text-gradient text-info">Read more about us</h2>
-        <h2 class="mb-4">And find some great partners</h2>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter. </p>
-        <ul class="m-lg-2 m-auto">
-          <li class="lead mb-2">People are so scared to lose their hope</li>
-          <li class="lead mb-2">That’s the main thing people </li>
-          <li class="lead mb-2">Thoughts- their perception of themselves!</li>
-        </ul>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter.</p>
-        <h3 class="mt-4">We will be with you forever</h3>
-        <p class="lead">It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter.</p>
-        <p class="blockquote my-3 ps-2">
-          <span class="text-bold">“And thank you for turning my personal jean jacket into a couture piece.”</span>
-          <br>
-          <small class="blockquote-footer">
-            Kanye West, Producer.
-          </small>
-        </p>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Content 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section>
-  <div class="container">
-    <div class="row py-5 align-items-center">
-      <div class="col-lg-6">
-        <h5>Avesome Product</h5>
-        <h2>Beautiful mobile Apps -<br> The Ultimate Secret</h2>
-      </div>
-      <div class="col-lg-6">
-        <div class="row">
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-google.svg">
-          </div>
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-pinterest.svg">
-          </div>
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-netflix.svg">
-          </div>
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-coinbase.svg">
-          </div>
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-facebook.svg">
-          </div>
-          <div class="col-lg-6">
-            <img class="w-100 my-3" src="../../assets/img/logos/medium-logos/logo-spotify.svg">
-          </div>
-        </div>
-      </div>
-    </div>
-    <div class="row pt-5">
-      <div class="col-md-4">
-        <div class="info">
-          <div class="icon icon-shape bg-gradient-warning shadow text-center mb-4">
-            <i class="fas fa-user"></i>
-          </div>
-          <h6>Social Conversations</h6>
-          <p>We get insulted by others, lose trust for those others. We get back stabbed by friends. It becomes harder for us to give others a hand.</p>
-          <a href="javascript:;" class="text-warning icon-move-right">More about us
-            <i class="fas fa-arrow-right text-sm ms-1"></i>
-          </a>
-        </div>
-      </div>
-      <div class="col-md-4">
-        <div class="info">
-          <div class="icon icon-shape bg-gradient-info shadow text-center mb-4">
-            <i class="fas fa-user"></i>
-          </div>
-          <h6>Social Conversations</h6>
-          <p>We get insulted by others, lose trust for those others. We get back stabbed by friends. It becomes harder for us to give others a hand.</p>
-          <a href="javascript:;" class="text-info icon-move-right">More about us
-            <i class="fas fa-arrow-right text-sm ms-1"></i>
-          </a>
-        </div>
-      </div>
-      <div class="col-md-4">
-        <div class="info">
-          <div class="icon icon-shape bg-gradient-danger shadow text-center mb-4">
-            <i class="fas fa-user"></i>
-          </div>
-          <h6>Social Conversations</h6>
-          <p>We get insulted by others, lose trust for those others. We get back stabbed by friends. It becomes harder for us to give others a hand.</p>
-          <a href="javascript:;" class="text-danger icon-move-right">More about us
-            <i class="fas fa-arrow-right text-sm ms-1"></i>
-          </a>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Content 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-10">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-8 ms-auto me-auto">
-
-          <div class="row">
-              <div class="col-md-6 my-auto">
-                  <div>
-                      <span class="badge badge-sm badge-primary">Photography</span>
-                      <span class="badge badge-sm badge-primary">Stories</span>
-                      <span class="badge badge-sm badge-primary">Castle</span>
-                  </div>
-              </div>
-              <div class="col-md-6">
-                  <a href="javascript:;" class="btn btn-pinterest btn-round mb-0 mx-1 mt-md-0 mt-4 float-md-end">
-                      <i class="fab fa-pinterest me-2"></i> 232
-                  </a>
-                  <a href="javascript:;" class="btn btn-twitter btn-round mb-0 mx-1 mt-md-0 mt-4 float-md-end">
-                      <i class="fab fa-twitter me-2"></i> 910
-                  </a>
-                  <a href="javascript:;" class="btn btn-facebook btn-round mb-0 mx-1 mt-md-0 mt-4 float-md-end">
-                      <i class="fab fa-facebook me-2"></i> 872
-                  </a>
-
-              </div>
-          </div>
-
-          <hr class="dark horizontal">
-
-          <div class="d-flex">
-            <div>
-              <a href="javascript:;">
-                <div class="position-relative">
-                  <div class="blur-shadow-avatar">
-                    <img class="avatar avatar-xxl rounded-circle" src="../../assets/img/team-2.jpg">
-                  </div>
-                </div>
-              </a>
-            </div>
-            <div class="ms-4 my-auto">
-              <h5>Alec Thompson</h5>
-              <p class="text-sm mb-0">I&#39;ve been trying to figure out the bed design for the master bedroom at our Hidden Hills compound...I like good music from Youtube.</p>
-            </div>
-            <div class="my-auto d-md-block d-none ms-2">
-                <button type="button" class="btn btn-dark pull-end btn-round mb-0">Follow</button>
-            </div>
-          </div>
-          <div class="my-auto d-md-none d-block ms-2">
-              <button type="button" class="btn btn-dark btn-round mt-3">Follow</button>
-          </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Content 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 ms-auto me-auto">
-        <div>
-            <h4 class="text-center mb-5">3 Comments</h4>
-            <div class="d-flex">
-                <div>
-                  <a href="javascript:;">
-                    <div class="position-relative">
-                      <div class="blur-shadow-avatar">
-                          <img class="avatar rounded-circle" src="../../assets/img/team-3.jpg" alt="...">
-                      </div>
-                    </div>
-                  </a>
-                </div>
-                <div class="ms-3">
-                    <h6>Tina Andrew <span class="text-muted text-xs">· 7 minutes ago</span></h6>
-
-                    <p>Chance too good. God level bars. I&#39;m so proud of @LifeOfDesiigner #1 song in the country. Panda! Don&#39;t be scared of the truth because we need to restart the human foundation in truth I stand with the most humility. We are so blessed!</p>
-                    <p>All praises and blessings to the families of people who never gave up on dreams. Don&#39;t forget, You&#39;re Awesome!</p>
-
-                    <div class="ms-auto text-end">
-                        <a href="javascript:;" class="btn text-dark px-2 btn-link" rel="tooltip" title="" data-original-title="Reply to Comment">
-                            <i class="fa fa-reply"></i> Reply
-                        </a>
-                        <a href="javascript:;" class="btn text-danger px-2 btn-link">
-                            <i class="fas fa-heart"></i> 243
-                        </a>
-                    </div>
-                </div>
-            </div>
-
-            <div class="d-flex">
-                <div>
-                  <a href="javascript:;">
-                    <div class="position-relative">
-                      <div class="blur-shadow-avatar">
-                          <img class="avatar rounded-circle" src="../../assets/img/team-4.jpg" alt="...">
-                      </div>
-                    </div>
-                  </a>
-                </div>
-                <div class="ms-3">
-                    <h6>John Camber <span class="text-muted text-xs">· Yesterday</span></h6>
-
-                    <p>Hello guys, nice to have you on the platform! There will be a lot of great stuff coming soon. We will keep you posted for the latest news.</p>
-                    <p>Don&#39;t forget, You&#39;re awesome!</p>
-
-                    <div class="ms-auto text-end">
-                        <a href="javascript:;" class="btn text-dark px-2 btn-link" rel="tooltip" title="" data-original-title="Reply to Comment">
-                            <i class="fa fa-reply"></i> Reply
-                        </a>
-                        <a href="javascript:;" class="btn text-danger px-2 btn-link">
-                            <i class="fas fa-heart"></i> 25
-                        </a>
-                    </div>
-
-                    <div class="d-flex">
-                        <div>
-                          <a href="javascript:;">
-                            <div class="position-relative">
-                              <div class="blur-shadow-avatar">
-                                  <img class="avatar rounded-circle" src="../../assets/img/team-2.jpg" alt="...">
-                              </div>
-                            </div>
-                          </a>
-                        </div>
-                        <div class="ms-3">
-                            <h6>Tina Andrew <span class="text-muted text-xs">· 2 minutes ago</span></h6>
-
-                            <p>Hello guys, nice to have you on the platform! There will be a lot of great stuff coming soon. We will keep you posted for the latest news.</p>
-                            <p>Don&#39;t forget, You&#39;re awesome!</p>
-
-                            <div class="ms-auto text-end">
-                                <a href="javascript:;" class="btn text-dark px-2 btn-link" rel="tooltip" title="" data-original-title="Reply to Comment">
-                                    <i class="fa fa-reply"></i> Reply
-                                </a>
-                                <a href="javascript:;" class="btn text-danger px-2 btn-link">
-                                    <i class="fas fa-heart"></i> 12
-                                </a>
-                            </div>
-                        </div>
-                    </div>
-
-                </div>
-
-            </div>
-
-
-        </div>
-          <h4 class="text-center mb-4 mt-5">Post your comment</h4>
-          <div class="d-flex">
-             <div>
-                <a class="author" href="javascript:;">
-                  <div class="position-relative">
-                    <div class="blur-shadow-avatar">
-                        <img class="avatar rounded-circle" alt="64x64" src="../../assets/img/team-2.jpg">
-                    </div>
-                  </div>
-                </a>
-              </div>
-              <div class="ms-3 w-100">
-                <textarea class="form-control" placeholder="Write a nice reply or go home..." rows="4"></textarea>
-                <div>
-                    <a href="javascript:;" class="btn bg-gradient-primary pull-end mt-2">
-                        <i class="fa fa-send me-2"></i> Reply
-                    </a>
-                </div>
-              </div>
-          </div> <!-- end media-post -->
-    </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Content 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Section Content W/ 2 images aside of icon title description -->
-<section class="py-7">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 col-md-8 order-2 order-md-2 order-lg-1">
-        <div class="position-relative ms-md-5 mb-0 mb-md-7 mb-lg-0 d-none d-md-block d-lg-block d-xl-block h-75">
-          <div class="bg-gradient-info w-100 h-100 border-radius-xl position-absolute" alt=""></div>
-          <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-city.jpg" class="w-100 border-radius-xl mt-6 ms-5 position-absolute" alt="">
-        </div>
-      </div>
-      <div class="col-lg-5 col-md-12 ms-auto order-1 order-md-1 order-lg-1">
-        <div class="p-3 pt-0">
-            <div class="icon icon-shape bg-gradient-info rounded-circle shadow text-center mb-4">
-              <i class="ni ni-building"></i>
-            </div>
-            <h4 class="text-gradient text-info mb-0">Social Conversations</h4>
-            <h4 class="mb-4">Refreshing workspace atmosphere</h4>
-            <p>We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams. <br><br> If you have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed.</p>
-            <a href="javascript:;" class="text-dark icon-move-right">More about us
-              <i class="fas fa-arrow-right text-sm ms-1"></i>
-            </a>
-          </div>
-      </div>
-    </div>
-    <div class="row mt-0 mt-md-5 mt-lg-8">
-      <div class="col-lg-5 col-md-12 me-auto">
-        <div class="p-3 pt-0">
-            <div class="icon icon-shape bg-gradient-warning rounded-circle shadow text-center mb-4">
-              <i class="fas fa-trophy"></i>
-            </div>
-            <h4 class="text-gradient text-warning mb-0">Luxury Sensation</h4>
-            <h4 class="mb-4">Stand up for every move</h4>
-            <p>Society has put up so many boundaries, so many limitations on what’s right and wrong that it’s almost impossible to get a pure thought out.It’s like a little kid, a little boy, looking at colors. <br> <br> Before somebody tells you you shouldn’t like pink because that’s for girls, or you’d instantly become a gay two-year-old. Why would anyone pick blue over pink? Pink is obviously a better color.</p>
-            <a href="javascript:;" class="text-dark icon-move-right">More about us
-              <i class="fas fa-arrow-right text-sm ms-1"></i>
-            </a>
-          </div>
-      </div>
-      <div class="col-lg-6 col-md-8">
-        <div class="position-relative ms-md-5 d-none d-md-block d-lg-block d-xl-block h-75">
-          <div class="w-100 h-100 bg-gradient-warning border-radius-xl position-absolute" alt=""></div>
-          <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/arena.jpg" class="w-100 border-radius-xl mt-6 ms-n5 position-absolute" alt="">
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Section Content -->
-
-
-
-
-
-
-
-
-
-

Content 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START CONTENT 7 w/ card over right bg image ------- -->
-<div class="page-header min-vh-85 my-5">
-  <div class="bg-gray-200 position-absolute fixed-bottom start-0 z-index-0 h-75 mb-n7 overflow-hidden opacity-8">
-    <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-      <svg width="100%" viewBox="0 0 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-          <title>Path Copy 2</title>
-          <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-              <g id="Artboard-Copy" transform="translate(0.000000, -416.000000)" fill="#FFFFFF">
-                  <path d="M-1,477.610914 C298.333333,531.905996 618.333333,527.38687 959,464.053537 C1299.66667,400.720204 1619.66667,400.572663 1919,463.610914 L1920,572.610914 L0,572.610914 L-1,477.610914 Z" id="Path-Copy-2" transform="translate(959.500000, 494.526769) scale(-1, -1) translate(-959.500000, -494.526769) "></path>
-              </g>
-          </g>
-      </svg>
-    </div>
-  </div>
-  <div class="position-absolute fixed-top ms-auto w-75 h-75 border-radius-xl z-index-1 d-none d-sm-none d-md-block me-n4" style="background-image: url(&#39;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/cave.jpg&#39;); background-size: cover;">
-  </div>
-  <div class="container">
-    <div class="row mt-7">
-      <div class="col-lg-6 d-flex justify-content-center flex-column">
-        <div class="card card-body d-flex justify-content-center shadow-lg border-radius-lg p-5 blur align-items-center z-index-2 shadow-blur">
-          <h2 class="text-gradient text-warning mb-4">Excluding the design complexity</h2>
-          <p class="text-lg-start text-center mb-0">We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed.</p>
-          <br>
-          <div class="buttons w-100">
-            <button type="button" class="btn bg-gradient-dark mb-0">Contact Us</button>
-            <button type="button" class="btn btn-outline-dark mb-0 ms-1">Read More</button>
-          </div>
-          <div class="row mt-5 justify-content-start">
-            <div class="col-md-3 col-6 p-0">
-              <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-pinterest.svg" alt="logo">
-            </div>
-            <div class="col-md-3 col-6 p-0">
-              <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-netflix.svg" alt="logo">
-            </div>
-            <div class="col-md-3 col-6 p-0">
-              <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-coinbase.svg" alt="logo">
-            </div>
-            <div class="col-md-3 col-6 p-0">
-              <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-nasa.svg" alt="logo">
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</div>
-
-<!-- -------- END CONTENT 10 w/ card over right bg image ------- -->
-
-
-
-
-
-
-
-
-
-

Content 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START CONTENT 11 w/ title and 4 images ------- -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-8 mx-auto text-center mb-5">
-        <span class="badge rounded-pill badge-info mb-2">Living</span>
-        <h2>A new way to buy your next home</h2>
-        <p>
-          If you can’t decide, the answer is no. If two equally difficult paths,
-          choose the one more painful in the short term (pain avoidance
-          is creating an illusion of equality).
-        </p>
-      </div>
-    </div>
-    <div class="row mb-4">
-      <div class="col-lg-3 col-md-6 position-relative mb-sm-0 mb-3">
-        <hr class="vertical dark d-md-block d-none">
-        <h3 class="mb-3">
-          <a href="javascript:;" class="text-darker">
-            Short Sentences Gives You the Liberty
-          </a>
-        </h3>
-        <p class="mb-3">
-          Paradoxically, using more short sentences gives you the liberty to write beautiful long sentences.
-        </p>
-        <p class="mb-3">
-          But in a way that&#39;s never been done before.
-        </p>
-        <div class="author">
-           <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/team-9.jpg" alt="..." class="avatar shadow">
-           <div class="name ps-3 my-auto">
-            <p class="text-sm text-darker font-weight-bold mb-0">Mathew Glock</p>
-            <div class="stats">
-              <p class="text-xs text-secondary mb-0">Author</p>
-            </div>
-          </div>
-        </div>
-        <hr class="horizontal dark my-4">
-        <h3 class="mb-3">
-          <a href="javascript:;" class="text-darker">
-            5 Ways to Improve your Life.
-          </a>
-        </h3>
-        <p class="mb-3">
-          Create first, edit second. Never do them at the same time.
-        </p>
-      </div>
-      <div class="col-lg-4 col-md-6 position-relative mb-sm-0 mb-3">
-        <hr class="vertical dark d-lg-block d-none">
-        <div class="card card-plain">
-          <div class="card-header p-0 mx-lg-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/freedom.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <h4 class="mb-3">
-              <a href="javascript:;" class="text-darker font-weight-bolder">
-                How to Build a $24 Billion Dollar Company in Just 2 Years.
-              </a>
-            </h4>
-            <p class="card-description mb-4">
-              I&#39;ve come to the conclusion that 50% of folks in this world don&#39;t even
-              spend enough time alone with their thoughts to have their own opinions.
-              They haven&#39;t done the work to decide what they think. And that isn&#39;t a rewarding way to live.
-            </p>
-            <div class="author">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/freedom.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-3 my-auto">
-                <p class="text-sm text-darker font-weight-bold mb-0">L&#39;orea Sirman</p>
-                <div class="stats">
-                  <p class="text-xs text-secondary mb-0">Redactor</p>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 position-relative mb-sm-0 mb-3">
-        <hr class="vertical dark d-md-block d-none">
-        <div class="card card-plain">
-          <div class="card-header p-0 mx-lg-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/city-view.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <h4 class="mb-3">
-              <a href="javascript:;" class="text-darker font-weight-bolder">
-                8 Powerful Mental Models to Help You Win.
-              </a>
-            </h4>
-            <p class="text-sm mb-0">By Andrew Peterson</p>
-          </div>
-        </div>
-        <div class="card card-plain">
-          <div class="card-header p-0 mx-lg-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/ocean.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-          <div class="card-body pt-3">
-            <h4 class="mb-3">
-              <a href="javascript:;" class="text-darker font-weight-bolder">
-                High performers are like surfers.
-              </a>
-            </h4>
-            <p class="text-sm">By L&#39;orea Michael</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-2 col-md-6 position-relative mb-sm-0 mb-3">
-        <div class="card card-plain">
-          <div class="card-body pt-3">
-            <h6 class="font-weight-bolder opacit-5">
-              <i class="fa fa-microphone me-2"></i>Podcasts
-            </h6>
-            <h5 class="mb-2">
-
-            </h5>
-            <p>An interview with Tesla founder.</p>
-            <span class="text-xs">By Alexa Rossa</span>
-          </div>
-        </div>
-        <hr class="horizontal dark mt-0 mb-2">
-        <div class="card card-plain">
-          <div class="card-body pt-3">
-            <h6 class="font-weight-bolder">
-              <i class="fa fa-microphone me-2"></i>
-              Interviews
-            </h6>
-
-              <p hss="">
-              Make $500k through small biz or raise it from family.
-              </p>
-
-            <span class="text-xs">By Jonathan Silvia</span>
-          </div>
-        </div>
-        <hr class="horizontal dark mt-0 mb-2">
-        <div class="card card-plain">
-          <div class="card-body pt-3">
-            <h6 class="font-weight-bolder opacit-5">
-              <i class="fa fa-microphone me-2"></i>Podcasts
-            </h6>
-            <h5 class="mb-2">
-
-            </h5>
-            <p>Lengthen your time horizon.</p>
-            <span class="text-xs">By Andrew Joe</span>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END CONTENT 11 w/ title and 4 images ------- -->
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/faq.html b/sections/page-sections/faq.html deleted file mode 100644 index 880f7523..00000000 --- a/sections/page-sections/faq.html +++ /dev/null @@ -1,1040 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

FAQ

-
- -
-
-
-
-

Faq

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row my-5">
-      <div class="col-md-6 mx-auto text-center">
-        <h2>Frequently Asked Questions</h2>
-        <p>A lot of people don&#39;t appreciate the moment until it’s passed. I&#39;m not trying my hardest, and I&#39;m not trying to do </p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-md-10 mx-auto">
-        <div class="accordion" id="accordionRental">
-          <div class="accordion-item mb-3">
-            <h5 class="accordion-header" id="headingOne">
-              <button class="accordion-button border-bottom font-weight-bold" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
-                How do I order?
-                <i class="collapse-close fa fa-plus text-xs pt-1 position-absolute end-0 me-3"></i>
-                <i class="collapse-open fa fa-minus text-xs pt-1 position-absolute end-0 me-3"></i>
-              </button>
-            </h5>
-            <div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionRental">
-              <div class="accordion-body text-sm opacity-8">
-                We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game
-                of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed.
-              </div>
-            </div>
-          </div>
-          <div class="accordion-item mb-3">
-            <h5 class="accordion-header" id="headingTwo">
-              <button class="accordion-button border-bottom font-weight-bold" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
-                How can i make the payment?
-                <i class="collapse-close fa fa-plus text-xs pt-1 position-absolute end-0 me-3"></i>
-                <i class="collapse-open fa fa-minus text-xs pt-1 position-absolute end-0 me-3"></i>
-              </button>
-            </h5>
-            <div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionRental">
-              <div class="accordion-body text-sm opacity-8">
-                It really matters and then like it really doesn’t matter. What matters is the people who are sparked by it. And the people who are like offended by it, it doesn’t matter. Because it&#39;s about motivating the doers. Because I’m here to follow my dreams and inspire other people to follow their dreams, too.
-                <br>
-                We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play this game of life you need to appreciate every moment. A lot of people don’t appreciate the moment until it’s passed.
-              </div>
-            </div>
-          </div>
-          <div class="accordion-item mb-3">
-            <h5 class="accordion-header" id="headingThree">
-              <button class="accordion-button border-bottom font-weight-bold" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
-                How much time does it take to receive the order?
-                <i class="collapse-close fa fa-plus text-xs pt-1 position-absolute end-0 me-3"></i>
-                <i class="collapse-open fa fa-minus text-xs pt-1 position-absolute end-0 me-3"></i>
-              </button>
-            </h5>
-            <div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionRental">
-              <div class="accordion-body text-sm opacity-8">
-                The time is now for it to be okay to be great. People in this world shun people for being great. For being a bright color. For standing out. But the time is now to be okay to be the greatest you. Would you believe in what you believe in, if you were the only one who believed it?
-                If everything I did failed - which it doesn&#39;t, it actually succeeds - just the fact that I&#39;m willing to fail is an inspiration. People are so scared to lose that they don&#39;t even try. Like, one thing people can&#39;t say is that I&#39;m not trying, and I&#39;m not trying my hardest, and I&#39;m not trying to do the best way I know how.
-              </div>
-            </div>
-          </div>
-          <div class="accordion-item mb-3">
-            <h5 class="accordion-header" id="headingFour">
-              <button class="accordion-button border-bottom font-weight-bold" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
-                Can I resell the products?
-                <i class="collapse-close fa fa-plus text-xs pt-1 position-absolute end-0 me-3"></i>
-                <i class="collapse-open fa fa-minus text-xs pt-1 position-absolute end-0 me-3"></i>
-              </button>
-            </h5>
-            <div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionRental">
-              <div class="accordion-body text-sm opacity-8">
-                I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! They&#39;re slowed down by their perception of themselves. If you&#39;re taught you can’t do anything, you won’t do anything. I was taught I could do everything.
-                <br><br>
-                If everything I did failed - which it doesn&#39;t, it actually succeeds - just the fact that I&#39;m willing to fail is an inspiration. People are so scared to lose that they don&#39;t even try. Like, one thing people can&#39;t say is that I&#39;m not trying, and I&#39;m not trying my hardest, and I&#39;m not trying to do the best way I know how.
-              </div>
-            </div>
-          </div>
-          <div class="accordion-item mb-3">
-            <h5 class="accordion-header" id="headingFifth">
-              <button class="accordion-button border-bottom font-weight-bold" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFifth" aria-expanded="false" aria-controls="collapseFifth">
-                Where do I find the shipping details?
-                <i class="collapse-close fa fa-plus text-xs pt-1 position-absolute end-0 me-3"></i>
-                <i class="collapse-open fa fa-minus text-xs pt-1 position-absolute end-0 me-3"></i>
-              </button>
-            </h5>
-            <div id="collapseFifth" class="accordion-collapse collapse" aria-labelledby="headingFifth" data-bs-parent="#accordionRental">
-              <div class="accordion-body text-sm opacity-8">
-                There’s nothing I really wanted to do in life that I wasn’t able to get good at. That’s my skill. I’m not really specifically talented at anything except for the ability to learn. That’s what I do. That’s what I’m here for. Don’t be afraid to be wrong because you can’t learn anything from a compliment.
-                I always felt like I could do anything. That’s the main thing people are controlled by! Thoughts- their perception of themselves! They&#39;re slowed down by their perception of themselves. If you&#39;re taught you can’t do anything, you won’t do anything. I was taught I could do everything.
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/footers.html b/sections/page-sections/footers.html deleted file mode 100644 index 8f544b92..00000000 --- a/sections/page-sections/footers.html +++ /dev/null @@ -1,3342 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Footers

-
- -
-
-
-
-

Footer 1

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 2

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 3

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 4

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 5

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 6

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 7

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 8

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 9

-
-
- -
-
-
-
- - -
-
-
-
-
-
-

Footer 10

-
-
- -
-
-
-
- - -
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/general-cards.html b/sections/page-sections/general-cards.html deleted file mode 100644 index 6d42cf4f..00000000 --- a/sections/page-sections/general-cards.html +++ /dev/null @@ -1,1803 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

General Cards

-
- -
-
-
-
-

Card waves

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card">
-          <img class="card-img-top" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/chat.jpg">
-          <div class="position-relative overflow-hidden" style="height:50px;margin-top:-50px;">
-            <div class="position-absolute w-100 top-0 z-index-1">
-                <svg class="waves waves-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
-                  <defs>
-                    <path id="card-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
-                  </defs>
-                  <g class="moving-waves">
-                    <use xlink:href="#card-wave" x="48" y="-1" fill="rgba(255,255,255,0.30"></use>
-                    <use xlink:href="#card-wave" x="48" y="3" fill="rgba(255,255,255,0.35)"></use>
-                    <use xlink:href="#card-wave" x="48" y="5" fill="rgba(255,255,255,0.25)"></use>
-                    <use xlink:href="#card-wave" x="48" y="8" fill="rgba(255,255,255,0.20)"></use>
-                    <use xlink:href="#card-wave" x="48" y="13" fill="rgba(255,255,255,0.15)"></use>
-                    <use xlink:href="#card-wave" x="48" y="16" fill="rgba(255,255,255,0.99)"></use>
-                  </g>
-                </svg>
-              </div>
-          </div>
-          <div class="card-body">
-            <h4>Soft UI Design System</h4>
-            <p>
-              One of the most beautiful and complex UI Kits built by the team behind Creative Tim. That&#34;s pretty impressive.
-            </p>
-            <a href="javascript:;" class="text-primary icon-move-right">More about us
-              <i class="fas fa-arrow-right text-xs ms-1" aria-hidden="true"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card blog

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card card-blog card-plain">
-          <div class="position-relative">
-            <a class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/pool.jpg" alt="img-blur-shadow" class="img-fluid shadow border-radius-lg">
-            </a>
-          <div class="colored-shadow" style="background-image: url(&quot;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/pool.jpg&quot;);"></div></div>
-          <div class="card-body px-1 pt-3">
-            <p class="text-gradient text-primary mb-2 text-sm">Private Room • 1 Guests • 1 Sofa</p>
-            <a href="javascript:;">
-              <h5>
-                Single room in the center of the city
-              </h5>
-            </a>
-            <p>
-              As Uber works through a huge amount of internal management turmoil, the company is also consolidating and rationalizing more of its international business.
-            </p>
-            <button type="button" class="btn btn-outline-primary btn-sm">From / Night</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card blog horizontal

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-8">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="card card-plain card-blog mt-5">
-        <div class="row">
-          <div class="col-md-4">
-            <div class="card-image position-relative border-radius-lg">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/macbook.jpg">
-              </div>
-            <div class="colored-shadow" style="background-image: url(&quot;https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/macbook.jpg&quot;);"></div></div>
-          </div>
-          <div class="col-md-7 my-auto ms-md-3 mt-md-auto mt-4">
-            <h3>
-              <a href="javascript:;" class="text-dark font-weight-normal">Rover raised $65 million for pet sitting</a>
-            </h3>
-            <p>
-              Finding temporary housing for your dog should be as easy as renting an Airbnb. That’s the idea behind Rover, which raised $65 million to expand its pet sitting and dog-walking businesses.. <a href="javascript:;" class="text-dark"> Read More </a>
-            </p>
-    				<div class="author">
-    				   <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/team-9.jpg" alt="..." class="avatar avatar-sm shadow me-2">
-    				   <p class="my-auto">Katie Roof</p>
-    				</div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card image inside

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card shadow-lg">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block">
-              <img src="../../assets/img/annie-spratt.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body pt-3">
-            <span class="text-gradient text-warning text-uppercase text-xs font-weight-bold my-2">Hub</span>
-            <a href="javascript:;" class="text-darker card-title h5 d-block">
-              Shared Coworking
-            </a>
-            <p class="card-description mb-4">
-              Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons.
-            </p>
-            <div class="author align-items-center">
-              <img src="../../assets/img/marie.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-3">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small>Posted on 28 February</small>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card with blur on image

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card card-plain card-blog mt-4">
-          <div class="card-image border-radius-lg position-relative">
-            <a href="javascript:;">
-              <div class="blur-shadow-image">
-                <img class="img border-radius-lg move-on-hover" src="../../assets/img/curved-images/curved-8.jpg">
-              </div>
-            <div class="colored-shadow" style="background-image: url(&quot;../../assets/img/curved-images/curved8.jpg&quot;);"></div></a>
-          </div>
-          <div class="card-body px-0">
-            <h5>
-              <a href="javascript:;" class="text-dark font-weight-bold">MateLabs mixes machine learning with IFTTT</a>
-            </h5>
-            <p>
-              If you’ve ever wanted to train a machine learning model
-              and integrate it with IFTTT, you now can with ...
-            </p>
-            <a href="javascript:;" class="text-info icon-move-right">Read More
-              <i class="fas fa-arrow-right text-sm" aria-hidden="true"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card background

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card card-background move-on-hover">
-          <a href="javascript:;">
-            <div class="full-background" style="background-image: url(https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/color-flats.jpg)"></div>
-            <div class="card-body pt-12">
-              <h4 class="text-white">Search and Discovery</h4>
-              <p>Website visitors today demand a frictionless user expericence — especially when using search. Because of the hight standards.</p>
-            </div>
-          </a>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card profile

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card card-profile mt-md-0 mt-5 shadow-lg">
-          <a href="javascript:;">
-            <div class="p-3">
-              <img class="w-100 border-radius-md" src="../../assets/img/bruce-mars.jpg">
-            </div>
-          </a>
-          <div class="card-body blur justify-content-center text-center mt-n5 mx-4 mb-4 border-radius-md">
-            <h4 class="mb-0">Bruce Mars</h4>
-            <p>Atlanta, U.S.</p>
-            <div class="row justify-content-center text-center">
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">750</h5>
-                <small>Projects</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">800+</h5>
-                <small>Hours</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">24/7</h5>
-                <small>Support</small>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card background tilt

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card card-background card-background-mask-primary tilt mt-md-0 mt-5" data-tilt="" style="will-change: transform; transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);">
-            <div class="full-background" style="background-image: url(https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/toboshar.jpg)"></div>
-            <div class="card-body pt-7 text-center">
-              <div class="icon icon-lg up mb-5">
-                <svg width="40px" height="40px" viewBox="0 0 44 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>megaphone</title>
-                  <g id="Basic-Elements" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                    <g id="Rounded-Icons" transform="translate(-2168.000000, -591.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                      <g id="Icons-with-opacity" transform="translate(1716.000000, 291.000000)">
-                        <g id="megaphone" transform="translate(452.000000, 300.000000)">
-                          <path d="M35.7958333,0.273166667 C35.2558424,-0.0603712374 34.5817509,-0.0908856664 34.0138333,0.1925 L19.734,7.33333333 L9.16666667,7.33333333 C4.10405646,7.33333333 0,11.4373898 0,16.5 C0,21.5626102 4.10405646,25.6666667 9.16666667,25.6666667 L19.734,25.6666667 L34.0138333,32.8166667 C34.5837412,33.1014624 35.2606401,33.0699651 35.8016385,32.7334768 C36.3426368,32.3969885 36.6701539,31.8037627 36.6666942,31.1666667 L36.6666942,1.83333333 C36.6666942,1.19744715 36.3370375,0.607006911 35.7958333,0.273166667 Z" id="Path"></path>
-                          <path d="M38.5,11 L38.5,22 C41.5375661,22 44,19.5375661 44,16.5 C44,13.4624339 41.5375661,11 38.5,11 Z" id="Path" opacity="0.601050967"></path>
-                          <path d="M18.5936667,29.3333333 L10.6571667,29.3333333 L14.9361667,39.864 C15.7423448,41.6604248 17.8234451,42.4993948 19.6501416,41.764381 C21.4768381,41.0293672 22.3968823,38.982817 21.7341667,37.1286667 L18.5936667,29.3333333 Z" id="Path" opacity="0.601050967"></path>
-                        </g>
-                      </g>
-                    </g>
-                  </g>
-                </svg>
-              </div>
-              <h1 class="text-white up mb-0">Find music and play it!</h1>
-              <p class="lead up">Music search</p>
-              <button type="button" class="btn btn-outline-white btn-lg mt-3 up">Get Started</button>
-            </div>
-          </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Card pricing

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-6">
-  <div class="container">
-    <div class="row justify-space-between py-2">
-      <div class="col-6 mx-auto">
-        <div class="card shadow-none border bg-gradient-dark h-100 overflow-hidden">
-          <img src="../../assets/img/shapes/pattern-lines.svg" alt="pattern-lines" class="position-absolute">
-          <div class="card-header bg-transparent text-sm-start text-center pt-4 pb-3 px-4">
-            <h5 class="mb-1 text-white">Premium</h5>
-            <p class="mb-3 text-sm text-white">Free access for 200 members</p>
-            <h3 class="font-weight-bolder mt-3 text-white">
-              $499 <small class="text-sm text-secondary font-weight-bold">/ year</small>
-            </h3>
-            <a href="javascript:;" class="btn btn-sm btn-white w-100 border-radius-md mt-4 mb-2">Buy now</a>
-          </div>
-          <hr class="horizontal light my-0">
-          <div class="card-body">
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm" aria-hidden="true"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">Complete documentation</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm" aria-hidden="true"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">Working materials in Sketch</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm" aria-hidden="true"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">20GB cloud storage</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm" aria-hidden="true"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">100 team members</span>
-              </div>
-            </div>
-
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/logo-areas.html b/sections/page-sections/logo-areas.html deleted file mode 100644 index a955d2eb..00000000 --- a/sections/page-sections/logo-areas.html +++ /dev/null @@ -1,1422 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Logo Areas

-
- -
-
-
-
-

Header Logo

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START HEADER 8 w/ card over right bg image ------- -->
-<header>
-  <div class="page-header min-vh-85">
-    <div>
-      <img class="position-absolute fixed-top ms-auto w-50 h-100 z-index-0 d-none d-sm-none d-md-block border-radius-section border-top-end-radius-0 border-top-start-radius-0 border-bottom-end-radius-0" src="../../assets/img/curved-images/curved6.jpg" alt="image">
-    </div>
-    <div class="container">
-      <div class="row">
-        <div class="col-lg-7 d-flex">
-          <div class="card card-body blur text-md-start text-center px-sm-5 shadow-lg mt-sm-5 py-sm-5">
-            <h2 class="text-gradient text-primary mb-0">Soft Design System.</h2>
-            <h2 class="text-dark mb-4">Choose the best</h2>
-
-            <p class="lead text-dark pe-md-5 me-md-5">
-              Find the story of Creative Tim&#39;s most complex design system and
-              all the work that make this design available.
-            </p>
-            <div class="buttons">
-              <button type="button" class="btn btn-rounded bg-gradient-primary mt-4">Contact Us</button>
-              <button type="button" class="btn btn-rounded btn-outline-secondary mt-4 ms-2">Read More</button>
-            </div>
-            <div class="row mt-2">
-              <div class="col-md-3 col-6 p-0">
-                <img class="w-100" src="../../assets/img/logos/gray-logos/logo-pinterest.svg" alt="logo">
-              </div>
-              <div class="col-md-3 col-6 p-0">
-                <img class="w-100" src="../../assets/img/logos/gray-logos/logo-netflix.svg" alt="logo">
-              </div>
-              <div class="col-md-3 col-6 p-0">
-                <img class="w-100" src="../../assets/img/logos/gray-logos/logo-coinbase.svg" alt="logo">
-              </div>
-              <div class="col-md-3 col-6 p-0">
-                <img class="w-100" src="../../assets/img/logos/gray-logos/logo-nasa.svg" alt="logo">
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</header>
-<!-- -------- END HEADER 8 w/ card over right bg image ------- -->
-
-
-
-
-
-
-
-
-
-

Logo Area

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START PRE-FOOTER 6 - title & description and input    -------- -->
-<div class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-8 mx-auto text-center">
-        <h6 class="opacity-5"> More than 50+ brands trust Soft</h6>
-      </div>
-    </div>
-    <div class="row mt-4">
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-coinbase.svg" alt="logo">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-nasa.svg" alt="logo">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-netflix.svg" alt="logo">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-pinterest.svg" alt="logo">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-spotify.svg" alt="logo">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-9" src="../../assets/img/logos/gray-logos/logo-vodafone.svg" alt="logo">
-      </div>
-    </div>
-  </div>
-</div>
-<!-- -------   END PRE-FOOTER 6 - title & description and input    -------- -->
-
-
-
-
-
-
-
-
-
-

Logos

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center">
-        <h2 class="text-gradient text-primary mb-0">What random people</h2>
-        <h2 class="mb-3">Think about us</h2>
-        <p>That’s the main thing people are controlled by! Thoughts- their perception of themselves! </p>
-      </div>
-    </div>
-    <div class="row mt-6">
-      <div class="col-lg-4 col-md-8">
-        <div class="card card-plain">
-          <div class="card-body">
-            <div class="author">
-              <img src="../../assets/img/team-3.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small><i class="far fa-clock"></i> 5 min read</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="far fa-star"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-8 ms-md-auto">
-        <div class="card bg-gradient-primary">
-          <div class="card-body">
-            <div class="author align-items-center">
-              <img src="../../assets/img/marie.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span class="text-white">Mathew Glock</span>
-                <div class="stats">
-                  <small class="text-white">Posted on 28 February</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4 text-white">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star text-white"></i>
-              <i class="fas fa-star text-white"></i>
-              <i class="fas fa-star text-white"></i>
-              <i class="far fa-star text-white"></i>
-              <i class="far fa-star text-white"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-8">
-        <div class="card card-plain">
-          <div class="card-body">
-            <div class="author">
-              <img src="../../assets/img/team-2.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small><i class="far fa-clock"></i> 5 min read</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-    <hr class="horizontal dark my-5">
-    <div class="row">
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-apple.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-facebook.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-behance.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-spotify.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-coinbase.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-pinterest.svg" alt="Logo">
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Logo Section

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------   START PRE-FOOTER 6 - title & description and input    -------- -->
-<div class="py-8">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center">
-        <h3>Our products are built on top</h3>
-        <p class="lead">Very nice logos here on this page, you can check more on our social profiles.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-2 col-md-4 col-6 mb-4 ms-auto">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-apple.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-mailchimp.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-behance.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-mailchimp.svg">
-      </div>
-      <div class="col-lg-2 col-md-4 col-6 mb-4 me-auto">
-        <img class="w-100 opacity-7" src="../../assets/img/logos/medium-logos/logo-nasa.svg">
-      </div>
-    </div>
-  </div>
-</div>
-<!-- -------   END PRE-FOOTER 6 - title & description and input    -------- -->
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/pricing.html b/sections/page-sections/pricing.html deleted file mode 100644 index 4904022d..00000000 --- a/sections/page-sections/pricing.html +++ /dev/null @@ -1,4287 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Pricing

-
- -
-
-
-
-

Pricing 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-3">
-  <div class="bg-gradient-primary position-relative m-3 border-radius-xl">
-    <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-md-0 w-100 opacity-6">
-    <div class="container pb-lg-9 pb-7 pt-7 postion-relative z-index-2">
-      <div class="row">
-        <div class="col-md-8 mx-auto text-center">
-          <span class="badge bg-gradient-dark mb-2">Pricing</span>
-          <h3 class="text-white">See our pricing</h3>
-          <p class="text-white">You have Free Unlimited Updates and Premium Support on each package.</p>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="mt-n8">
-    <div class="container">
-      <div class="row">
-        <div class="col-lg-3 mb-lg-auto mb-4 my-auto p-md-0 ms-auto">
-          <div class="card border-radius-top-end-lg-0 border-radius-bottom-end-lg-0">
-            <div class="card-header text-center pt-4 pb-3">
-              <h6 class="text-dark opacity-8 mb-0">Starter</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>199
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">500MB cloud storage</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Lite support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn w-100 bg-gradient-dark mb-0">
-                Buy now
-              </a>
-            </div>
-          </div>
-        </div>
-
-        <div class="col-lg-3 p-md-0 mb-lg-auto mb-4 z-index-2">
-          <div class="card">
-            <div class="card-header text-center pt-4 pb-3">
-              <h6 class="text-dark opacity-8 text mb-0 mt-2">Pro</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>299
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">100GB cloud storage</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">500 team members</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Premium support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn btn-icon bg-gradient-primary d-block mb-0 icon-move-right">Try Pro
-                <i class="fas fa-arrow-right ms-2" aria-hidden="true"></i>
-              </a>
-            </div>
-          </div>
-        </div>
-
-        <div class="col-lg-3 mb-lg-auto mb-4 my-auto p-md-0 me-auto">
-          <div class="card border-radius-top-start-lg-0 border-radius-bottom-start-lg-0">
-            <div class="card-header text-center pt-4 pb-2">
-              <h6 class="text-dark opacity-8 text mb-0">Premium</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>399
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">2GB cloud storage</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-dark opacity-6 text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Premium support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn w-100 bg-gradient-dark mb-0">Buy now</a>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Pricing w/ 2 cards & nav tabs -->
-<section class="py-2 bg-light">
-  <div class="container pt-5">
-    <div class="row">
-      <div class="col-lg-4 col-md-10 d-flex justify-content-center flex-column">
-        <h3 class="mt-3">Choose a plan for your next project</h3>
-          <p class="lead">You have Free Unlimited Updates and Premium Support on each package. You also have 20 days to request a refund.</p>
-          <div class="nav-wrapper me-auto mt-4 mb-5 mb-lg-0">
-            <ul class="nav nav-pills nav-fill p-1" id="tabs-pricing" role="tablist">
-              <li class="nav-item">
-                <a class="nav-link mb-sm-3 mb-md-0 active" id="tabs-iconpricing-tab-1" data-bs-toggle="tab" href="#personal" role="tab" aria-controls="tabs-pricing-tab-1" aria-selected="true">
-                  Freelancer
-                </a>
-              </li>
-              <li class="nav-item">
-                <a class="nav-link mb-sm-3 mb-md-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#commercial" role="tab" aria-controls="tabs-pricing-tab-2" aria-selected="false">
-                  Startup
-                </a>
-              </li>
-            </ul>
-          </div>
-      </div>
-      <div class="col-lg-7 col-md-12 ms-lg-auto me-lg-auto">
-        <div class="tab-content tab-space">
-          <div class="tab-pane active" id="personal">
-            <div class="row">
-              <div class="col-md-6">
-                <div class="card card-pricing bg-white border-0 text-center mb-4">
-                  <div class="card-header bg-transparent">
-                    <h6 class="text-uppercase ls-1 py-3 mb-0">Standard</h6>
-                  </div>
-                  <div class="card-body text-dark">
-                    <p class="display-2 font-weight-bold mb-0">$25</p>
-                    <span>per month</span>
-                    <ul class="list-unstyled my-4">
-                      <li class="align-items-center">
-                        <b>20GB</b> <span>File Storage</span>
-                      </li>
-                      <li class="align-items-center my-2">
-                        <b>15</b> <span>Users</span>
-                      </li>
-                      <li class="align-items-center">
-                        <b>False</b> <span>Support</span>
-                      </li>
-                    </ul>
-                  </div>
-                  <div class="card-footer bg-transparent">
-                    <button class="btn btn-outline-primary">Request a demo</button>
-                  </div>
-                </div>
-              </div>
-              <div class="col-md-6">
-                <div class="card card-pricing bg-gradient-primary border-0 text-center mb-4 overflow-hidden">
-                  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute opacity-8">
-                  <div class="card-header bg-transparent">
-                    <h6 class="text-uppercase text-white ls-1 py-3 mb-0">Premium</h6>
-                  </div>
-                  <div class="card-body text-white position-relative">
-                    <p class="display-2 font-weight-bold mb-0">$59</p>
-                    <span>per month</span>
-                    <ul class="list-unstyled my-4">
-                      <li class="align-items-center">
-                        <b>50GB</b> <span>File Storage</span>
-                      </li>
-                      <li class="align-items-center my-2">
-                        <b>100</b> <span>Users</span>
-                      </li>
-                      <li class="align-items-center">
-                        <b>Premium</b> <span>Support</span>
-                      </li>
-                    </ul>
-                  </div>
-                  <div class="card-footer bg-transparent position-relative">
-                    <button class="btn btn-outline-white">Request a demo</button>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-          <div class="tab-pane" id="commercial">
-            <div class="row">
-              <div class="col-md-6">
-                <div class="card card-pricing bg-white border-0 text-center mb-4">
-                  <div class="card-header bg-transparent">
-                    <h6 class="text-uppercase ls-1 py-3 mb-0">Gold</h6>
-                  </div>
-                  <div class="card-body text-dark">
-                    <p class="display-2 font-weight-bold mb-0">$100</p>
-                    <span>per month</span>
-                    <ul class="list-unstyled my-4">
-                      <li class="align-items-center">
-                        <b>200GB</b> <span>File Storage</span>
-                      </li>
-                      <li class="align-items-center my-2">
-                        <b>Unlimited</b> <span>Users</span>
-                      </li>
-                      <li class="align-items-center">
-                        <b>Premium</b> <span>Support</span>
-                      </li>
-                    </ul>
-                  </div>
-                  <div class="card-footer bg-transparent">
-                    <button class="btn btn-outline-primary">Request a demo</button>
-                  </div>
-                </div>
-              </div>
-              <div class="col-md-6">
-                <div class="card card-pricing bg-gradient-primary border-0 text-center mb-4 overflow-hidden">
-                  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute opacity-8">
-                  <div class="card-header bg-transparent">
-                    <h6 class="text-uppercase text-white ls-1 py-3 mb-0">Platinum</h6>
-                  </div>
-                  <div class="card-body text-white position-relative">
-                    <p class="display-2 font-weight-bold mb-0">$135</p>
-                    <span>per month</span>
-                    <ul class="list-unstyled my-4">
-                      <li class="align-items-center">
-                        <b>500GB</b> <span>File Storage</span>
-                      </li>
-                      <li class="align-items-center my-2">
-                        <b>Unlimited</b> <span>Users</span>
-                      </li>
-                      <li class="align-items-center">
-                        <b>No time</b> <span>Tracking</span>
-                      </li>
-                    </ul>
-                  </div>
-                  <div class="card-footer bg-transparent position-relative">
-                    <button class="btn btn-outline-white">Request a demo</button>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Pricing w/ 2 cards & nav tabs -->
-
-
-
-
-
-
-
-
-
-

Pricing 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-3">
-  <div class="bg-gradient-primary position-relative m-3 border-radius-xl">
-    <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute opacity-6 start-0 top-0 w-100">
-    <div class="container pb-lg-9 pb-10 pt-7 postion-relative z-index-2">
-      <div class="row">
-        <div class="col-md-6 mx-auto text-center">
-          <h3 class="text-white">See our pricing</h3>
-          <p class="text-white">You have Free Unlimited Updates and Premium Support on each package.</p>
-        </div>
-      </div>
-      <div class="row">
-        <div class="col-lg-4 col-md-6 col-7 mx-auto text-center">
-          <div class="nav-wrapper mt-5 position-relative z-index-2">
-            <ul class="nav nav-pills nav-fill flex-row p-1" id="tabs-pricing" role="tablist">
-              <li class="nav-item">
-                <a class="nav-link mb-0 active" id="tabs-iconpricing-tab-1" data-bs-toggle="tab" href="#monthly" role="tab" aria-controls="monthly" aria-selected="true">
-                  Monthly
-                </a>
-              </li>
-              <li class="nav-item">
-                <a class="nav-link mb-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#annual" role="tab" aria-controls="annual" aria-selected="false">
-                  Annual
-                </a>
-              </li>
-            </ul>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="mt-n8">
-    <div class="container">
-      <div class="tab-content tab-space">
-        <div class="tab-pane active" id="monthly">
-          <div class="row">
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Starter</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>59
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">2 team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">20GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-dark d-lg-block mt-3 mb-0">
-                    Join
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Premium</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>89
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">10 team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">40GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-primary d-lg-block mt-3 mb-0">
-                    Try Premium
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Enterprise</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>99
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Unlimited team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">100GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-dark d-lg-block mt-3 mb-0">
-                    Join
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-        <div class="tab-pane" id="annual">
-          <div class="row">
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Starter</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>119
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">2 team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">20GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-dark d-lg-block mt-3 mb-0">
-                    Join
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Premium</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>159
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">10 team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">40GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-secondary shadow text-center">
-                      <i class="fas fa-minus"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-primary d-lg-block mt-3 mb-0">
-                    Try Premium
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-
-            <div class="col-lg-4 mb-lg-0 mb-4">
-              <div class="card">
-                <div class="card-header text-center pt-4 pb-3">
-                  <span class="badge rounded-pill bg-light text-dark">Enterprise</span>
-                  <h1 class="font-weight-bold mt-2">
-                    <small>$</small>399
-                  </h1>
-                </div>
-                <div class="card-body text-lg-start text-center pt-0">
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Unlimited team members</span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">100GB Cloud storage </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Integration help </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Sketch Files </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">API Access </span>
-                    </div>
-                  </div>
-
-                  <div class="d-flex justify-content-lg-start justify-content-center p-2">
-                    <div class="icon icon-shape icon-xs rounded-circle bg-gradient-success shadow text-center">
-                      <i class="fas fa-check opacity-10"></i>
-                    </div>
-                    <div>
-                      <span class="ps-3">Complete documentation </span>
-                    </div>
-                  </div>
-
-                  <a href="javascript:;" class="btn btn-icon bg-gradient-dark d-lg-block mt-3 mb-0">
-                    Join
-                    <i class="fas fa-arrow-right ms-1"></i>
-                  </a>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 mx-auto text-center">
-        <h3>Pick the best plan for you</h3>
-        <p>You have Free Unlimited Updates and Premium Support on each package.</p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-8 col-md-10 col-12 mx-auto text-center">
-        <div class="nav-wrapper mt-5">
-          <ul class="nav nav-pills nav-fill flex-row p-1 position-relative" id="tabs-pricing-4" role="tablist">
-            <li class="nav-item">
-              <a class="nav-link mb-0 active" id="tabs-iconpricing-tab-1" data-bs-toggle="tab" href="#tabs-pricing-tab-1" role="tab" aria-controls="tabs-pricing-tab-1" aria-selected="true">
-                Monthly
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link mb-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#tabs-pricing-tab-2" role="tab" aria-controls="tabs-pricing-tab-2" aria-selected="false">
-                Quarterly
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link mb-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#tabs-pricing-tab-2" role="tab" aria-controls="tabs-pricing-tab-2" aria-selected="false">
-                Annual
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link mb-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#tabs-pricing-tab-2" role="tab" aria-controls="tabs-pricing-tab-2" aria-selected="false">
-                Lifetime access
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-3 col-sm-6 mb-lg-0 mb-4">
-        <div class="card shadow-none border h-100">
-          <div class="card-header text-sm-start text-center pt-4 pb-3 px-4">
-            <h5 class="mb-1">Starter</h5>
-            <p class="mb-3 text-sm">Free access for 2 members</p>
-            <h3 class="font-weight-bolder mt-3">
-              $199 <small class="text-sm text-secondary font-weight-bold">/ year</small>
-            </h3>
-            <a href="javascript:;" class="btn btn-sm bg-gradient-dark w-100 border-radius-md mt-4 mb-2">Buy now</a>
-          </div>
-          <hr class="horizontal dark my-0">
-          <div class="card-body">
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Complete documentation</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Working materials in Sketch</span>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6 mb-lg-0 mb-4">
-        <div class="card shadow-none border h-100">
-          <div class="card-header text-sm-start text-center pt-4 pb-3 px-4">
-            <h5 class="mb-1">Pro</h5>
-            <p class="mb-3 text-sm">Free access for 30 members</p>
-            <h3 class="font-weight-bolder mt-3">
-              $299 <small class="text-sm text-secondary font-weight-bold">/ year</small>
-            </h3>
-            <a href="javascript:;" class="btn btn-sm bg-gradient-dark w-100 border-radius-md mt-4 mb-2">Buy now</a>
-          </div>
-          <hr class="horizontal dark my-0">
-          <div class="card-body">
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Complete documentation</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Working materials in Sketch</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">2GB cloud storage</span>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6 mb-lg-0 mb-4">
-        <div class="card shadow-none border bg-gradient-dark h-100 overflow-hidden">
-          <img src="../../assets/img/shapes/pattern-lines.svg" alt="pattern-lines" class="position-absolute">
-          <div class="card-header bg-transparent text-sm-start text-center pt-4 pb-3 px-4">
-            <h5 class="mb-1 text-white">Premium</h5>
-            <p class="mb-3 text-sm text-white">Free access for 200 members</p>
-            <h3 class="font-weight-bolder mt-3 text-white">
-              $499 <small class="text-sm text-secondary font-weight-bold">/ year</small>
-            </h3>
-            <a href="javascript:;" class="btn btn-sm btn-white w-100 border-radius-md mt-4 mb-2">Buy now</a>
-          </div>
-          <hr class="horizontal light my-0">
-          <div class="card-body">
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">Complete documentation</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">Working materials in Sketch</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">20GB cloud storage</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm text-white">100 team members</span>
-              </div>
-            </div>
-
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-sm-6 mb-lg-0 mb-4">
-        <div class="card shadow-none border h-100">
-          <div class="card-header text-sm-start text-center pt-4 pb-3 px-4">
-            <h5 class="mb-1">Enterprise</h5>
-            <p class="mb-3 text-sm">Free access for all members</p>
-            <h3 class="font-weight-bolder mt-3">
-              $899 <small class="text-sm text-secondary font-weight-bold">/ year</small>
-            </h3>
-            <a href="javascript:;" class="btn btn-sm bg-gradient-dark w-100 border-radius-md mt-4 mb-2">Buy now</a>
-          </div>
-          <hr class="horizontal dark my-0">
-          <div class="card-body">
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Complete documentation</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Working materials in Sketch</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">100GB cloud storage</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">500 team members</span>
-              </div>
-            </div>
-
-            <div class="d-flex pb-3">
-              <div>
-                <i class="fas fa-check text-success text-sm"></i>
-              </div>
-              <div class="ps-3">
-                <span class="text-sm">Premium support</span>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-lg-5 bg-light">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-6 mx-auto text-center mb-5">
-        <h2>Best no-tricks pricing</h2>
-        <p class="lead">If you&#39;re not satisfied, contact us within the first 30 days and we&#39;ll send you a full refund.</p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="card">
-       <div class="row">
-          <div class="col-lg-8">
-             <div class="card-body">
-                <h3 class="text-gradient text-info">Lifetime Membership</h3>
-                <p>You have Free Unlimited Updates and Premium Support on each package. You also have 30 days to request a refund.</p>
-                <div class="row mt-5 mb-2">
-                   <div class="col-lg-3 col-12">
-                      <h6 class="text-dark tet-uppercase">What&#39;s included</h6>
-                   </div>
-                   <div class="col-6">
-                      <hr class="horizontal dark">
-                   </div>
-                </div>
-                <div class="row">
-                   <div class="col-lg-6 col-md-6 col-12 ps-0">
-                      <div class="info d-flex align-items-center p-2">
-                         <div class="icon icon-shape icon-xs rounded-circle bg-gradient-info opacity-6 shadow text-center">
-                            <i class="fas fa-check opacity-10"></i>
-                         </div>
-                         <div>
-                            <span class="ps-2">Private code access</span>
-                         </div>
-                      </div>
-                      <div class="info d-flex align-items-center p-2">
-                         <div class="icon icon-shape icon-xs rounded-circle bg-gradient-info opacity-6 shadow text-center">
-                            <i class="fas fa-check opacity-10"></i>
-                         </div>
-                         <div>
-                            <span class="ps-2">Free entry to all repositories</span>
-                         </div>
-                      </div>
-                   </div>
-                   <div class="col-lg-6 col-md-6 col-12">
-                      <div class="info d-flex align-items-center p-2">
-                         <div class="icon icon-shape icon-xs rounded-circle bg-gradient-info opacity-6 shadow text-center">
-                            <i class="fas fa-check opacity-10"></i>
-                         </div>
-                         <div>
-                            <span class="ps-2">Pro member accounts</span>
-                         </div>
-                      </div>
-                      <div class="info d-flex align-items-center p-2">
-                         <div class="icon icon-shape icon-xs rounded-circle bg-gradient-info opacity-6 shadow text-center">
-                            <i class="fas fa-check opacity-10"></i>
-                         </div>
-                         <div>
-                            <span class="ps-2">Support team full assist</span>
-                         </div>
-                      </div>
-                   </div>
-                </div>
-             </div>
-          </div>
-          <div class="col-lg-4 my-auto">
-             <div class="card-body text-center">
-                <h6 class="mt-4 mb-0">Pay once, own it forever</h6>
-                <h1 class="mt-0">
-                   <small>$</small>399
-                </h1>
-                <button type="button" class="btn bg-gradient-info btn-lg mt-2">Get Access</button>
-                <p class="text-sm">Get a free sample (20MB)</p>
-             </div>
-          </div>
-       </div>
-     </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-3">
-  <div class="bg-gradient-dark position-relative m-3 border-radius-xl">
-    <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute start-0 top-md-0 w-100 opacity-6">
-    <div class="container pb-lg-9 pb-7 pt-7 postion-relative z-index-2">
-      <div class="row">
-        <div class="col-md-8 mx-auto text-center">
-          <span class="badge bg-gradient-info mb-2">Pricing</span>
-          <h3 class="text-white">See our pricing</h3>
-          <p class="text-white">You have Free Unlimited Updates and Premium Support on each package.</p>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="mt-n8">
-    <div class="container">
-      <div class="row">
-        <div class="col-lg-3 mb-lg-auto mb-4 my-auto p-md-0 ms-auto">
-          <div class="card border-radius-top-end-lg-0 border-radius-bottom-end-lg-0">
-            <div class="card-header text-center pt-4 pb-3">
-              <h6 class="text-dark opacity-8 text mb-0">Starter</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>199
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">500MB cloud storage</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Lite support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn w-100 bg-gradient-dark mb-0">
-                Buy now
-              </a>
-            </div>
-          </div>
-        </div>
-
-        <div class="col-lg-3 p-md-0 mb-lg-auto mb-4 z-index-2">
-          <div class="card">
-            <div class="card-header text-center pt-4 pb-3">
-              <h6 class="text-dark opacity-8 text mb-0 mt-2">Pro</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>299
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">100GB cloud storage</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">500 team members</span>
-                </div>
-              </div>
-
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Premium support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn btn-icon bg-gradient-info d-block mb-0">
-                Try Pro
-                <i class="fas fa-arrow-right ms-1"></i>
-              </a>
-            </div>
-          </div>
-        </div>
-
-        <div class="col-lg-3 mb-lg-auto mb-4 my-auto p-md-0 me-auto">
-          <div class="card border-radius-top-start-lg-0 border-radius-bottom-start-lg-0">
-            <div class="card-header text-center pt-4 pb-2">
-              <h6 class="text-dark opacity-8 text mb-0">Premium</h6>
-              <h1 class="font-weight-bolder">
-                <small>$</small>399
-              </h1>
-            </div>
-            <div class="card-body mx-auto pt-0">
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Complete documentation</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Working materials in Sketch</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">2GB cloud storage</span>
-                </div>
-              </div>
-              <div class="justify-content-start d-flex px-2 py-1">
-                <div>
-                  <i class="fas fa-check text-info text-sm"></i>
-                </div>
-                <div class="ps-2">
-                  <span class="text-sm">Premium support</span>
-                </div>
-              </div>
-            </div>
-            <div class="card-footer pt-0">
-              <a href="javascript:;" class="btn w-100 bg-gradient-dark mb-0">Buy now</a>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5 bg-gradient-dark position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/pattern-lines.svg" alt="pattern-lines" class="position-absolute start-0 top-0 w-100 h-100 opacity-6">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <div class="container py-7 postion-relative z-index-2">
-    <div class="col-lg-6 col-md-8 mx-auto text-center mb-5">
-      <h3 class="text-white">Pick the best plan for you</h3>
-      <p class="text-white opacity-6">You have Free Unlimited Updates and Premium Support on each package.</p>
-    </div>
-    <div class="row">
-      <div class="col-lg-4 col-md-6 ms-lg-auto mb-sm-0 mb-5">
-        <div class="card text-center">
-          <div class="card-header bg-transparent">
-            <h5 class="mt-4 mb-2">Freelancer</h5>
-            <h2>
-              $29 <small class="text-sm text-secondary font-weight-bold">/ month</small>
-            </h2>
-          </div>
-          <div class="card-body">
-            <ul class="list-unstyled max-width-200 mx-auto">
-              <li>
-                <b>10</b> Projects
-              </li>
-              <hr class="horizontal dark">
-              <li>
-                <b>1</b> Team Members
-              </li>
-              <hr class="horizontal dark">
-              <li>
-                <b>5</b> Personal Contacts
-              </li>
-              <hr class="horizontal dark">
-              <li>
-                <b>500</b> Messages
-              </li>
-            </ul>
-            <button type="button" class="btn bg-gradient-warning mt-4">Get Access</button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 me-lg-auto">
-        <div class="card text-center bg-gradient-warning">
-          <div class="card-header bg-transparent">
-            <h5 class="mt-4 mb-2 text-white">Startup</h5>
-            <h2 class="text-white">
-              $49 <small class="text-sm">/ month</small>
-            </h2>
-          </div>
-          <div class="card-body">
-            <ul class="list-unstyled max-width-200 mx-auto text-white">
-              <li>
-                <b>100</b> Projects
-              </li>
-              <hr class="horizontal light">
-              <li>
-                <b>25</b> Team Members
-              </li>
-              <hr class="horizontal light">
-              <li>
-                <b>15</b> Personal Contacts
-              </li>
-              <hr class="horizontal light">
-              <li>
-                <b>5K</b> Messages
-              </li>
-            </ul>
-            <button type="button" class="btn btn-white mt-4">Get Access</button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Pricing 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4 bg-gray-100">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 col-md-8 mx-auto text-center">
-        <h3>Pick the best plan for you</h3>
-        <p>You have Free Unlimited Updates and Premium Support on each package.</p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-4 col-md-6 col-8 mx-auto mt-4 mb-3">
-        <div class="nav-wrapper">
-          <ul class="nav nav-pills nav-pills-info nav-fill p-1" id="tabs-pricing" role="tablist">
-            <li class="nav-item">
-              <a class="nav-link mb-sm-3 mb-md-0 active" id="tabs-iconpricing-tab-1" data-bs-toggle="tab" href="#tabs-pricing-tab-1" role="tab" aria-controls="tabs-pricing-tab-1" aria-selected="true">
-                Annual
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link mb-sm-3 mb-md-0" id="tabs-iconpricing-tab-2" data-bs-toggle="tab" href="#tabs-pricing-tab-2" role="tab" aria-controls="tabs-pricing-tab-2" aria-selected="false">
-                Monthly
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-pricing">
-          <div class="card-header bg-gradient-dark text-center pt-4 pb-5 position-relative">
-            <div class="z-index-1 position-relative">
-              <h5 class="text-white">Freelancer</h5>
-              <h1 class="text-white mt-2 mb-0">
-                <small>$</small>199</h1>
-              <h6 class="text-white">per year</h6>
-            </div>
-          </div>
-          <div class="position-relative mt-n5" style="height: 50px;">
-            <div class="position-absolute w-100">
-                <svg class="waves waves-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
-                  <defs>
-                    <path id="card-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
-                  </defs>
-                  <g class="moving-waves">
-                    <use xlink:href="#card-wave" x="48" y="-1" fill="rgba(255,255,255,0.30"></use>
-                    <use xlink:href="#card-wave" x="48" y="3" fill="rgba(255,255,255,0.35)"></use>
-                    <use xlink:href="#card-wave" x="48" y="5" fill="rgba(255,255,255,0.25)"></use>
-                    <use xlink:href="#card-wave" x="48" y="8" fill="rgba(255,255,255,0.20)"></use>
-                    <use xlink:href="#card-wave" x="48" y="13" fill="rgba(255,255,255,0.15)"></use>
-                    <use xlink:href="#card-wave" x="48" y="16" fill="rgba(255,255,255,0.99)"></use>
-                  </g>
-                </svg>
-              </div>
-          </div>
-          <div class="card-body text-center">
-            <ul class="list-unstyled max-width-200 mx-auto">
-              <li>
-                <b>10</b> Projects
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>1</b> Team Members
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>5</b> Personal Contacts
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>500</b> Messages
-              </li>
-            </ul>
-            <a href="javascript:;" class="btn bg-gradient-dark w-100 mt-4 mb-0">
-              Get started
-            </a>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 mt-5 mt-sm-0 ">
-        <div class="card card-pricing">
-          <div class="card-header text-center pt-4 pb-5 position-relative" style="background-image: url(&#39;../../assets/img/curved-images/curved6-small.jpg&#39;);background-size: cover;">
-            <span class="mask bg-gradient-dark opacity-4 border-radius-lg"></span>
-            <div class="z-index-1 position-relative">
-              <h5 class="text-white">Startup</h5>
-              <h1 class="text-white mt-2 mb-0">
-                <small>$</small>349</h1>
-              <h6 class="text-white">per year</h6>
-            </div>
-          </div>
-          <div class="position-relative mt-n5" style="height: 50px;">
-            <div class="position-absolute w-100">
-                <svg class="waves waves-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
-                  <defs>
-                    <path id="card-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
-                  </defs>
-                  <g class="moving-waves">
-                    <use xlink:href="#card-wave" x="48" y="-1" fill="rgba(255,255,255,0.30"></use>
-                    <use xlink:href="#card-wave" x="48" y="3" fill="rgba(255,255,255,0.35)"></use>
-                    <use xlink:href="#card-wave" x="48" y="5" fill="rgba(255,255,255,0.25)"></use>
-                    <use xlink:href="#card-wave" x="48" y="8" fill="rgba(255,255,255,0.20)"></use>
-                    <use xlink:href="#card-wave" x="48" y="13" fill="rgba(255,255,255,0.15)"></use>
-                    <use xlink:href="#card-wave" x="48" y="16" fill="rgba(255,255,255,0.99)"></use>
-                  </g>
-                </svg>
-              </div>
-          </div>
-          <div class="card-body text-center">
-            <ul class="list-unstyled max-width-200 mx-auto">
-              <li>
-                <b>10</b> Projects
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>1</b> Team Members
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>5</b> Personal Contacts
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>500</b> Messages
-              </li>
-            </ul>
-            <a href="javascript:;" class="btn bg-gradient-primary w-100 mt-4 mb-0">
-              Get started
-            </a>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 mt-5 mt-lg-0 mx-md-auto">
-        <div class="card card-pricing">
-          <div class="card-header bg-gradient-dark text-center pt-4 pb-5 position-relative">
-            <div class="z-index-1 position-relative">
-              <h5 class="text-white">Company</h5>
-              <h1 class="text-white mt-2 mb-0">
-                <small>$</small>779</h1>
-              <h6 class="text-white">per year</h6>
-            </div>
-          </div>
-          <div class="position-relative mt-n5" style="height: 50px;">
-            <div class="position-absolute w-100">
-                <svg class="waves waves-sm" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
-                  <defs>
-                    <path id="card-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
-                  </defs>
-                  <g class="moving-waves">
-                    <use xlink:href="#card-wave" x="48" y="-1" fill="rgba(255,255,255,0.30"></use>
-                    <use xlink:href="#card-wave" x="48" y="3" fill="rgba(255,255,255,0.35)"></use>
-                    <use xlink:href="#card-wave" x="48" y="5" fill="rgba(255,255,255,0.25)"></use>
-                    <use xlink:href="#card-wave" x="48" y="8" fill="rgba(255,255,255,0.20)"></use>
-                    <use xlink:href="#card-wave" x="48" y="13" fill="rgba(255,255,255,0.15)"></use>
-                    <use xlink:href="#card-wave" x="48" y="16" fill="rgba(255,255,255,0.99)"></use>
-                  </g>
-                </svg>
-              </div>
-          </div>
-          <div class="card-body text-center">
-            <ul class="list-unstyled max-width-200 mx-auto">
-              <li>
-                <b>10</b> Projects
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>1</b> Team Members
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>5</b> Personal Contacts
-                <hr class="horizontal dark">
-              </li>
-              <li>
-                <b>500</b> Messages
-              </li>
-            </ul>
-            <a href="javascript:;" class="btn bg-gradient-dark w-100 mt-4 mb-0">
-              Get started
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/stats.html b/sections/page-sections/stats.html deleted file mode 100644 index b4a428cb..00000000 --- a/sections/page-sections/stats.html +++ /dev/null @@ -1,1125 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Stats

-
- -
-
-
-
-

Stats 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
        <section class="py-10" id="count-stats">
-  <div class="container">
-    <div class="row justify-content-center text-center">
-      <div class="col-md-3">
-        <h1 class="text-gradient text-info" id="state1" countTo="300"></h1>
-        <h5 class="mt-3">Projects</h5>
-        <p>Of “high-performing” level are led by a certified project manager</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-info" id="state2" countTo="70"></h1>
-        <h5 class="mt-3">Hours</h5>
-        <p>That meets quality standards required by our users</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-info" id="state3" countTo="30"></h1>
-        <h5 class="mt-3">Support</h5>
-        <p>Actively engage team members that finishes on time</p>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-        <!-- Mandatory scripts -->
-        <script src="../../assets/js/plugins/countup.min.js"></script>
-        <script src="https://demos.creative-tim.com/soft-ui-design-system-pro/assets/js/soft-design-system-pro.min.js?v=1.0.6" type="text/javascript"></script>
-        <script type="text/javascript">
-          if (document.getElementById("state1")) {
-            const countUp = new CountUp("state1", document.getElementById("state1").getAttribute("countTo"));
-            if (!countUp.error) {
-              countUp.start();
-            } else {
-              console.error(countUp.error);
-            }
-          }
-          if (document.getElementById("state2")) {
-            const countUp1 = new CountUp("state2", document.getElementById("state2").getAttribute("countTo"));
-            if (!countUp1.error) {
-              countUp1.start();
-            } else {
-              console.error(countUp1.error);
-            }
-          }
-          if (document.getElementById("state3")) {
-            const countUp2 = new CountUp("state3", document.getElementById("state3").getAttribute("countTo"));
-            if (!countUp2.error) {
-              countUp2.start();
-            } else {
-              console.error(countUp2.error);
-            };
-          }
-        </script>
-        
-
-
-
-
-
-
-
-
-
-

Stats 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
        <section class="py-10">
-  <div class="container">
-    <div class="row justify-content-center text-center">
-      <div class="col-md-3">
-        <h1 class="text-gradient text-primary">323</h1>
-        <h5 class="mt-3">Projects</h5>
-        <p>Of “high-performing” level are led by a certified project manager</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-primary">500+</h1>
-        <h5 class="mt-3">Hours</h5>
-        <p>That meets quality standards required by our users</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-primary">24/7</h1>
-        <h5 class="mt-3">Support</h5>
-        <p>Actively engage team members that finishes on time</p>
-      </div>
-    </div>
-  </div>
-</section>
-
-        
-
-
-
-
-
-
-
-
-
-

Stats 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
        <section class="py-11">
-  <div class="container">
-    <div class="row justify-content-center text-center">
-      <div class="col-md-3">
-        <h1 class="text-gradient text-warning">700</h1>
-        <p>Of “high-performing” level are led by a certified project manager</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-warning">1200+</h1>
-        <p>That meets quality standards required by our users</p>
-      </div>
-      <div class="col-md-3">
-        <h1 class="text-gradient text-warning">>300</h1>
-        <p>Actively engage team members that finishes on time</p>
-      </div>
-    </div>
-  </div>
-</section>
-
-        
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/teams.html b/sections/page-sections/teams.html deleted file mode 100644 index 1054db3b..00000000 --- a/sections/page-sections/teams.html +++ /dev/null @@ -1,2296 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Teams

-
- -
-
-
-
-

Team 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-7 mb-5">
-        <div class="icon icon-shape bg-gradient-primary shadow text-center mb-3">
-          <i class="fas fa-user"></i>
-        </div>
-        <h3>Our Awesome Team</h3>
-        <p>This is the paragraph where you can write more details about your team. Keep you user engaged by providing meaningful information.</p>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-4 col-md-6 mt-md-0 mt-5">
-        <div class="card card-profile card-plain">
-          <div class="text-start mt-n5 z-index-1">
-            <div class="position-relative w-25">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/bruce-mars.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body ps-0">
-            <h5 class="mb-0">Alec Thompson</h5>
-            <p class="text-muted">CEO / Co-Founder</p>
-            <p>
-              And I love you like Kanye loves Kanye. We need to restart the human foundation.
-            </p>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-twitter" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-twitter"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-dribbble" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-dribbble"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-linkedin" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-linkedin"></i></span>
-            </button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 mt-md-0 mt-5">
-        <div class="card card-profile card-plain">
-          <div class="mt-n5 z-index-1">
-            <div class="position-relative w-25">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/team-3.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body ps-0">
-            <h5 class="mb-0">Alec Thompson</h5>
-            <p class="text-muted">CEO / Co-Founder</p>
-            <p>
-              And I love you like Kanye loves Kanye. We need to restart the human foundation.
-            </p>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-twitter" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-twitter"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-dribbble" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-dribbble"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-linkedin" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-linkedin"></i></span>
-            </button>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 mx-md-auto mt-md-0 mt-5">
-        <div class="card card-profile card-plain">
-          <div class="mt-n5 z-index-1">
-            <div class="position-relative w-25">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/team-4.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body ps-0">
-            <h5 class="mb-0">Alec Thompson</h5>
-            <p class="text-muted">CEO / Co-Founder</p>
-            <p>
-              And I love you like Kanye loves Kanye. We need to restart the human foundation.
-            </p>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-twitter" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-twitter"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-dribbble" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-dribbble"></i></span>
-            </button>
-            <button type="button" class="btn-icon-only btn-simple btn btn-lg btn-linkedin" data-toggle="tooltip" data-placement="bottom" title="Follow me!">
-              <span class="btn-inner--icon"><i class="fab fa-linkedin"></i></span>
-            </button>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Team 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 mx-auto text-center mb-5">
-        <h3 class="text-gradient text-info">The Executive Team</h3>
-        <p class="font-weight-normal">This is the paragraph where you can write more details about your team. Keep you user engaged by providing meaningful information.</p>
-      </div>
-    </div>
-    <div class="row mt-lg-5 mt-3">
-      <div class="col-md-6">
-        <div class="card card-profile card-plain">
-          <div class="row">
-            <div class="col-lg-5">
-              <a href="javascript:;">
-                <div class="position-relative">
-                  <div class="blur-shadow-image">
-                    <img class="w-100 rounded-3 shadow-lg" src="../../assets/img/kal-visuals.jpg">
-                  </div>
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-7 ps-0 my-auto">
-              <div class="card-body text-start">
-                <div class="p-md-0 pt-3">
-                  <h5 class="font-weight-bolder mb-0">Ryan Samuel</h5>
-                  <p class="text-uppercase text-sm font-weight-bold mb-2">Financial Examiner</p>
-                </div>
-                <p class="mb-4">Today you are you! That is truer than true! There is no one alive who is you-er than you!</p>
-                <button type="button" class="btn btn-facebook btn-simple btn-lg mb-0 pe-3 ps-2">
-                  <i class="fab fa-facebook"></i>
-                </button>
-                <button type="button" class="btn btn-twitter btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-twitter"></i>
-                </button>
-                <button type="button" class="btn btn-github btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-github"></i>
-                </button>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-6">
-        <div class="card card-profile card-plain">
-          <div class="row">
-            <div class="col-lg-5">
-              <a href="javascript:;">
-                <div class="position-relative">
-                  <div class="blur-shadow-image">
-                    <img class="w-100 rounded-3 shadow-lg" src="../../assets/img/jordan.jpg" alt="profile image">
-                  </div>
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-7 ps-0 my-auto">
-              <div class="card-body text-start">
-                <div class="p-md-0 pt-3">
-                  <h5 class="font-weight-bolder mb-0">Jordan Michael</h5>
-                  <p class="text-uppercase text-sm font-weight-bold mb-2">UI Designer</p>
-                </div>
-                <p class="mb-4">Artist is a term applied to a person who engages in an activity deemed to be an art.</p>
-                <button type="button" class="btn btn-facebook btn-simple btn-lg mb-0 pe-3 ps-2">
-                  <i class="fab fa-facebook"></i>
-                </button>
-                <button type="button" class="btn btn-twitter btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-twitter"></i>
-                </button>
-                <button type="button" class="btn btn-github btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-github"></i>
-                </button>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-    <div class="row mt-lg-5 mt-3">
-      <div class="col-md-6">
-        <div class="card card-profile card-plain">
-          <div class="row">
-            <div class="col-lg-5">
-              <a href="javascript:;">
-                <div class="position-relative">
-                  <div class="blur-shadow-image">
-                    <img class="w-100 rounded-3 shadow-lg" src="../../assets/img/ivana.jpg">
-                  </div>
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-7 ps-0 my-auto">
-              <div class="card-body text-start">
-                <div class="p-md-0 pt-3">
-                  <h5 class="font-weight-bolder mb-0">Nora Hazel</h5>
-                  <p class="text-uppercase text-sm font-weight-bold mb-2">Legal Secretary</p>
-                </div>
-                <p class="mb-4">Do not dwell in the past, do not dream of the future, concentrate the mind...</p>
-                <button type="button" class="btn btn-facebook btn-simple btn-lg mb-0 pe-3 ps-2">
-                  <i class="fab fa-facebook"></i>
-                </button>
-                <button type="button" class="btn btn-twitter btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-twitter"></i>
-                </button>
-                <button type="button" class="btn btn-github btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-github"></i>
-                </button>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-6">
-        <div class="card card-profile card-plain">
-          <div class="row">
-            <div class="col-lg-5">
-              <a href="javascript:;">
-                <div class="position-relative">
-                  <div class="blur-shadow-image">
-                    <img class="w-100 rounded-3 shadow-lg" src="../../assets/img/brooke.jpg">
-                  </div>
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-7 ps-0 my-auto">
-              <div class="card-body text-start">
-                <div class="p-md-0 pt-3">
-                  <h5 class="font-weight-bolder mb-0">Otto Gonzalez</h5>
-                  <p class="text-uppercase text-sm font-weight-bold mb-2">Landscape Architect</p>
-                </div>
-                <p class="mb-4">Success is not final, failure is not fatal: it is the courage to continue that counts...</p>
-                <button type="button" class="btn btn-facebook btn-simple btn-lg mb-0 pe-3 ps-2">
-                  <i class="fab fa-facebook"></i>
-                </button>
-                <button type="button" class="btn btn-twitter btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-twitter"></i>
-                </button>
-                <button type="button" class="btn btn-github btn-simple btn-lg mb-0 px-2">
-                  <i class="fab fa-github"></i>
-                </button>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Teams w/ 4 cards w/ image on left & descriptio/social link on right -->
-
-
-
-
-
-
-
-
-
-

Team 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-7 position-relative" style="background-image: url(&#39;../../assets/img/curved-images/curved14.jpg&#39;); background-size:cover;">
-  <span class="mask bg-gradient-dark"></span>
-  <div class="container position-relative mb-4">
-    <div class="row">
-      <div class="col-md-8 mx-auto text-center mb-5">
-        <div class="icon icon-shape bg-gradient-info shadow text-center mb-3">
-          <i class="fas fa-users"></i>
-        </div>
-        <h3 class="text-white z-index-1 position-relative">The Executive Team</h3>
-        <p class="lead text-white opacity-6">There’s nothing I really wanted to do in life that I wasn’t able to get good at. That’s my skill.</p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-6 col-12">
-        <div class="card card-profile overflow-hidden">
-          <div class="row">
-            <div class="col-lg-4 col-md-6 col-12 pe-lg-0">
-              <a href="javascript:;">
-                <div class="p-3 pe-md-0">
-                  <img class="w-100 border-radius-md" src="../../assets/img/kal-visuals-square.jpg">
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-8 col-md-6 col-12 ps-lg-0 my-auto">
-              <div class="card-body">
-                <h5 class="mb-0">Emma Roberts</h5>
-                <h6 class="text-info">UI Designer</h6>
-                <p class="mb-0">Artist is a term applied to a person who engages in an activity deemed to be an art.</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6 col-12">
-        <div class="card card-profile mt-lg-0 mt-5 overflow-hidden">
-          <div class="row">
-            <div class="col-lg-4 col-md-6 col-12 pe-lg-0">
-              <a href="javascript:;">
-                <div class="p-3 pe-md-0">
-                <img class="w-100 border-radius-md" src="../../assets/img/bruce-mars.jpg">
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-8 col-md-6 col-12 ps-lg-0 my-auto">
-              <div class="card-body">
-                <h5 class="mb-0">William Pearce</h5>
-                <h6 class="text-info">Boss</h6>
-                <p>Artist is a term applied to a person who engages in an activity deemed to be an art.</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-    <div class="row mt-5">
-      <div class="col-lg-6 col-12">
-        <div class="card card-profile overflow-hidden">
-          <div class="row">
-            <div class="col-lg-4 col-md-6 col-12 pe-lg-0">
-              <a href="javascript:;">
-                <div class="p-3 pe-md-0">
-
-                <img class="w-100 border-radius-md" src="../../assets/img/team-4.jpg">
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-8 col-md-6 col-12 ps-lg-0 my-auto">
-              <div class="card-body">
-                <h5 class="mb-0">Ivana Flow</h5>
-                <h6 class="text-info">Athlete</h6>
-                <p>Artist is a term applied to a person who engages in an activity deemed to be an art.</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-6 col-12">
-        <div class="card card-profile mt-lg-0 mt-5 overflow-hidden">
-          <div class="row">
-            <div class="col-lg-4 col-md-6 col-12 pe-lg-0">
-              <a href="javascript:;">
-                <div class="p-3 pe-md-0">
-
-                <img class="w-100 border-radius-md" src="../../assets/img/ivana-square.jpg">
-                </div>
-              </a>
-            </div>
-            <div class="col-lg-8 col-md-6 col-12 ps-lg-0 my-auto">
-              <div class="card-body">
-                <h5 class="mb-0">Sophia Garcia</h5>
-                <h6 class="text-info">JS Developer</h6>
-                <p>Artist is a term applied to a person who engages in an activity deemed to be an art.</p>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 z-index-1 bottom-0">
-    <svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
-      <defs>
-        <path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
-      </defs>
-      <g class="moving-waves">
-        <use xlink:href="#gentle-wave" x="48" y="-1" fill="rgba(255,255,255,0.40"></use>
-        <use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.35)"></use>
-        <use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.25)"></use>
-        <use xlink:href="#gentle-wave" x="48" y="8" fill="rgba(255,255,255,0.20)"></use>
-        <use xlink:href="#gentle-wave" x="48" y="13" fill="rgba(255,255,255,0.15)"></use>
-        <use xlink:href="#gentle-wave" x="48" y="16" fill="rgba(255,255,255,0.95"></use>
-      </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Team 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Teams w/ 4 cards in a row w/ image & name & function -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 mx-auto text-center">
-        <h6 class="text-gradient text-warning">The Executive Team</h6>
-        <h2>Building the future</h2>
-      </div>
-    </div>
-    <div class="row mt-md-5 mt-4">
-      <div class="col-lg-3 col-6 mb-lg-0 mb-4">
-        <div class="card card-profile card-plain">
-          <div class="card-body text-center bg-white shadow-lg border-radius-lg p-3">
-            <a href="javascript:;">
-              <img class="w-100 border-radius-md" src="../../assets/img/kal-visuals.jpg">
-            </a>
-            <h5 class="mt-3 mb-1 d-md-block d-none">Miriam Lendra</h5>
-            <p class="mb-1 d-md-none d-block text-sm font-weight-bold text-darker">Miriam Lendra</p>
-            <p class="mb-0 text-xs font-weight-bolder text-warning text-gradient text-uppercase">Desktop Publisher</p>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-6 mb-lg-0 mb-4">
-        <div class="card card-profile card-plain">
-          <div class="card-body text-center bg-white shadow-lg border-radius-lg p-3">
-            <a href="javascript:;">
-              <img class="w-100 border-radius-md" src="../../assets/img/brooke.jpg">
-            </a>
-            <h5 class="mt-3 mb-1 d-md-block d-none">Natalie Paisley</h5>
-            <p class="mb-1 d-md-none d-block text-sm font-weight-bold text-darker">Natalie Paisley</p>
-            <p class="mb-0 text-xs font-weight-bolder text-warning text-gradient text-uppercase">Credit Analyst</p>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-6 mb-lg-0 mb-4">
-        <div class="card card-profile card-plain">
-          <div class="card-body text-center bg-white shadow-lg border-radius-lg p-3">
-            <a href="javascript:;">
-              <img class="w-100 border-radius-md" src="../../assets/img/ivana.jpg">
-            </a>
-            <h5 class="mt-3 mb-1 d-md-block d-none">Bella Audrey</h5>
-            <p class="mb-1 d-md-none d-block text-sm font-weight-bold text-darker">Bella Audrey</p>
-            <p class="mb-0 text-xs font-weight-bolder text-warning text-gradient text-uppercase">Economist</p>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-3 col-6 mb-lg-0 mb-4">
-        <div class="card card-profile card-plain">
-          <div class="card-body text-center bg-white shadow-lg border-radius-lg p-3">
-            <a href="javascript:;">
-              <img class="w-100 border-radius-md" src="../../assets/img/jordan.jpg" alt="card image">
-            </a>
-            <h5 class="mt-3 mb-1 d-md-block d-none">Wesley Skylar</h5>
-            <p class="mb-1 d-md-none d-block text-sm font-weight-bold text-darker">Mila Skylar</p>
-            <p class="mb-0 text-xs font-weight-bolder text-warning text-gradient text-uppercase">Aviation Inspector</p>
-          </div>
-        </div>
-      </div>
-    </div>
-
-    <div class="row mt-5">
-      <div class="col-lg-6">
-        <h2>Get your own app</h2>
-        <p>The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.</p>
-      </div>
-      <div class="col-lg-6 text-end d-flex flex-column justify-content-center">
-        <button type="button" class="btn bg-gradient-warning mb-0 ms-lg-auto me-lg-0 me-auto mt-lg-0 mt-2">Join Team</button>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Teams w/ 4 cards w/ image on left & descriptio/social link on right -->
-
-
-
-
-
-
-
-
-
-

Team 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Teams w/ 4 cards in a row w/ avatar on bottom end-->
-<section class="py-8">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-8 mx-auto text-center">
-        <h4 class="text-gradient text-primary">Join our awesome team</h4>
-
-      </div>
-    </div>
-    <div class="row mt-lg-5 mt-4">
-      <div class="col-lg-4 col-sm-6 mb-4">
-        <div class="card card-body">
-          <div class="row">
-            <div class="col-lg-7">
-              <h5 class="mb-2">Michael Frisen</h5>
-              <span class="badge badge-sm rounded-pill mb-3 text-dark">PHP Developer</span>
-              <br/>
-              <button type="button" class="btn btn-twitter btn-simple px-2 mb-0">
-                <i class="fab fa-twitter text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-dribbble btn-simple px-2 mb-0">
-                <i class="fab fa-dribbble text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-slack btn-simple px-2 mb-0">
-                <i class="fab fa-slack text-lg"></i>
-              </button>
-            </div>
-            <div class="col-lg-5 text-end my-auto">
-              <img class="avatar avatar-xxl" src="../../assets/img/team-2.jpg">
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-sm-6 mb-4">
-        <div class="card card-body">
-          <div class="row">
-            <div class="col-lg-7">
-              <h5 class="mb-2">Laurent Shaun</h5>
-              <span class="badge badge-sm rounded-pill mb-3 text-dark">Laravel Senior</span>
-              <br/>
-              <button type="button" class="btn btn-facebook btn-simple px-2 mb-0">
-                <i class="fab fa-facebook-f text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-dribbble btn-simple px-2 mb-0">
-                <i class="fab fa-dribbble text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-slack btn-simple px-2 mb-0">
-                <i class="fab fa-slack text-lg"></i>
-              </button>
-            </div>
-            <div class="col-lg-5 text-end my-auto">
-              <img class="avatar avatar-xxl" src="../../assets/img/team-3.jpg">
-            </div>
-          </div>
-        </div>
-      </div>
-
-      <div class="col-lg-4 col-sm-6 mb-4">
-        <div class="card card-body">
-          <div class="row">
-            <div class="col-lg-7">
-              <h5 class="mb-2">Ramon Siente</h5>
-              <span class="badge badge-sm rounded-pill mb-3 text-dark">Vue.js Specialist</span>
-              <br/>
-              <button type="button" class="btn btn-twitter btn-simple px-2 mb-0">
-                <i class="fab fa-twitter text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-dribbble btn-simple px-2 mb-0">
-                <i class="fab fa-dribbble text-lg"></i>
-              </button>
-              <button type="button" class="btn btn-github btn-simple px-2 mb-0">
-                <i class="fab fa-github text-lg"></i>
-              </button>
-            </div>
-            <div class="col-lg-5 text-end my-auto">
-              <img class="avatar avatar-xxl" src="../../assets/img/team-2.jpg">
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Teams w/ 4 cards in a row w/ avatar on bottom end-->
-
-
-
-
-
-
-
-
-
-

Team 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5 bg-gray-100">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-7 mx-auto text-center mb-5">
-        <h3 class="text-gradient text-info mb-0">Our Team</h3>
-        <h3>You are into a great company</h3>
-        <p>This is the paragraph where you can write more details about your team. Keep you user engaged by providing meaningful information.</p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-profile">
-          <a href="javascript:;">
-            <div class="p-3">
-              <img class="w-100 border-radius-md" src="../../assets/img/ivana-square.jpg">
-            </div>
-          </a>
-          <div class="card-body blur justify-content-center text-center mt-n5 mx-4 mb-4 border-radius-md">
-            <h4 class="mb-0">Hattie McKenzie</h4>
-            <p>Montreal, QC</p>
-            <div class="row justify-content-center text-center">
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">323</h5>
-                <small>Projects</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">500+</h5>
-                <small>Hours</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">24/7</h5>
-                <small>Support</small>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6">
-        <div class="card card-profile mt-md-0 mt-5">
-          <a href="javascript:;">
-            <div class="p-3">
-              <img class="w-100 border-radius-md" src="../../assets/img/kal-visuals-square.jpg">
-            </div>
-          </a>
-          <div class="card-body blur justify-content-center text-center mt-n5 mx-4 mb-4 border-radius-md">
-            <h4 class="mb-0">Annie Spratt</h4>
-            <p>Bucharest, RO</p>
-            <div class="row justify-content-center text-center">
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">450</h5>
-                <small>Projects</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">400+</h5>
-                <small>Hours</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">24/7</h5>
-                <small>Support</small>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-6 mx-md-auto">
-        <div class="card card-profile mt-md-0 mt-5">
-          <a href="javascript:;">
-            <div class="p-3">
-              <img class="w-100 border-radius-md" src="../../assets/img/bruce-mars.jpg">
-            </div>
-          </a>
-          <div class="card-body blur justify-content-center text-center mt-n5 mx-4 mb-4 border-radius-md">
-            <h4 class="mb-0">Bruce Mars</h4>
-            <p>Atlanta, U.S.</p>
-            <div class="row justify-content-center text-center">
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">750</h5>
-                <small>Projects</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">800+</h5>
-                <small>Hours</small>
-              </div>
-              <div class="col-lg-4 col-4">
-                <h5 class="text-info mb-0">24/7</h5>
-                <small>Support</small>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sections/page-sections/testimonials.html b/sections/page-sections/testimonials.html deleted file mode 100644 index a5d9ca42..00000000 --- a/sections/page-sections/testimonials.html +++ /dev/null @@ -1,3345 +0,0 @@ - - - - - - - - - - - Soft UI Design System by Creative Tim - - - - - - - - - - - - - - - - - -
-
-
-
- -

Testimonials

-
- -
-
-
-
-

Testimonials 1

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center">
-        <h2 class="text-gradient text-primary mb-0">What random people</h2>
-        <h2 class="mb-3">Think about us</h2>
-        <p>That’s the main thing people are controlled by! Thoughts- their perception of themselves! </p>
-      </div>
-    </div>
-    <div class="row mt-6">
-      <div class="col-lg-4 col-md-8">
-        <div class="card card-plain">
-          <div class="card-body">
-            <div class="author">
-              <img src="../../assets/img/team-3.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small><i class="far fa-clock"></i> 5 min read</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="far fa-star"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-8 ms-md-auto">
-        <div class="card bg-gradient-primary">
-          <div class="card-body">
-            <div class="author align-items-center">
-              <img src="../../assets/img/marie.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span class="text-white">Mathew Glock</span>
-                <div class="stats">
-                  <small class="text-white">Posted on 28 February</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4 text-white">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star text-white"></i>
-              <i class="fas fa-star text-white"></i>
-              <i class="fas fa-star text-white"></i>
-              <i class="far fa-star text-white"></i>
-              <i class="far fa-star text-white"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-4 col-md-8">
-        <div class="card card-plain">
-          <div class="card-body">
-            <div class="author">
-              <img src="../../assets/img/team-2.jpg" alt="..." class="avatar shadow">
-              <div class="name ps-2">
-                <span>Mathew Glock</span>
-                <div class="stats">
-                  <small><i class="far fa-clock"></i> 5 min read</small>
-                </div>
-              </div>
-            </div>
-            <p class="mt-4">"If you have the opportunity to play this game of life you need to appreciate every moment."</p>
-            <div class="rating mt-3">
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-              <i class="fas fa-star"></i>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-    <hr class="horizontal dark my-5">
-    <div class="row">
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-apple.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-facebook.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-behance.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-spotify.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-coinbase.svg" alt="Logo">
-      </div>
-      <div class="col-lg-2 col-6">
-        <img class="w-100 opacity-6" src="../../assets/img/logos/gray-logos/logo-pinterest.svg" alt="Logo">
-      </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Testimonials 2

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="bg-gradient-dark position-relative overflow-hidden py-4">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <div id="carouselExampleIndicators" class="carousel slide pt-7 pb-11" data-bs-ride="carousel">
-    <ol class="carousel-indicators pb-7">
-      <a href="javascript:;">
-        <img src="../../assets/img/team-4.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-radius-lg border-0 active" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"> <span class="text-white mx-2">&#124;</span>
-      </a>
-
-      <a href="javascript:;">
-        <img src="../../assets/img/team-3.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-radius-lg border-0" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"> <span class="text-white mx-2">&#124;</span>
-      </a>
-
-      <a href="javascript:;">
-        <img src="../../assets/img/team-2.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-radius-lg border-0" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2">
-      </a>
-    </ol>
-    <div class="carousel-inner">
-      <div class="carousel-item active">
-        <div class="container">
-          <div class="row">
-            <div class="col-lg-7 mx-auto text-center">
-              <img class="w-50 mb-4" src="../../assets/img/logos/medium-logos/logo-google.svg" alt="">
-              <p class="lead text-white">"We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams." </p>
-              <div class="author justify-content-center">
-                <div class="name ps-2">
-                  <span class="text-white">John Down</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">Visionary, Google</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="carousel-item">
-        <div class="container">
-          <div class="row">
-            <div class="col-lg-7 mx-auto text-center">
-              <img class="w-50 mb-4" src="../../assets/img/logos/medium-logos/logo-spotify.svg" alt="">
-              <p class="lead text-white">"We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams."</p>
-              <div class="author justify-content-center">
-                <div class="name ps-2">
-                  <span class="text-white">Marcell Glock</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">Chief Executive, Spotify</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="carousel-item">
-        <div class="container">
-          <div class="row">
-            <div class="col-lg-7 mx-auto text-center">
-              <img class="w-50 mb-4" src="../../assets/img/logos/medium-logos/logo-netflix.svg" alt="">
-              <p class="lead text-white">"We’re not always in the position that we want to be at. We’re constantly growing. We’re constantly making mistakes. We’re constantly trying to express ourselves and actualize our dreams." </p>
-              <div class="author justify-content-center">
-                <div class="name ps-2">
-                  <span class="text-white">Mathew Goat</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">Social Media Executive, Netflix</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Testimonials 3

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="py-4 position-relative">
-  <div id="carousel-testimonials" class="carousel slide carousel-team">
-    <div class="carousel-inner">
-      <div class="carousel-item active">
-        <div class="container">
-          <div class="row align-items-center">
-            <div class="col-md-5 p-5 ms-lg-auto">
-              <div class="p-3">
-                <img class="w-100 border-radius-md" src="../../assets/img/charles.jpg" alt="First slide">
-              </div>
-            </div>
-            <div class="col-md-5 me-lg-auto position-relative">
-              <p class="text-sm font-weight-bold mb-1">- Customer Story</p>
-              <h3 class="text-dark">Excelent payment service. You guys are the best!</h3>
-              <p class="my-4">
-                <i>"Let the brain, muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone.
-                This is the way to success."</i>
-              </p>
-              <div class="author align-items-center">
-                <div class="avatar shadow bg-gradient-dark">
-                  <img src="../../assets/img//logos/white-logos/logo-spotify-white.svg">
-                </div>
-                <div class="name ps-2">
-                  <span>Mathew Glock</span>
-                  <div>
-                    <small>Marketing Manager - Slack</small>
-                  </div>
-                </div>
-              </div>
-              <div class="w-25 ms-auto opacity-2 mt-n9">
-                <svg class="opacity-3" width="110px" height="110px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>quote-down</title>
-                    <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#48484A" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                    </g>
-                </svg>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="carousel-item">
-        <div class="container">
-          <div class="row align-items-center">
-            <div class="col-md-5 p-5 ms-lg-auto">
-              <div class="p-3">
-                <img class="w-100 border-radius-md shadow" src="../../assets/img/ivana.jpg" alt="First slide">
-              </div>
-            </div>
-            <div class="col-md-5 me-lg-auto">
-              <p class="text-sm font-weight-bold mb-1">- Customer Story</p>
-              <h3 class="text-dark">Awesome services! Fast and secure.</h3>
-              <p class="my-4">
-                <i>"Wealth creation is an evolutionarily recent positive-sum game.
-                  Status is an old zero-sum game. Those attacking wealth creation
-                  are often just seeking status."</i>
-              </p>
-              <div class="author align-items-center">
-                <div class="avatar shadow bg-gradient-dark">
-                  <img src="../../assets/img//logos/white-logos/logo-google-white.svg">
-                </div>
-                <div class="name ps-2">
-                  <span>Ivana Gerge</span>
-                  <div>
-                    <small>CFO - Google</small>
-                  </div>
-                </div>
-              </div>
-              <div class="w-25 ms-auto opacity-2 mt-n9">
-                <svg class="opacity-3" width="110px" height="110px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                    <title>quote-down</title>
-                    <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                        <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#48484A" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                    </g>
-                </svg>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-    <a class="carousel-control-prev text-darker" href="#carousel-testimonials" role="button" data-bs-slide="prev">
-      <i class="fas fa-chevron-left"></i>
-      <span class="sr-only">Previous</span>
-    </a>
-    <a class="carousel-control-next text-darker" href="#carousel-testimonials" role="button" data-bs-slide="next">
-      <i class="fas fa-chevron-right"></i>
-      <span class="sr-only">Next</span>
-    </a>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Testimonials 4

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START Testimonials w/ 3 cards  -------- -->
-<section class="py-5">
-  <div class="container">
-    <div class="row">
-      <div class="col-lg-6 mx-auto text-center pb-5">
-        <div class="icon icon-shape text-center mb-3">
-          <svg class="text-info" width="40px" height="40px" viewBox="0 0 46 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-              <title>customer-support</title>
-              <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                  <g transform="translate(-1717.000000, -291.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                      <g transform="translate(1716.000000, 291.000000)">
-                          <g transform="translate(1.000000, 0.000000)">
-                              <path class="color-background" d="M45,0 L26,0 C25.447,0 25,0.447 25,1 L25,20 C25,20.379 25.214,20.725 25.553,20.895 C25.694,20.965 25.848,21 26,21 C26.212,21 26.424,20.933 26.6,20.8 L34.333,15 L45,15 C45.553,15 46,14.553 46,14 L46,1 C46,0.447 45.553,0 45,0 Z" opacity="0.59858631"></path>
-                              <path class="color-foreground" d="M22.883,32.86 C20.761,32.012 17.324,31 13,31 C8.676,31 5.239,32.012 3.116,32.86 C1.224,33.619 0,35.438 0,37.494 L0,41 C0,41.553 0.447,42 1,42 L25,42 C25.553,42 26,41.553 26,41 L26,37.494 C26,35.438 24.776,33.619 22.883,32.86 Z"></path>
-                              <path class="color-foreground" d="M13,28 C17.432,28 21,22.529 21,18 C21,13.589 17.411,10 13,10 C8.589,10 5,13.589 5,18 C5,22.529 8.568,28 13,28 Z"></path>
-                          </g>
-                      </g>
-                  </g>
-              </g>
-          </svg>
-        </div>
-        <h3>What Clients Say</h3>
-        <p class="lead">We’re constantly trying to express ourselves and actualize our dreams. If you have the opportunity to play </p>
-      </div>
-    </div>
-    <div class="row">
-      <div class="col-md-4">
-        <div class="card card-plain text-center">
-          <a href="javascript:;">
-            <img class="avatar avatar-xl shadow" src="../../assets/img/team-1.jpg">
-          </a>
-
-          <div class="card-body">
-            <h4 class="card-title">Jessica Davis</h4>
-            <h6 class="category text-info text-gradient">Loan Counselor</h6>
-            <p class="card-description">
-              "Don&#39;t walk behind me; I may not lead. Don&#39;t walk in front of me; I may not follow. Just walk beside me and be my friend."
-            </p>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4">
-        <div class="card card-plain text-center">
-          <a href="javascript:;">
-            <img class="avatar avatar-xl shadow" src="../../assets/img/marie.jpg">
-          </a>
-
-          <div class="card-body">
-            <h4 class="card-title">Joshiah Luke</h4>
-            <h6 class="category text-info text-gradient">HR Specialist</h6>
-            <p class="card-description">
-              "The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails."
-            </p>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4">
-        <div class="card card-plain text-center">
-          <a href="javascript:;">
-            <img class="avatar avatar-xl shadow" src="../../assets/img/team-4.jpg">
-          </a>
-
-          <div class="card-body">
-            <h4 class="card-title">Andrew John</h4>
-            <h6 class="category text-info text-gradient">Loan Counselor</h6>
-            <p class="card-description">
-              "Do not go where the path may lead, go instead where there is no path and leave a trail."
-            </p>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END Testimonials w/ 3 cards  -------- -->
-
-
-
-
-
-
-
-
-
-

Testimonials 5

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Testimonials w/ 3 cards & dark background -->
-<section class="py-5 bg-gradient-dark position-relative overflow-hidden">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <img src="../../assets/img/shapes/waves-white.svg" class="position-absolute opacity-6 h-100 top-0 d-md-block d-none" alt="">
-  <div class="container pt-6 pb-5 position-relative z-index-3">
-    <div class="row">
-      <div class="col-md-6 mx-auto text-center">
-        <span class="badge badge-white text-dark mb-2">Testimonials</span>
-        <h2 class="text-white mb-3">Some thoughts from our clients</h2>
-        <h5 class="text-white font-weight-light">
-          If you’re selected for them you’ll also get three tickets, opportunity to access Investor Office Hours and Mentor Hours and much more all for free.
-        </h5>
-      </div>
-    </div>
-    <div class="row mt-8">
-      <div class="col-md-4 mb-md-0 mb-7">
-        <div class="card">
-          <div class="text-center mt-n5 z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/team-2.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body text-center pb-0">
-            <h4 class="mb-0">Olivia Harper</h4>
-            <p>@oliviaharper</p>
-            <p class="mt-2">
-              The connections you make at Web Summit are unparalleled, we met users all over the world.
-            </p>
-          </div>
-          <div class="card-footer text-center pt-2">
-            <div class="mx-auto">
-              <svg class="opacity-2" width="60px" height="60px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>quote-down</title>
-                  <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                      <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#48484A" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                  </g>
-              </svg>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4 mb-md-0 mb-7">
-        <div class="card">
-          <div class="text-center mt-n5 z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/team-3.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body text-center pb-0">
-            <h4 class="mb-0">Simon Lauren</h4>
-            <p>@simonlaurent</p>
-              <p class="mt-2">
-                The networking at Web Summit is like no other European tech conference. Everything is amazing.
-              </p>
-          </div>
-          <div class="card-footer text-center pt-2">
-            <div class="mx-auto">
-              <svg class="opacity-2" width="60px" height="60px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>quote-down</title>
-                  <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                      <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#48484A" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                  </g>
-              </svg>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4 mb-md-0 mb-7">
-        <div class="card">
-          <div class="text-center mt-n5 z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-xxl shadow-lg" src="../../assets/img/team-4.jpg">
-              </div>
-            </div>
-          </div>
-          <div class="card-body text-center pb-0">
-            <h4 class="mb-0">Lucian Eurel</h4>
-            <p>@luciaeurel</p>
-            <p class="mt-2">
-              Web Summit will increase your appetite, your inspiration, your motivation and your network.
-            </p>
-          </div>
-          <div class="card-footer text-center pt-2">
-            <div class="mx-auto">
-              <svg class="opacity-2" width="60px" height="60px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>quote-down</title>
-                  <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                      <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#48484A" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                  </g>
-              </svg>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-<!-- END Testimonials w/ 3 cards & dark background -->
-
-
-
-
-
-
-
-
-
-

Testimonials 6

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- -------- START Testimonials w/ 3 cards & brand logos  -------- -->
-<section class="py-5 bg-gray-100">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-4 mb-md-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block blur-shadow-image">
-              <img src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/glass-desk.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body">
-            <div class="w-50 mx-auto">
-              <img src="../../assets/img/logos/medium-logos/logo-netflix.svg" alt="" class="img-fluid">
-            </div>
-            <p class="card-description mb-5 mt-3">
-              "Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons."
-            </p>
-            <div>
-              <span>&#8213;</span>
-              Armand Traore
-            </div>
-            <a href="javascript:;" class="text-danger icon-move-right float-end">Read More
-              <i class="fas fa-arrow-right text-sm ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4 mb-md-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block blur-shadow-image">
-              <img src="../../assets/img/mimi-thian.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body">
-            <div class="w-50 mx-auto">
-              <img src="../../assets/img/logos/medium-logos/logo-spotify.svg" alt="" class="img-fluid">
-            </div>
-            <p class="card-description mb-5 mt-3">
-              "Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons."
-            </p>
-            <div>
-              <span>&#8213;</span>
-              Collin Marcus
-            </div>
-            <a href="javascript:;" class="text-success icon-move-right float-end">Read More
-              <i class="fas fa-arrow-right text-sm ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-4 mb-md-0 mb-4">
-        <div class="card">
-          <div class="card-header p-0 mx-3 mt-3 position-relative z-index-1">
-            <a href="javascript:;" class="d-block blur-shadow-image">
-              <img src="../../assets/img/alesia.jpg" class="img-fluid border-radius-lg">
-            </a>
-          </div>
-
-          <div class="card-body">
-            <div class="w-50 mx-auto">
-              <img src="../../assets/img/logos/medium-logos/logo-behance.svg" alt="" class="img-fluid">
-            </div>
-            <p class="card-description mb-5 mt-3">
-              "Use border utilities to quickly style the border and border-radius of an element. Great for images, buttons."
-            </p>
-            <div>
-              <span>&#8213;</span>
-              Johhny Later
-            </div>
-            <a href="javascript:;" class="text-darker icon-move-right float-end">Read More
-              <i class="fas fa-arrow-right text-sm ms-1"></i>
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- -------- END Testimonials w/ 3 cards & brand logos  -------- -->
-
-
-
-
-
-
-
-
-
-

Testimonials 7

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Testimonials w/ 3 cards w/ stars -->
-<section class="py-5 position-relative">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-6">
-        <h2 class="mb-3">Our Customers</h2>
-        <h5 class="font-weight-light">
-          You need more informations?
-          Read our customers reviews.
-        </h5>
-      </div>
-    </div>
-    <div class="row mt-lg-6 mt-4">
-      <div class="col-lg-3 col-md-6 mb-lg-0 mb-4 ms-auto">
-        <div class="card">
-          <div class="card-body text-center pb-0">
-            <div class="text-center">
-              <div class="rating">
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="far fa-star text-warning"></i>
-              </div>
-            </div>
-            <p class="mt-4">
-              "Web Summit will increase your appetite, your inspiration, your skills, your motivation and your network."
-            </p>
-          </div>
-          <div class="card-footer text-center pt-3 position-relative z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-lg shadow-lg" src="../../assets/img/team-4.jpg">
-              </div>
-            </div>
-            <h6 class="mb-0 mt-2">Lucian Eurel</h6>
-            <p class="text-xs mb-0">CEO Creative Tim</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 col-md-6 mb-lg-0 mb-4">
-        <div class="card">
-          <div class="card-body text-center pb-0">
-            <div class="text-center">
-              <div class="rating">
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="far fa-star text-warning"></i>
-              </div>
-            </div>
-            <p class="mt-4">
-              "Do not go where the path may lead, go instead where there is no path and leave a trail. You will succeed on it. "
-            </p>
-          </div>
-          <div class="card-footer text-center pt-3 position-relative z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-lg shadow-lg" src="../../assets/img/team-2.jpg">
-              </div>
-            </div>
-            <h6 class="mb-0 mt-2">Linde Michel</h6>
-            <p class="text-xs mb-0">CFO Slack</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 mb-lg-0 mb-4 me-auto">
-        <div class="card">
-          <div class="card-body text-center pb-0">
-            <div class="text-center">
-              <div class="rating">
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-                <i class="fas fa-star text-warning"></i>
-              </div>
-            </div>
-            <p class="mt-4">
-              "The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails."
-            </p>
-          </div>
-          <div class="card-footer text-center pt-3 position-relative z-index-1">
-            <div class="position-relative">
-              <div class="blur-shadow-avatar">
-                <img class="avatar avatar-lg shadow-lg" src="../../assets/img/team-3.jpg">
-              </div>
-            </div>
-            <h6 class="mb-0 mt-2">Mark Stam</h6>
-            <p class="text-xs mb-0">COO Dribbble</p>
-          </div>
-        </div>
-      </div>
-      <div class="col-lg-3 mb-lg-0 mb-4 me-auto">
-        <div class="card h-100">
-          <div class="card-body d-flex flex-column justify-content-center text-center">
-            <a href="javascript:;">
-              <i class="fa fa-plus text-secondary mb-3"></i>
-              <h5 class=" text-secondary"> Add Testimonial </h5>
-            </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Testimonials w/ 3 cards w/ stars -->
-
-
-
-
-
-
-
-
-
-

Testimonials 8

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Testimonials w/ user image & text & info -->
-<section class="py-6 position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute opacity-6 top-0 w-100 z-index-1">
-  <div class="container-fluid">
-    <div class="row">
-      <div class="col-10 mx-auto bg-gradient-dark border-radius-lg">
-        <div class="row py-5">
-          <div class="col-xl-4 col-md-6 px-5 position-relative">
-            <img class="img border-radius-md max-width-300 w-100 position-relative z-index-2" src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/soft-ui-design-system/assets/img/tired.jpg">
-          </div>
-          <div class="col-xl-4 col-md-5 z-index-2 position-relative px-md-3 px-5 my-auto">
-            <div>
-              <svg class="opacity-2" width="40px" height="40px" viewBox="0 0 270 270" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-                  <title>quote-down</title>
-                  <g id="quote-down" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-                      <path d="M107.000381,49.033238 C111.792099,48.01429 115.761022,48.6892564 116.625294,50.9407629 C117.72393,53.8028077 113.174473,58.3219079 107.017635,60.982801 C107.011653,60.9853863 107.00567,60.9879683 106.999688,60.990547 C106.939902,61.0219589 106.879913,61.0439426 106.820031,61.0659514 C106.355389,61.2618887 105.888177,61.4371549 105.421944,61.5929594 C88.3985192,68.1467602 80.3242628,76.9161885 70.3525495,90.6906738 C60.0774843,104.884196 54.9399518,119.643717 54.9399518,134.969238 C54.9399518,138.278158 55.4624127,140.716309 56.5073346,142.283691 C57.2039492,143.328613 57.9876406,143.851074 58.8584088,143.851074 C59.7291771,143.851074 61.0353294,143.241536 62.7768659,142.022461 C68.3497825,138.016927 75.4030052,136.01416 83.9365338,136.01416 C93.8632916,136.01416 102.658051,140.063232 110.320811,148.161377 C117.983572,156.259521 121.814952,165.88151 121.814952,177.027344 C121.814952,188.695638 117.417572,198.970703 108.622813,207.852539 C99.828054,216.734375 89.1611432,221.175293 76.6220807,221.175293 C61.9931745,221.175293 49.3670351,215.166992 38.7436627,203.150391 C28.1202903,191.133789 22.8086041,175.024577 22.8086041,154.822754 C22.8086041,131.312012 30.0359804,110.239421 44.490733,91.6049805 C58.2196377,73.906272 74.3541002,59.8074126 102.443135,50.4450748 C102.615406,50.3748509 102.790055,50.3058192 102.966282,50.2381719 C104.199241,49.7648833 105.420135,49.3936487 106.596148,49.1227802 L107,49 Z M233.000381,49.033238 C237.792099,48.01429 241.761022,48.6892564 242.625294,50.9407629 C243.72393,53.8028077 239.174473,58.3219079 233.017635,60.982801 C233.011653,60.9853863 233.00567,60.9879683 232.999688,60.990547 C232.939902,61.0219589 232.879913,61.0439426 232.820031,61.0659514 C232.355389,61.2618887 231.888177,61.4371549 231.421944,61.5929594 C214.398519,68.1467602 206.324263,76.9161885 196.352549,90.6906738 C186.077484,104.884196 180.939952,119.643717 180.939952,134.969238 C180.939952,138.278158 181.462413,140.716309 182.507335,142.283691 C183.203949,143.328613 183.987641,143.851074 184.858409,143.851074 C185.729177,143.851074 187.035329,143.241536 188.776866,142.022461 C194.349783,138.016927 201.403005,136.01416 209.936534,136.01416 C219.863292,136.01416 228.658051,140.063232 236.320811,148.161377 C243.983572,156.259521 247.814952,165.88151 247.814952,177.027344 C247.814952,188.695638 243.417572,198.970703 234.622813,207.852539 C225.828054,216.734375 215.161143,221.175293 202.622081,221.175293 C187.993174,221.175293 175.367035,215.166992 164.743663,203.150391 C154.12029,191.133789 148.808604,175.024577 148.808604,154.822754 C148.808604,131.312012 156.03598,110.239421 170.490733,91.6049805 C184.219638,73.906272 200.3541,59.8074126 228.443135,50.4450748 C228.615406,50.3748509 228.790055,50.3058192 228.966282,50.2381719 C230.199241,49.7648833 231.420135,49.3936487 232.596148,49.1227802 L233,49 Z" id="quote-up" fill="#FFFFFF" fill-rule="nonzero" transform="translate(135.311778, 134.872794) scale(-1, -1) translate(-135.311778, -134.872794) "></path>
-                  </g>
-              </svg>
-            </div>
-            <p class="text-lg text-white">
-                Decisions: If you can’t decide, the answer is no.
-                If two equally difficult paths, choose the one more
-                painful in the short term (pain avoidance is creating
-                an illusion of equality). Choose the path that leaves
-                you more equanimous in the long term.
-            </p>
-            <p class="text-white font-weight-bold text-sm">Michael  -  <span class="text-xs font-weight-normal">Writter</span></p>
-            <hr class="vertical start-100 ms-n5 d-xl-block d-none">
-          </div>
-          <div class="col-1"></div>
-          <div class="col-xl-2 col-12 px-xl-0 px-5 my-xl-auto position-relative z-index-1">
-            <h3 class="text-white mt-xl-0 mt-5">1,340,000 +</h3>
-            <p class="text-sm text-white opacity-8">Developers and Companies around the world using our products.</p>
-            <a href="javascript:;" class="text-primary icon-move-right text-sm">See all products
-                <i class="fas fa-arrow-right text-xs"></i>
-              </a>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Testimonials w/ user image & text & info -->
-
-
-
-
-
-
-
-
-
-

Testimonials 9

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="testimonial-2 py-9">
-  <div class="container">
-    <div class="row">
-      <div class="gliderrr">
-        <div data-glide-el="track" class="glide__track">
-          <ul class="glide__slides">
-            <li class="glide__slide">
-              <div class="glide__container">
-                <div class="card">
-                  <div class="card-body text-center pb-0 position-relative">
-                    <img class="w-75 end-0 start-0 mx-auto top-0 mt-n6 position-absolute" src="../../assets/img/automotive/amg-gt.png">
-                    <h6 class="mt-6">AMG GT</h6>
-                    <button type="button" class="btn btn-sm btn-rounded btn-outline-dark">Book Now</button>
-                  </div>
-                </div>
-              </div>
-            </li>
-            <li class="glide__slide">
-              <div class="glide__container">
-                <div class="card">
-                  <div class="card-body text-center pb-0 position-relative">
-                    <img class="w-75 end-0 start-0 mx-auto top-0 mt-n6 position-absolute" src="../../assets/img/automotive/g-amg.png">
-                    <h6 class="mt-6">G63 AMG</h6>
-                    <button type="button" class="btn btn-sm btn-rounded btn-outline-dark">Book Now</button>
-                  </div>
-                </div>
-              </div>
-            </li>
-            <li class="glide__slide">
-              <div class="glide__container">
-                <div class="card">
-                  <div class="card-body text-center pb-0 position-relative">
-                    <img class="w-75 end-0 start-0 mx-auto top-0 mt-n6 position-absolute" src="../../assets/img/automotive/s-maybach.png">
-                    <h6 class="mt-6">S Maybach</h6>
-                    <button type="button" class="btn btn-sm btn-rounded btn-outline-dark">Book Now</button>
-                  </div>
-                </div>
-              </div>
-            </li>
-            <li class="glide__slide">
-              <div class="glide__container">
-                <div class="card">
-                  <div class="card-body text-center pb-0 position-relative">
-                    <img class="w-75 end-0 start-0 mx-auto top-0 mt-n6 position-absolute" src="../../assets/img/automotive/glc.png">
-                    <h6 class="mt-6">GLC</h6>
-                    <button type="button" class="btn btn-sm btn-rounded btn-outline-dark">Book Now</button>
-                  </div>
-                </div>
-              </div>
-            </li>
-            <li class="glide__slide">
-              <div class="glide__container">
-                <div class="card">
-                  <div class="card-body text-center pb-0 position-relative">
-                    <img class="w-75 end-0 start-0 mx-auto top-0 mt-n4 position-absolute" src="../../assets/img/automotive/cls.png">
-                    <h6 class="mt-6">CLS</h6>
-                    <button type="button" class="btn btn-sm btn-rounded btn-outline-dark">Book Now</button>
-                  </div>
-                </div>
-              </div>
-            </li>
-          </ul>
-        </div>
-    </div>
-    </div>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Testimonials 10

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<section class="bg-gradient-primary position-relative overflow-hidden">
-  <img src="../../assets/img/shapes/waves-white.svg" alt="pattern-lines" class="position-absolute opacity-6">
-  <div class="position-absolute w-100 z-inde-1 top-0 mt-n3">
-    <svg width="100%" viewBox="0 -2 1920 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-down</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-down">
-                    <path d="M0,60.8320331 C299.333333,115.127115 618.333333,111.165365 959,47.8320321 C1299.66667,-15.5013009 1620.66667,-15.2062179 1920,47.8320331 L1920,156.389409 L0,156.389409 L0,60.8320331 Z" id="Path-Copy-2" transform="translate(960.000000, 78.416017) rotate(180.000000) translate(-960.000000, -78.416017) "></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-  <div class="container pt-5 pb-7">
-    <div class="row">
-      <div class="col-lg-6 d-flex justify-content-center flex-column">
-        <div id="carouselExampleIndicator" class="carousel slide py-7" data-bs-ride="carousel">
-          <ol class="carousel-indicators justify-content-start ms-0">
-            <a href="javascript:;">
-              <img src="../../assets/img/team-4.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-0 active" data-bs-target="#carouselExampleIndicator" data-bs-slide-to="0">
-              <span class="text-white mx-2">&#124;</span>
-            </a>
-
-            <a href="javascript:;">
-              <img src="../../assets/img/team-3.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-0" data-bs-target="#carouselExampleIndicator" data-bs-slide-to="1">  <span class="text-white mx-2">&#124;</span>
-            </a>
-
-            <a href="javascript:;">
-              <img src="../../assets/img/team-2.jpg" alt="..." class="avatar avatar-sm avatar-scale-up shadow border-0" data-bs-target="#carouselExampleIndicator" data-bs-slide-to="2">
-            </a>
-          </ol>
-          <div class="carousel-inner">
-            <h2 class="text-white mb-0">Work with us</h2>
-            <p class="text-white opacity-8 mb-1">Whatever your qualification is - we got you!</p>
-            <hr class="text-white horizontal opacity-6 mb-4 mt-2 w-25 text-start">
-            <div class="carousel-item active">
-              <h6 class="text-white opacity-8 pe-5">"Take up one idea. Make that one idea your life - think of it, dream of it, live on that idea.
-                Let the brain, muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone.
-                This is the way to success. A single rose can be my garden... a single friend, my world."</h6>
-              <div class="author mt-4">
-                <div class="name">
-                  <span class="text-white">Ludwig Siato</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">Project manager, Apple</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <div class="carousel-item">
-              <h6 class="text-white opacity-8 pe-5">"Take up one idea. Make that one idea your life - think of it, dream of it, live on that idea.
-                Let the brain, muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone.
-                This is the way to success. A single rose can be my garden... a single friend, my world."</h6>
-              <div class="author mt-4">
-                <div class="name">
-                  <span class="text-white">John Down</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">CFO, Google</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-            <div class="carousel-item">
-              <h6 class="text-white opacity-8 pe-5">"Take up one idea. Make that one idea your life - think of it, dream of it, live on that idea.
-                Let the brain, muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone.
-                This is the way to success. A single rose can be my garden... a single friend, my world."</h6>
-              <div class="author mt-4">
-                <div class="name">
-                  <span class="text-white">Mark Jojansen</span>
-                  <div class="stats">
-                    <small class="text-white opacity-6">Fullstack Developer, Atlassian</small>
-                  </div>
-                </div>
-              </div>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="col-md-6 justify-content-center flex-column d-sm-none d-md-none d-lg-flex d-xl-flex">
-        <div class="row justify-content-center d-none d-md-flex">
-          <div class="col-3 mb-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 mt-n4 ms-8 fadeIn2 fadeInBottom">
-              <img src="../../assets/img/logos/small-logos/logo-asana.svg" alt="Logo Image">
-            </div>
-          </div>
-          <div class="col-4 mb-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 ms-8 mt-n6 fadeIn1 fadeInBottom">
-              <img src="../../assets/img/logos/small-logos/logo-slack.svg" alt="Logo Image">
-            </div>
-          </div>
-          <div class="col-4 mb-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 ms-6 mt-2 fadeIn3 fadeInBottom">
-              <img src="../../assets/img/logos/small-logos/logo-google-drive.svg" alt="Logo Image">
-            </div>
-          </div>
-        </div>
-
-        <div class="row justify-content-end d-none d-md-flex">
-          <div class="col-4 my-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 ms-4 fadeIn1 fadeInBottom">
-              <img class="avatar-img" src="../../assets/img/logos/small-logos/logo-shopify.svg" alt="Logo Image">
-            </div>
-          </div>
-          <div class="col-3 my-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 me-auto fadeIn1 fadeInBottom">
-              <img class="avatar-img" src="../../assets/img/logos/small-logos/logo-apple.svg" alt="Logo Image">
-            </div>
-          </div>
-          <div class="col-3 my-4">
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 fadeIn3 fadeInBottom ms-3 mt-3">
-              <img class="avatar-img" src="../../assets/img/logos/small-logos/logo-invision.svg" alt="Logo Image">
-            </div>
-          </div>
-        </div>
-
-        <div class="row d-none d-md-flex">
-          <div class="col-6">
-            <!-- Logo -->
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 ms-auto mt-5 fadeIn2 fadeInBottom">
-              <img class="avatar-img" src="../../assets/img/logos/small-logos/logo-atlassian.svg" alt="Logo Image">
-            </div>
-            <!-- End Logo -->
-          </div>
-          <div class="col-6 mt-6">
-            <!-- Logo -->
-            <div class="d-block bg-white avatar avatar-lg rounded-circle p-3 mx-auto mt-n3 fadeIn3 fadeInBottom">
-              <img class="avatar-img" src="../../assets/img/logos/small-logos/logo-weave.svg" alt="Logo Image">
-            </div>
-            <!-- End Logo -->
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-  <div class="position-absolute w-100 bottom-0">
-    <svg width="100%" viewBox="0 -1 1920 166" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-        <title>wave-up</title>
-        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
-            <g transform="translate(0.000000, 5.000000)" fill="#FFFFFF" fill-rule="nonzero">
-                <g id="wave-up" transform="translate(0.000000, -5.000000)">
-                    <path d="M0,70 C298.666667,105.333333 618.666667,95 960,39 C1301.33333,-17 1621.33333,-11.3333333 1920,56 L1920,165 L0,165 L0,70 Z"></path>
-                </g>
-            </g>
-        </g>
-    </svg>
-  </div>
-</section>
-
-
-
-
-
-
-
-
-
-

Testimonials 11

-
-
- -
-
-
-
-
- -
-
-
- Copy -
<!-- START Testimonials w/ bg image & faded gradient & company logo -->
-<section class="py-5 position-relative">
-  <div class="container-fluid">
-    <div class="row">
-      <div class="col-10 mx-auto">
-        <div id="carouselExampleTestimonials-11" class="carousel carousel-fade slide shadow-lg" data-bs-ride="carousel">
-          <ol class="carousel-indicators z-index-2">
-            <li data-bs-target="#carouselExampleTestimonials-11" data-bs-slide-to="0" class="active"></li>
-            <li data-bs-target="#carouselExampleTestimonials-11" data-bs-slide-to="1"></li>
-          </ol>
-          <div class="carousel-inner rounded-3">
-            <div class="carousel-item bg-cover active" style="background-image: url(&#39;../../assets/img/office-1.jpeg&#39;)">
-              <div class="z-index-1 my-md-8 my-6 position-relative z-index-2">
-                <div class="row h-100">
-                  <div class="col-xl-6 my-auto px-6">
-                    <h5 class="text-white font-weight-normal mb-3">
-                      " Decisions: If you can’t decide, the answer is no. If two equally difficult paths,
-                      choose the one more painful in the short term(pain avoidance is creating an illusion."
-                    </h5>
-                    <p class="text-white font-weight-bold">Michael Lerson, <span class="text-xs font-weight-normal">Project Manager </span></p>
-                  </div>
-                  <div class="col-xl-6 my-auto px-7 mt-md-auto mt-4">
-                    <img src="../../assets/img/logos/white-logos/logo-google-white.svg" class="d-block w-100" alt="...">
-                  </div>
-                </div>
-              </div>
-              <span class="mask bg-gradient-faded-warning opacity-10 z-index-0 rounded-3"></span>
-            </div>
-            <div class="carousel-item bg-cover" style="background-image: url(&#39;../../assets/img/office-2.jpeg&#39;)">
-              <div class="z-index-1 my-md-8 my-6 position-relative z-index-2">
-                <div class="row h-100">
-                  <div class="col-xl-6 my-auto px-6">
-                    <h5 class="text-white font-weight-normal mb-3">
-                      " Knowledge is either from direct experience or from verifiable, falsifiable science.
-                      There is knowledge that is transmitted but not verifiable / falsifiable."
-                    </h5>
-                    <p class="text-white font-weight-bold">Louis Miriam, <span class="text-xs font-weight-normal">COO</span></p>
-                  </div>
-                  <div class="col-xl-6 my-auto px-7 mt-md-auto mt-4">
-                      <img src="../../assets/img/logos/white-logos/logo-spotify-white.svg" class="d-block w-100" alt="...">
-                  </div>
-                </div>
-              </div>
-              <span class="mask bg-gradient-faded-success opacity-10 z-index-0 rounded-3"></span>
-            </div>
-          </div>
-        </div>
-        <div class="row mt-5">
-          <div class="col-lg-2 col-4 ms-auto">
-            <a href="javascript:;" data-bs-target="#carouselExampleTestimonials-11" data-bs-slide-to="0" class="active">
-              <img src="../../assets/img/logos/medium-logos/logo-google.svg" class="d-block w-100" alt="...">
-            </a>
-          </div>
-          <div class="col-lg-2 col-4 me-auto">
-            <a href="javascript:;" data-bs-target="#carouselExampleTestimonials-11" data-bs-slide-to="1">
-              <img src="../../assets/img/logos/medium-logos/logo-spotify.svg" class="d-block w-100" alt="...">
-            </a>
-          </div>
-      </div>
-    </div>
-  </div>
-</section>
-<!-- END Testimonials w/ bg image & faded gradient & company logo -->
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - \ No newline at end of file