Initial commit
28
.github/copilot-instructions.md
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
## Pine Creek website — quick orientation for AI coding agents
|
||||||
|
|
||||||
|
This is a small static-ish website whose source lives at the repository root. Keep suggestions focused, minimal, and specific to the existing patterns.
|
||||||
|
|
||||||
|
- Entry / what to edit
|
||||||
|
- `index.php` is the site's entry point (contains the HTML structure, nav, hero, and sections). Edit content/structure here.
|
||||||
|
- `css/` contains SCSS source and compiled CSS. `css/main.scss` imports partials from `css/components/` (e.g. `_nav.scss`, `_slide.scss`).
|
||||||
|
- `js/main.js` is the single client-side script — it controls the hamburger/nav, slides, and a light client-side prompt-based auth.
|
||||||
|
|
||||||
|
- Architecture & patterns (observable)
|
||||||
|
- No framework/tooling files found (no package.json, build scripts). The project is organized as plain HTML/CSS/JS served from `index.php`.
|
||||||
|
- SCSS pattern: variables at top of `main.scss` (colors, breakpoints), mixins for fonts (`Libre`, `Lato`), and partials under `css/components/` imported by `main.scss`.
|
||||||
|
- JS pattern: single-file imperative DOM manipulation (`document.getElementById`, `querySelector`, event handlers). Use `const`/`let`, short arrow functions and maintain global-scope structure similar to `js/main.js`.
|
||||||
|
- Static assets: images in `img/` follow numeric patterns (e.g. `vineyard-0.jpg`, `house-0.jpg`) used by slide logic in `main.js`.
|
||||||
|
|
||||||
|
- Development / preview notes (inferred)
|
||||||
|
- No CI or build discovered. To preview locally you can serve the folder with a simple server. A safe, minimal option: run `php -S localhost:8000` from the project root and open `http://localhost:8000/`.
|
||||||
|
- SCSS is present but not compiled by repo tooling. If modifying SCSS, compile to `css/main.css` using a local tool (example): `sass css/main.scss css/main.css` (assumption: developer will run this locally).
|
||||||
|
|
||||||
|
- Conventions and gotchas to follow when changing code
|
||||||
|
- Keep CSS partials modular. Add new component styles under `css/components/` and import them in `css/main.scss` rather than editing compiled `css/main.css` directly.
|
||||||
|
- JS uses simple DOM IDs/classes; prefer selecting elements by the same IDs/classes and follow the existing event-handler pattern (assign functions to `onclick`, small helpers like `toggleNav`, `openNav`, `closeNav`).
|
||||||
|
- The project contains a client-side “light auth” in `js/main.js` that checks literal passwords (`'12345'`, `'abcde'`). Treat this as insecure; if asked to modify auth, recommend server-side changes and note security concerns.
|
||||||
|
|
||||||
|
- When merging or editing `.github/copilot-instructions.md`
|
||||||
|
- Preserve any human-authored guidance already present. If adding new items, keep them concise and cite files (e.g. `index.php`, `css/main.scss`, `css/components/_nav.scss`, `js/main.js`).
|
||||||
|
|
||||||
|
If anything above is unclear or you want more detail (build commands, preferred local dev workflow, or to add sample sass npm scripts), tell me which parts to expand or confirm and I will update this file.
|
||||||
34
README.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# pine-creek-hoa
|
||||||
|
|
||||||
|
Pine Creek website
|
||||||
|
|
||||||
|
Preview locally (static):
|
||||||
|
|
||||||
|
You can preview the static site by serving the project root. Two simple options:
|
||||||
|
|
||||||
|
1) Python's simple HTTP server (static):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /home/pi/PineCreek/webdev/website
|
||||||
|
python3 -m http.server 8000
|
||||||
|
# then open http://localhost:8000/index.html
|
||||||
|
```
|
||||||
|
|
||||||
|
2) PHP built-in server (if you prefer):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /home/pi/PineCreek/webdev/website
|
||||||
|
php -S localhost:8000
|
||||||
|
# then open http://localhost:8000/index.html
|
||||||
|
```
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
- A new `index.html` (HTML5, responsive meta) was added alongside the existing `index.php` so you can host on static hosts like GitHub Pages or Google Cloud Storage.
|
||||||
|
- SCSS source is in `css/main.scss`. The repo does not include a toolchain; compile SCSS locally if you edit styles:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# using Dart Sass
|
||||||
|
sass css/main.scss css/main.css
|
||||||
|
```
|
||||||
|
|
||||||
|
If you'd like, I can add an npm-based toolchain (package.json + scripts) to automate building SCSS and a deploy script for GitHub Pages.
|
||||||
166
css/components/_nav.scss
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
nav.main-nav {
|
||||||
|
background: $white;
|
||||||
|
border-bottom-left-radius: 100% 64px;
|
||||||
|
border-bottom-right-radius: 100% 64px;
|
||||||
|
box-shadow: 0 4px 5px 0px rgba(0,0,0,.16);
|
||||||
|
display: flex;
|
||||||
|
padding: 16px 0 32px;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
.mobile-nav {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
|
||||||
|
.mobile-nav--logo {
|
||||||
|
display: none;
|
||||||
|
max-width: 100px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hamburger {
|
||||||
|
cursor: pointer;
|
||||||
|
display: none;
|
||||||
|
margin-left: auto;
|
||||||
|
position: relative;
|
||||||
|
width: 30px;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
&> div {
|
||||||
|
background-color: $black;
|
||||||
|
border-radius: 2px;
|
||||||
|
height: 5px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
transition: .25s;
|
||||||
|
width: 30px;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&> div {
|
||||||
|
background-color: $gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.in {
|
||||||
|
& div:first-child {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
& div:nth-child(2) {
|
||||||
|
transform: translate(-17px);
|
||||||
|
width: 40px;
|
||||||
|
}
|
||||||
|
& div:last-child {
|
||||||
|
bottom: 1px;
|
||||||
|
position: relative;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
background-color: $white;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
left: 100%;
|
||||||
|
padding: 24px;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
transition: .25s;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&.in {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
@include Libre;
|
||||||
|
|
||||||
|
list-style: none;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
a {
|
||||||
|
@include Libre;
|
||||||
|
|
||||||
|
color: $black;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 11px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(-n+3) {
|
||||||
|
a {
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-last-child(-n+3) {
|
||||||
|
a {
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.main-nav--logo {
|
||||||
|
a {
|
||||||
|
img {
|
||||||
|
margin: 0 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $m-break) {
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 24px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
89
css/components/_slide.scss
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
.slides {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&.vineyard {
|
||||||
|
min-height: 300px;
|
||||||
|
img {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.house {
|
||||||
|
min-height: 400px;
|
||||||
|
img {
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
img {
|
||||||
|
border-radius: 5px;
|
||||||
|
object-fit: cover;
|
||||||
|
opacity: 1;
|
||||||
|
transition: .15s;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&::selection {
|
||||||
|
background: rgba(255,255,255,0);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.out {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slides-arrow {
|
||||||
|
align-items: center;
|
||||||
|
background: $white;
|
||||||
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
height: 50px;
|
||||||
|
justify-content: center;
|
||||||
|
left: -25px;
|
||||||
|
opacity: 1;
|
||||||
|
position: absolute;
|
||||||
|
right: auto;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
transition: .15s;
|
||||||
|
width: 50px;
|
||||||
|
|
||||||
|
&.out {
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
background-color: $light-gray;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $white;
|
||||||
|
height: 32px;
|
||||||
|
padding: 4px;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: .1s;
|
||||||
|
width: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
left: auto;
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
svg {
|
||||||
|
background-color: darken($light-gray, 5%);
|
||||||
|
border-radius: 4px;
|
||||||
|
transform: scale(1.15);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
svg {
|
||||||
|
background-color: darken($light-gray, 10%);
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
265
css/main.css
Normal file
@@ -0,0 +1,265 @@
|
|||||||
|
.btn {
|
||||||
|
font-family: "Libre Baskerville", serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: #AB996D;
|
||||||
|
border-color: #AB996D;
|
||||||
|
}
|
||||||
|
.btn-primary:hover {
|
||||||
|
background-color: #917f54;
|
||||||
|
border-color: #917f54;
|
||||||
|
}
|
||||||
|
.btn-primary:active, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus {
|
||||||
|
background-color: #81714a;
|
||||||
|
border-color: #81714a;
|
||||||
|
box-shadow: 0 0 0 0.2rem rgba(129, 113, 74, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "Lato", sans-serif;
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #231F20;
|
||||||
|
margin: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, a, li, span, div {
|
||||||
|
font-family: "Lato", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: "Libre Baskerville", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-content {
|
||||||
|
padding: 110px 0 0 0;
|
||||||
|
position: relative;
|
||||||
|
top: -32px;
|
||||||
|
}
|
||||||
|
.page-content .hero-text h1 {
|
||||||
|
font-size: 64px;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav.main-nav {
|
||||||
|
background: #ffffff;
|
||||||
|
border-bottom-left-radius: 100% 64px;
|
||||||
|
border-bottom-right-radius: 100% 64px;
|
||||||
|
box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.16);
|
||||||
|
display: flex;
|
||||||
|
padding: 16px 0 32px;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .mobile-nav--logo {
|
||||||
|
display: none;
|
||||||
|
max-width: 100px;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .mobile-nav--logo img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav .mobile-nav .mobile-nav--logo {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger {
|
||||||
|
cursor: pointer;
|
||||||
|
display: none;
|
||||||
|
margin-left: auto;
|
||||||
|
position: relative;
|
||||||
|
width: 30px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger > div {
|
||||||
|
background-color: #231F20;
|
||||||
|
border-radius: 2px;
|
||||||
|
height: 5px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
transition: 0.25s;
|
||||||
|
width: 30px;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger > div:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger:hover > div {
|
||||||
|
background-color: #585858;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav .mobile-nav .hamburger {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger.in div:first-child {
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger.in div:nth-child(2) {
|
||||||
|
transform: translate(-17px);
|
||||||
|
width: 40px;
|
||||||
|
}
|
||||||
|
nav.main-nav .mobile-nav .hamburger.in div:last-child {
|
||||||
|
bottom: 1px;
|
||||||
|
position: relative;
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
nav.main-nav ul {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav ul {
|
||||||
|
background-color: #ffffff;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
left: 100%;
|
||||||
|
padding: 24px;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
transition: 0.25s;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
nav.main-nav ul.in {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav ul li {
|
||||||
|
font-family: "Libre Baskerville", serif;
|
||||||
|
list-style: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
nav.main-nav ul li a {
|
||||||
|
font-family: "Libre Baskerville", serif;
|
||||||
|
color: #231F20;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 11px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav ul li a {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav ul li:nth-child(-n+3) a {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav ul li:nth-child(-n+3) a {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav ul li:nth-last-child(-n+3) a {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav ul li:nth-last-child(-n+3) a {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nav.main-nav ul li.main-nav--logo a img {
|
||||||
|
margin: 0 8px;
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav ul li.main-nav--logo {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
nav.main-nav {
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 24px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slides {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.slides.vineyard {
|
||||||
|
min-height: 300px;
|
||||||
|
}
|
||||||
|
.slides.vineyard img {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
.slides.house {
|
||||||
|
min-height: 400px;
|
||||||
|
}
|
||||||
|
.slides.house img {
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
.slides img {
|
||||||
|
border-radius: 5px;
|
||||||
|
object-fit: cover;
|
||||||
|
opacity: 1;
|
||||||
|
transition: 0.15s;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.slides img::selection {
|
||||||
|
background: rgba(255, 255, 255, 0);
|
||||||
|
}
|
||||||
|
.slides img.out {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.slides .slides-arrow {
|
||||||
|
align-items: center;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
height: 50px;
|
||||||
|
justify-content: center;
|
||||||
|
left: -25px;
|
||||||
|
opacity: 1;
|
||||||
|
position: absolute;
|
||||||
|
right: auto;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
transition: 0.15s;
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
.slides .slides-arrow.out {
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.slides .slides-arrow svg {
|
||||||
|
background-color: #bebebe;
|
||||||
|
border-radius: 3px;
|
||||||
|
color: #ffffff;
|
||||||
|
height: 32px;
|
||||||
|
padding: 4px;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: 0.1s;
|
||||||
|
width: 32px;
|
||||||
|
}
|
||||||
|
.slides .slides-arrow:last-child {
|
||||||
|
left: auto;
|
||||||
|
right: -25px;
|
||||||
|
}
|
||||||
|
.slides .slides-arrow:hover svg {
|
||||||
|
background-color: #b1b1b1;
|
||||||
|
border-radius: 4px;
|
||||||
|
transform: scale(1.15);
|
||||||
|
}
|
||||||
|
.slides .slides-arrow:active svg {
|
||||||
|
background-color: #a5a5a5;
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=main.css.map */
|
||||||
1
css/main.css.map
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"version":3,"sourceRoot":"","sources":["main.scss","components/_nav.scss","components/_slide.scss"],"names":[],"mappings":"AAsBA;EAPE;EASA;;;AAGF;EACE,kBA3BK;EA4BL,cA5BK;;AA8BL;EACE;EACA;;AAGF;EAIE;EACA;EACA;;;AAIJ;EA5BE;EA+BA,kBA/CM;EAgDN,OA7CM;EA8CN;EACA;;;AAGF;EArCE;;;AAyCF;EA5CE;;;AAgDF;EACE;EACA;EACA;;AAGE;EACE;EACA;;;ACvEN;EACI,YDCI;ECAJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;;AAGF;EARF;IASI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,kBDjCF;ECkCE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAKF;EACE,kBDjDL;;ACqDC;EA3BF;IA4BI;;;AAIA;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAMR;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI,kBDrFA;ICsFA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;;AAIJ;EDvFJ;EC0FM;EACA;;AAEA;ED7FN;ECgGQ,OD1GF;EC2GE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;IACA;;;AAKF;EACE;;AAEA;EAHF;IAII;;;AAMJ;EACE;;AAEA;EAHF;IAII;;;AAOF;EACE;;AAIJ;EAPF;IAQI;;;AAMR;EAjKJ;IAkKQ;IACA;;;;ACnKR;EACI;;AAEA;EACE;;AACA;EACE;;AAIJ;EACE;;AACA;EACE;;AAMJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;EACA,YFnCE;EEoCF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE,kBFtDK;EEuDL;EACA,OF1DA;EE2DA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAIA;EACE;EACA;EACA;;AAKF;EACE;EACA","file":"main.css"}
|
||||||
84
css/main.scss
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
// colors
|
||||||
|
$gold: #AB996D;
|
||||||
|
$white: #ffffff;
|
||||||
|
$gray: #585858;
|
||||||
|
$light-gray: #bebebe;
|
||||||
|
$black: #231F20;
|
||||||
|
|
||||||
|
// breakpoints
|
||||||
|
$xs-break: 575px;
|
||||||
|
$s-break: 767px;
|
||||||
|
$m-break: 991px;
|
||||||
|
$l-break: 1199px;
|
||||||
|
|
||||||
|
// fonts
|
||||||
|
@mixin Libre {
|
||||||
|
font-family: 'Libre Baskerville', serif;
|
||||||
|
}
|
||||||
|
@mixin Lato {
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
//btns
|
||||||
|
.btn {
|
||||||
|
@include Libre;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: $gold;
|
||||||
|
border-color: $gold;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: darken($gold, 10%);
|
||||||
|
border-color: darken($gold, 10%);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active,
|
||||||
|
&:focus,
|
||||||
|
&:not(:disabled):not(.disabled):active,
|
||||||
|
&:not(:disabled):not(.disabled):active:focus {
|
||||||
|
background-color: darken($gold, 15%);
|
||||||
|
border-color: darken($gold, 15%);
|
||||||
|
box-shadow: 0 0 0 0.2rem rgba(129, 113, 74, .5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
@include Lato;
|
||||||
|
|
||||||
|
background-color: $white;
|
||||||
|
color: $black;
|
||||||
|
margin: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Enable native smooth-scrolling for in-page anchor navigation
|
||||||
|
// This complements the JS smooth-scroll and works when JS is unavailable
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, a, li, span, div {
|
||||||
|
@include Lato;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
@include Libre;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-content {
|
||||||
|
padding: 110px 0 0 0;
|
||||||
|
position: relative;
|
||||||
|
top: -32px;
|
||||||
|
|
||||||
|
.hero-text {
|
||||||
|
h1 {
|
||||||
|
font-size: 64px;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@import 'components/nav';
|
||||||
|
@import 'components/slide';
|
||||||
2
favicon.ico
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Placeholder favicon file for Pine Creek website.
|
||||||
|
Replace this with a real 16x16/32x32 .ico when available.
|
||||||
BIN
img/.DS_Store
vendored
Normal file
BIN
img/Pine Creek Car Magnet Design.pdf
Normal file
BIN
img/Pine Creek Emblem.docx
Normal file
BIN
img/Pine Creek Logo.jpg
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
img/Pine Creek Map.jpg
Normal file
|
After Width: | Height: | Size: 113 KiB |
659
img/PineCreekLogo.svg
Normal file
|
After Width: | Height: | Size: 207 KiB |
BIN
img/house-0.jpg
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
img/house-1.jpg
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
img/house-10.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
img/house-11.jpg
Normal file
|
After Width: | Height: | Size: 157 KiB |
BIN
img/house-12.jpg
Normal file
|
After Width: | Height: | Size: 144 KiB |
BIN
img/house-13.jpg
Normal file
|
After Width: | Height: | Size: 116 KiB |
BIN
img/house-14.jpg
Normal file
|
After Width: | Height: | Size: 118 KiB |
BIN
img/house-15.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
img/house-16.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
img/house-17.jpg
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
img/house-2.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
img/house-3.jpg
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
img/house-4.jpg
Normal file
|
After Width: | Height: | Size: 129 KiB |
BIN
img/house-5.jpg
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
img/house-6.jpg
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
img/house-7.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
img/house-8.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
img/house-9.jpg
Normal file
|
After Width: | Height: | Size: 171 KiB |
BIN
img/intro_short.mp4
Normal file
BIN
img/kannapolis-nc.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
307
img/logo.svg
Normal file
@@ -0,0 +1,307 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 663.5 349.9" style="enable-background:new 0 0 663.5 349.9;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#231F20;}
|
||||||
|
.st1{fill:#AB996D;}
|
||||||
|
</style>
|
||||||
|
<title>Asset 2</title>
|
||||||
|
<path class="st0" d="M56.9,276.7c-1.9-1.6-7-5.9-21.3-5.9c-2.7,0-5.7,0.1-8.6,0.2s-5.4,0.1-7.6,0.1c-1.3,0-3.3,0-5.7-0.1
|
||||||
|
c-3.3-0.1-7-0.2-10.4-0.2c-1.2,0-3.3,0-3.3,1.8s2.1,1.8,2.8,1.8c1.4,0,2.8,0.1,4.2,0.3c3.2,0.6,3.9,1.9,4.1,5s0.2,6,0.2,21.3v17.7
|
||||||
|
c0,9.2,0,17.2-0.6,21.3c-0.4,3-1,4.5-2.6,4.8c-1.3,0.3-2.6,0.4-3.9,0.4c-1.8,0-2.6,0.5-2.6,1.6s1,1.9,3.1,1.9c2.6,0,5.9-0.1,8.8-0.2
|
||||||
|
c2.2-0.1,4.1-0.1,5.2-0.1s2.8,0,5,0.1c3.5,0.1,7.8,0.2,12.4,0.2c2.7,0,3-1.3,3-1.9s-0.3-1.6-2.6-1.6c-1.9,0-3.7-0.2-5.6-0.4
|
||||||
|
c-2.6-0.3-3.3-1.8-3.6-4.7c-0.5-4.3-0.5-12.2-0.5-21.5v-40.3c0-0.6,0.1-1,0.3-1.1c1.3-0.3,2.7-0.4,4.1-0.4c3.9,0,7.6,1.3,10.6,3.8
|
||||||
|
C47.4,285.1,48,291,48,295c0,9.8-8.2,15.8-14.1,15.8c-1.5,0-4,0-4,2c0,1.4,1.4,1.6,2,1.7c0.8,0.1,1.7,0.1,2.5,0.1
|
||||||
|
c16.4,0,28.3-10.6,28.3-25.2C62.6,284.5,60.5,280,56.9,276.7z"/>
|
||||||
|
<path class="st0" d="M100,345.1c-1.9,0-3.7-0.2-5.6-0.4c-2.8-0.3-3.4-1.6-3.7-4.2c-0.4-4.3-0.4-12.1-0.4-22v-17.7
|
||||||
|
c0-15.3,0-18.1,0.2-21.3c0.2-3.4,1-4.6,3.4-5c1.1-0.2,2.1-0.3,3.2-0.3c1.8,0,2.6-0.6,2.6-1.9c0-1.6-2.3-1.6-3.2-1.6
|
||||||
|
c-2.3,0-5.4,0.1-8.2,0.2c-2.2,0.1-4.2,0.1-5.5,0.1c-1.5,0-3.8-0.1-6.3-0.1c-2.9-0.1-5.9-0.2-8.2-0.2c-1.2,0-3.5,0-3.5,1.6
|
||||||
|
c0,1.2,0.9,1.9,2.6,1.9c1.3,0,2.6,0.1,3.9,0.4c1.7,0.3,2.9,1.3,3.1,4.9c0.2,3.2,0.2,6,0.2,21.3v17.7c0,9.9,0,17.7-0.6,21.9
|
||||||
|
c-0.3,3-0.9,4-2.6,4.3c-1.3,0.3-2.6,0.4-3.9,0.4c-1.7,0-2.6,0.5-2.6,1.6s1,1.9,3.1,1.9c2.6,0,5.9-0.1,8.8-0.2
|
||||||
|
c2.2-0.1,4.1-0.1,5.2-0.1s3,0,5.1,0.1c3.5,0.1,7.8,0.2,12.3,0.2c2.7,0,3-1.3,3-1.9S102.3,345.1,100,345.1z"/>
|
||||||
|
<path class="st0" d="M197.2,270.8c-3.7,0-6.9,0.1-8.9,0.2c-0.9,0-1.6,0.1-2,0.1c-0.9,0-2.3,0-3.9-0.1c-2.7-0.1-6-0.2-9.6-0.2
|
||||||
|
c-1.5,0-3.8,0-3.8,1.8s2,1.8,2.6,1.8c1.9-0.1,3.8,0.1,5.6,0.5c2.1,0.8,3.1,2.2,3.2,8.3l1.1,43.8c-1.4-1.3-4-3.7-7-6.6
|
||||||
|
c-5.5-5.2-12.3-11.6-16.6-15.5c-17-15.2-34.4-32.2-34.6-32.3l-1-1c-1.4-1.4-2.4-2.4-3.7-2.4c-2.3,0-2.3,3.2-2.3,4.3l-1,59.6
|
||||||
|
c-0.1,8.9-0.7,11.1-2.8,11.7c-1.6,0.3-3.2,0.5-4.8,0.5c-1.8,0-2.6,0.5-2.6,1.6c0,1.9,2.2,1.9,3.3,1.9c4.1,0,7.9-0.1,10.2-0.2
|
||||||
|
l1.9-0.1c0.7,0,1.8,0,3.1,0.1c2.5,0.1,6,0.2,10.8,0.2c1,0,3.4,0,3.4-1.9c0-1.6-2.1-1.6-2.7-1.6c-1.9,0.1-3.7-0.2-5.6-0.7
|
||||||
|
c-1.4-0.5-3.1-2-3.3-10.4l-1.2-40.6l1.3,1.3c4.7,4.6,14.5,14.3,24.1,23c4.8,4.2,9.9,8.9,14.9,13.5c7.1,6.5,13.9,12.6,18,16.2
|
||||||
|
c1.4,1.2,2.8,2.4,4.4,2.4c2.3,0,2.3-2.9,2.3-4l1.2-63.6c0.1-5.9,1.2-7.2,3.5-7.8c1-0.2,2.1-0.3,3.2-0.3c2.4,0,2.9-1,2.9-1.8
|
||||||
|
C200.6,270.8,198.5,270.8,197.2,270.8z"/>
|
||||||
|
<path class="st0" d="M259.1,331.6c-1.6,0-1.9,1.4-2.1,2.2c-0.8,3.9-2,5.8-4.5,6.8c-2.8,1.1-7.4,1.1-10.2,1.1
|
||||||
|
c-11.2,0-12.4-1.4-12.6-7.6c-0.1-2.1-0.1-7.3,0-11.4c0-1.7,0-3.2,0-4.2v-8.1c3.3,0,13.6,0.1,15.6,0.3c4.2,0.4,5.1,2,5.5,3.3
|
||||||
|
c0.2,0.8,0.3,1.7,0.3,2.5c0,0.4,0,0.7,0.1,0.9c0,0.9,0.7,1.7,1.6,1.8c0.1,0,0.2,0,0.3,0c1.9,0,1.9-2,1.9-2.8c0-0.4,0.1-1.9,0.2-3.4
|
||||||
|
c0.1-1.2,0.2-2.4,0.2-3.3c0.3-3.4,0.6-5.2,0.8-6.2c0.1-0.4,0.1-0.8,0.1-1.2c0.1-0.8-0.6-1.6-1.4-1.6c-0.1,0-0.1,0-0.2,0
|
||||||
|
c-0.9,0-1.5,0.6-2.2,1.4l-0.1,0.1c-0.8,0.8-2.4,1.1-4.8,1.3c-1.6,0.1-7.9,0.2-17.7,0.2c0-0.1,0-0.2,0-0.2V278c0-0.1,0-0.1,0-0.2
|
||||||
|
c2.6,0,13.9,0.2,15.7,0.4c5.7,0.6,6.3,1.9,6.8,3.1c0.4,1,0.6,2.2,0.6,3.3c0,1.9,1,2.3,1.9,2.3c0.7,0,1.6-0.3,1.9-1.8
|
||||||
|
c0.1-0.8,0.3-2.8,0.4-4.6c0.1-0.9,0.1-1.7,0.2-2.1c0.1-1.8,0.3-3.7,0.7-5.5c0.1-0.4,0.2-0.7,0.2-1.1c0-1.6-1.2-1.8-1.5-1.8
|
||||||
|
c-0.5,0-0.9,0.1-1.4,0.3l-0.6,0.2c-0.8,0.2-2.3,0.4-4.6,0.6c-1.9,0.1-20.1,0.1-27.9,0.1c-1.3,0-3.4-0.1-5.8-0.2h-1.3
|
||||||
|
c-1.4,0-2.8,0-4.3,0s-3.2,0-4.7,0c-1.1,0-3.3,0-3.3,1.8s2.1,1.8,2.7,1.8c1.4,0,2.8,0.1,4.2,0.3c3.3,0.6,3.9,2,4.1,5
|
||||||
|
c0.2,3.2,0.2,6,0.2,21.3v17.7c0,9.2,0,17.2-0.6,21.3c-0.5,3-1,4.5-2.6,4.8c-1.3,0.3-2.6,0.4-3.9,0.4c-1.7,0-2.6,0.5-2.6,1.6
|
||||||
|
s1,1.9,3.1,1.9c1.1,0,2.3,0,3.6-0.1s2.8-0.1,4.1-0.1c2.7-0.1,5.1-0.1,6.3-0.1c3.2,0,6.5,0.1,11.6,0.3l3,0.1
|
||||||
|
c4.3,0.1,9.6,0.2,16.4,0.2c4.3,0,5.9,0,6.8-3.2c0.8-3.8,1.3-7.6,1.5-11.4C260.8,333.4,260.8,331.6,259.1,331.6z"/>
|
||||||
|
<path class="st0" d="M361.3,327.6c-1.7,0-2,1.4-2.3,2.7c-0.7,2.3-1.9,4.5-3.6,6.3c-4.4,4.5-10.3,5.4-19.8,5.4
|
||||||
|
c-23.4,0-34.4-20.9-34.4-35c0-11.7,3.2-19.8,10-25.4c5-4.1,11.5-6,20.5-6c10.9,0,19,3,22.1,6c2.4,2.3,3.9,5.4,4.1,8.6
|
||||||
|
c0,0.8,0,3.1,2,3.1s2.1-2,2.2-3.1s0.1-3,0.2-5.1s0.1-4.2,0.2-5.8c0.1-2.1,0.3-3.4,0.4-4.2c0.1-0.5,0.1-0.9,0.1-1.4
|
||||||
|
c0-0.4-0.2-1.9-2.5-2.1c-1.7-0.1-3.5-0.5-5.4-0.8s-3.7-0.7-5.7-0.9c-5.4-0.7-10.9-1-16.3-1c-15.5,0-26.9,3.5-35.9,10.9
|
||||||
|
c-8.4,7-13.3,17.3-13.4,28.3c0,12.7,4.8,22.9,14.2,30.4l0,0c9.7,7.6,22.1,11.2,38.8,11.2c6.7,0,15.6-0.6,20.4-2.4
|
||||||
|
c2.1-0.8,2.8-1.5,3.4-3.5c1.2-4.5,2-9.1,2.4-13.7C363.1,327.8,361.7,327.6,361.3,327.6z"/>
|
||||||
|
<path class="st0" d="M511.1,331.1c-1.6,0-1.9,1.3-2.1,2.2c-0.7,3.9-2,5.8-4.5,6.8c-2.8,1.1-7.4,1.1-10.2,1.1
|
||||||
|
c-11.2,0-12.4-1.4-12.5-7.6c-0.1-2.1,0-7.2,0-11.4c0-1.7,0-3.2,0-4.2v-8.1c2.8,0,13.5,0.1,15.6,0.3c4.2,0.4,5.1,2,5.5,3.3
|
||||||
|
c0.2,0.8,0.3,1.7,0.3,2.5c0,0.4,0,0.7,0.1,0.9c0,0.9,0.7,1.7,1.6,1.8c0.1,0,0.2,0,0.3,0c1.9,0,1.9-2,1.9-2.8c0-0.4,0.1-1.8,0.2-3.3
|
||||||
|
c0.1-1.2,0.2-2.5,0.2-3.4c0.3-3.4,0.6-5.2,0.8-6.2c0.1-0.4,0.1-0.8,0.1-1.2c0.1-0.8-0.6-1.6-1.4-1.6c-0.1,0-0.1,0-0.2,0
|
||||||
|
c-0.9,0-1.4,0.6-2.2,1.4l-0.2,0.2c-0.8,0.8-2.4,1.1-4.8,1.3c-1.6,0.1-7.9,0.2-17.7,0.2v-25.9c2.6,0,13.9,0.2,15.7,0.4
|
||||||
|
c5.7,0.6,6.3,1.9,6.8,3.1c0.4,1,0.6,2.1,0.6,3.3c0,1.9,1,2.3,1.9,2.3s1.6-0.3,2-1.8c0.1-0.8,0.3-2.8,0.4-4.6
|
||||||
|
c0.1-0.9,0.1-1.7,0.2-2.1c0.1-1.8,0.3-3.7,0.7-5.5c0.1-0.4,0.2-0.7,0.2-1.1c0-1.6-1.2-1.8-1.5-1.8c-0.5,0-0.9,0.1-1.4,0.3
|
||||||
|
c-0.2,0.1-0.4,0.1-0.6,0.2c-1,0.2-3.1,0.4-4.7,0.6c-1.9,0.1-20.1,0.1-27.9,0.1c-1.2,0-3-0.1-5.2-0.1l-1.9-0.1c-1.4,0-2.8,0-4.3,0
|
||||||
|
s-3.2,0-4.7,0c-1.1,0-3.3,0-3.3,1.8s2.1,1.7,2.7,1.7c1.4,0,2.8,0.1,4.2,0.3c3.3,0.6,3.9,1.8,4.1,5s0.2,6,0.2,21.3V318
|
||||||
|
c0,9.2,0,17.2-0.5,21.3c-0.5,3-1,4.5-2.6,4.8c-1.3,0.3-2.6,0.4-3.9,0.4c-1.3,0-2.2,0.3-2.5,1c-0.2-0.5-0.8-1-2-1c-1,0-2-0.1-3-0.3
|
||||||
|
h-0.1c-1.6-0.3-6-1.1-12-6.6c-5.7-5.4-12.1-12.7-20.3-22l-3.2-3.7c10-7.5,14.4-14.4,14.4-22.7c-0.1-5.9-3.1-11.3-8-14.5
|
||||||
|
c-6.4-3.9-14.2-4.5-21-4.5c-1.7,0-4.5,0.1-7.5,0.1s-6.3,0.2-8.2,0.2c-0.9,0-2.5,0-4.5-0.1c-3.2-0.1-7.2-0.2-10.9-0.2
|
||||||
|
c-1.1,0-3.3,0-3.3,1.8s2.1,1.8,2.7,1.8c1.4,0,2.8,0.1,4.2,0.3c3.3,0.6,3.9,1.8,4.1,5s0.2,6,0.2,21.3V318c0,9.2,0,17.2-0.5,21.3
|
||||||
|
c-0.5,3-1,4.5-2.6,4.8c-1.3,0.3-2.6,0.4-3.9,0.4c-1.8,0-2.6,0.5-2.6,1.6c0,0.9,0.5,1.9,3.1,1.9s6.2-0.1,9.1-0.2
|
||||||
|
c2-0.1,3.7-0.1,4.5-0.1c0.6,0,1.9,0,3.6,0.1c3.4,0.1,8.5,0.2,12.8,0.2c2.5,0,3.1-1,3.1-1.9s-0.6-1.6-2.2-1.6c-1.3,0-3.8-0.2-5.4-0.4
|
||||||
|
c-2.6-0.3-3.3-1.8-3.6-4.8c-0.5-4.2-0.5-12.2-0.5-21.5v-1.4l0,0l9.7,0.2c0.5-0.1,1,0.1,1.4,0.5c0.8,0.8,2.8,3.4,5.2,6.5
|
||||||
|
c1.8,2.3,3.9,5,5.8,7.4c6.6,8.2,10.8,12.7,15.6,15c3.1,1.5,6.1,2,12.3,2h10.6c0.7,0,2.3,0,2.8-1.1c0.3,0.6,1.1,1.1,2.9,1.1
|
||||||
|
c1.1,0,2.3,0,3.6-0.1s2.8-0.1,4.1-0.1c2.7-0.1,5.1-0.1,6.3-0.1c3.5,0,7,0.1,11.6,0.3l3.7,0.1c4.1,0.1,9.3,0.2,15.7,0.2
|
||||||
|
c4.3,0,5.9,0,6.8-3.2c0.8-3.8,1.3-7.6,1.5-11.4C512.9,332.8,512.9,331.1,511.1,331.1z M418,294.2c0,9-3.9,12.9-6.2,14.4
|
||||||
|
c-1.9,1.2-3.1,1.6-7.5,1.6c-2.8,0-5.5-0.3-8.2-1c-0.4-0.1-0.5-0.2-0.5-1v-30.6c0-0.5,0-0.5,0.4-0.6c1.9-0.3,3.8-0.5,5.7-0.4
|
||||||
|
C407.8,276.6,418,280.4,418,294.2z"/>
|
||||||
|
<path class="st0" d="M570.1,331.1c-1.6,0-1.9,1.4-2.1,2.2c-0.7,3.9-2,5.8-4.5,6.8c-2.8,1.1-7.4,1.1-10.2,1.1
|
||||||
|
c-11.2,0-12.4-1.4-12.6-7.6c-0.1-2.1,0-7.2,0-11.4c0-1.7,0-3.2,0-4.2v-8.1c2.8,0,13.5,0.1,15.6,0.3c4.2,0.4,5.2,2,5.5,3.3
|
||||||
|
c0.2,0.8,0.3,1.7,0.3,2.5c0,0.4,0,0.7,0.1,0.9c0,0.9,0.7,1.7,1.6,1.8c0.1,0,0.2,0,0.3,0c1.8,0,1.8-2,1.8-2.8c0-0.4,0.1-1.9,0.2-3.3
|
||||||
|
c0.1-1.2,0.2-2.5,0.2-3.4c0.3-3.4,0.6-5.2,0.8-6.2c0.1-0.4,0.1-0.8,0.2-1.2c0.1-0.8-0.6-1.6-1.4-1.6c-0.1,0-0.1,0-0.2,0
|
||||||
|
c-0.9,0-1.5,0.6-2.3,1.5l-0.1,0.1c-0.8,0.8-2.4,1.1-4.8,1.3c-1.6,0.1-7.9,0.2-17.7,0.2c0-0.1,0-0.2,0-0.2v-25.6
|
||||||
|
c2.6,0,13.9,0.2,15.7,0.4c5.7,0.6,6.3,1.9,6.8,3.1c0.4,1,0.6,2.1,0.6,3.3c0,1.9,1,2.3,1.9,2.3s1.6-0.3,2-1.8
|
||||||
|
c0.2-0.8,0.3-2.9,0.4-4.6c0.1-0.9,0.1-1.7,0.2-2.1c0.1-1.8,0.3-3.7,0.7-5.5c0.1-0.4,0.2-0.7,0.2-1.1c0-1.6-1.2-1.8-1.5-1.8
|
||||||
|
c-0.5,0-0.9,0.1-1.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.2c-1,0.2-3.2,0.4-4.7,0.6c-1.9,0.1-20.1,0.1-27.9,0.1c-1.2,0-3-0.1-5.2-0.1
|
||||||
|
l-1.9-0.1c-1.4,0-2.8,0-4.3,0s-3.2,0-4.7,0c-1.2,0-3.3,0-3.3,1.8s2.1,1.7,2.8,1.7c1.4,0,2.8,0.1,4.2,0.3c3.3,0.6,3.9,1.8,4.1,5
|
||||||
|
s0.2,6,0.2,21.3V318c0,9.2,0,17.2-0.5,21.3c-0.5,3-1,4.5-2.6,4.8c-1.3,0.3-2.6,0.4-3.8,0.4c-1.8,0-2.6,0.5-2.6,1.6
|
||||||
|
c0,0.9,0.5,1.9,3.1,1.9c1.1,0,2.3,0,3.6-0.1s2.8-0.1,4.1-0.1c2.7-0.1,5.1-0.1,6.3-0.1c3.5,0,7,0.1,11.6,0.3l3.7,0.1
|
||||||
|
c4.1,0.1,9.3,0.2,15.7,0.2c4.3,0,5.9,0,6.8-3.2c0.8-3.8,1.3-7.6,1.5-11.4C571.9,332.8,571.9,331.1,570.1,331.1z"/>
|
||||||
|
<path class="st0" d="M661.2,344.6c-2.3-0.1-4.5-0.6-6.6-1.5c-5.5-1.9-10.2-6-14.8-9.9l-0.9-0.8c-4.2-3.6-24.6-23.4-29.7-29
|
||||||
|
c4.7-4.4,20.2-18.3,23.5-21.2c4.2-3.7,8-6.1,11.8-7.4c2-0.6,4.1-1,6.2-1.1c0.6,0,2.5,0,2.5-1.8c0-1.2-0.9-1.8-2.8-1.8
|
||||||
|
s-4.2,0.1-6.6,0.1s-4.8,0.1-6.5,0.1s-4-0.1-6.4-0.2c-2.1-0.1-4-0.1-5.1-0.1c-0.7,0-2.6,0-2.6,1.8c0,1.4,1.4,1.7,2.2,1.8
|
||||||
|
c0.6,0.1,0.9,0.3,0.9,1.2c0,1.3-2.4,3.8-4.9,6.5l-0.4,0.4c-1.9,2-8.5,8.2-14.3,13.7c-3.2,3-6.3,5.9-8.1,7.6v-3
|
||||||
|
c0-15.3,0-18.1,0.2-21.3c0.2-3.4,1-4.6,3.4-5h0.1c0.9-0.2,1.9-0.3,2.9-0.3c2.2,0,2.4-1.2,2.4-1.8c0-1.8-2.2-1.8-3.2-1.8
|
||||||
|
c-2.1,0-5.1,0.1-7.8,0.2c-2.3,0.1-4.5,0.1-5.7,0.1c-1.1,0-2.9,0-5-0.1c-3.2-0.1-7.1-0.2-10.7-0.2c-1.2,0-3.3,0-3.3,1.8
|
||||||
|
s2.1,1.8,2.7,1.8c1.4,0,2.8,0.1,4.2,0.3c3.3,0.6,3.9,1.8,4.1,5s0.2,6,0.2,21.3V318c0,9.2,0,17.2-0.5,21.3c-0.5,3-1,4.5-2.6,4.8
|
||||||
|
c-1.3,0.3-2.6,0.4-3.9,0.4c-1.8,0-2.6,0.5-2.6,1.6c0,0.9,0.5,1.9,3.1,1.9s5.9-0.1,8.8-0.2c2.2-0.1,4.1-0.1,5.2-0.1s3,0,5.1,0.1
|
||||||
|
c3.2,0.1,7.3,0.2,11,0.2c2.7,0,3-1.3,3-1.9c0-0.8-0.6-1.6-2.3-1.6c-1.8,0-3.6-0.2-5.3-0.4c-2-0.3-3.1-1.7-3.3-4.7
|
||||||
|
c-0.3-4.3-0.3-12.3-0.3-21.5v-7.5l0.3,0.4c2.3,2.9,24.4,26.3,29.4,30.3s8,6.2,14.3,6.7c2.4,0.2,4.4,0.2,7.8,0.2h9.8
|
||||||
|
c1.3,0,3.5,0,3.5-1.9C663.5,345.8,663.3,344.6,661.2,344.6z"/>
|
||||||
|
<path class="st1" d="M389.2,128.5c-0.3,0.6-10.6,1.5-12.2,0.9c-1.6-0.5-3.2-0.6-4.8-0.3c-2.5,0.3-4.9,0.5-7.4,0.5
|
||||||
|
c-5.1,0-5.5,0.8-0.9,1.5c1.6,0.2,16.4,2.6,17.1,3.2c0.9,0.6,1.9,1,3,1c1,0,1.9,0.3,1.9,0.8s-1,0.6-2.5,0.4s-2.5-0.1-2.5,0.3
|
||||||
|
s-0.5,0.6-1,0.6s-1-0.7-1-1.5l-0.9,1.7l-0.6-1.7c-0.9,0.9-15.2-0.3-16-0.6c-1.7-0.5-1.8,0.7-0.1,1.2c0.7,0.2,0.2,0.3-1.1,0.1
|
||||||
|
c-1.7-0.2-2.2,0-1.7,0.7s0.2,0.8-0.7,0.5c-2.1-0.9-3.7-0.8-3.7,0.2c0,1.4-2.7,1.2-3.4-0.3c-0.4-1-1.4-1.3-3.5-1.1
|
||||||
|
c-1.6,0.1-2.9-0.1-2.9-0.3l-2.2-0.9c-2-0.5-3.4,1.5-4,5.7c-0.4,2.5-1.2,98.8-1,101.4l-8,0.3c1.1-3.8,0.3-100.4,0.4-103.2
|
||||||
|
c0-2.9,0.1-6.1-5.4-5.2c-4.1,1.6-19.4,3.3-30.9,2.7c-13.1-2.2-6.9-3.1-0.5-2.5c2.8,0.9,11.8-0.4,8.2-0.1c16.5-4-0.9-4.2-1.8-4.4
|
||||||
|
s-6.3,1.2-7.1,1.4c-1,0.3-1.5,0-1.5-0.8c0-1-0.9-1.2-6.3-1.1c-4.9,0.1-6-0.1-4.8-0.7c1.6-0.8,0.8-2.7-0.9-2c-0.5,0.2-1.9-0.3-3-1.2
|
||||||
|
s-2.3-1.5-2.7-1.4s-0.7-0.4-0.7-1c0-1.5-3.1-3.1-4.9-2.7c-0.8,0.2-2.5-0.6-4-2.1c-2.5-2.2-2.5-2.4-0.6-2c1.2,0.3,3.3,0.6,4.8,0.8
|
||||||
|
s3.5,0.5,4.3,0.7c1,0.2,2-0.1,2.8-0.7c1-0.8,1.7-0.8,4.3-0.1c1.7,0.5,3.4,0.6,5.1,0.3c2.1-0.6,1.3-0.9-2.2-0.7
|
||||||
|
c-1.4,0-2.8-0.4-3.9-1.3c-1.3-1-3.6-3.2-4.6-2.7c-1.5,0.8-4.7,0.2-3.9-0.7c0.3-0.3-0.9-1.1-2.6-1.7s-1.3-5.9-0.9-5.9
|
||||||
|
s-0.1-0.7-1.2-1.5c-1-0.7-1.7-1.7-2-2.9c0-1.2,0.1-1.2,1.2-0.2c2,1.9,9,8.3,13,7.4c2-0.4,18.1,0.1,20.7-4.5c1.7-3-20.4-2.5-21.7-1.6
|
||||||
|
c-1.1,0.7-2.2-2.4-2.2-3.2c0-0.3,0.5-0.8,1-1c1-0.4-2.5-2-4.1-2.5c-0.5-0.1-1.1-1.6-1.4-3.2l-0.6-3l4.1,2.8c2.4,1.6,5,2.9,7.8,3.8
|
||||||
|
c3.2,0.9,11.8-1.1,12.3-2c0.4-0.7-9-2.9-10-2.7c-3.9-1.9-2.5-0.6-4.1-3.8c0.9-0.4-1.5-1.8-3.3-1.5c-2.2,0.4-2.6-2.3-2.6-3.4
|
||||||
|
c0-1.9-4.8-4.4-4.1-6.2l2.8-0.1c5,3.5,14.6,6.3,24.9,3.2c0.6-0.2,5,0.5-0.9-0.7c-0.5,0.2-1.2-0.1-1.4-0.6c-0.3-0.5,0.1-1.1,0.9-1.3
|
||||||
|
s1.4-0.7,1.4-1.2s-6.2,0-7.1,0.2c-1.9,0.5-13.5-5.5-11.9-6.2c2.1-0.9,1.1-1.8-1.1-1c-1.8,0.7-2,0.6-1.5-0.3c0.3-0.4,0.1-1-0.3-1.3
|
||||||
|
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.7-0.2-0.5-0.4,0.4-0.4s1.6-0.5,1.6-1.1s-0.5-0.9-1.2-0.7c-0.7,0.2-1.4-0.1-1.8-0.7
|
||||||
|
c-1.1-2,0.6-2.3,3.9-0.6c1.3,0.7,2.6,1.3,4,1.7c1.1,0.3,2.2,0.7,3.3,1.3c2.9,1.4,10.6,1.9,15.3,3.6c-0.3-0.3,3,0,4,0
|
||||||
|
c1.5,0,1.3-1.8-0.7-2.8c-1.2-0.6-10.6-4.2-10.6-4.7s-1.2-1-2.7-1.1s-2.7-0.6-2.7-1.2s-1-1.1-2.2-1.2s-2-0.5-1.7-0.8s0.1-0.6-0.5-0.6
|
||||||
|
s-0.8-0.3-0.5-0.7l15.1,3c0.7-0.3-0.5-3.9-1.5-4.6c-0.8-0.5-6.9-0.7-6.7-1.2s-0.3-1.1-1.2-1.4c-1.5-0.4-1.6-0.5-0.3-1.1
|
||||||
|
s1.2-0.7-0.3-0.7s-1.6-0.2-0.5-1.4c1.6-1.7,14.2,2.9,14.9,4.6c2.8,0.2-7.2-6.9-6.4-6.9c2,0.5,4,1.3,5.8,2.5c1.3,0.9,2.3,0.9,2.3,0.6
|
||||||
|
s5.7,1.4,7.2,1.8c1.7,0.4,0.5-2.3,2.1-2.8c3.1-1-0.3-3.7-3.4-3.7c-1.4,0-3.6,1.2-4.5,0.3s-1.7-1.4-1.8-1.2s-1.1-0.1-2.2-0.5
|
||||||
|
c-1.8-0.7-1.8-0.8-0.2-0.8c2.2,0,1.9-2.8-0.6-4.8c-0.9-0.7-1.2-1.3-0.7-1.3s0.7-0.5,0.3-1.2c-0.6-1.1-0.5-1.1,1.2-0.2
|
||||||
|
c1,0.6,2.8,1.7,4,2.4c6.7,4.4,15.1,6.3,16.5,4.9c0.5-0.6,0.5-2.3-0.6-2c-0.9,0.2-1.6,0.2-1.6-0.2s-5.2-1.5-6.2-1.7s-2-0.9-2-1.7
|
||||||
|
c0-1.3-3.7-0.8-5.9-0.4c-0.5,0.1-0.5-0.2,0.2-0.7c0.9-0.6,0.6-1.2-1.3-2.4c-1.4-0.9-2.2-1.9-1.9-2.3s0.1-0.7-0.6-0.7
|
||||||
|
c-0.9,0-0.9-0.2-0.2-0.7s2-0.1,4.4,1.4c3.7,2.3,6.9,2.7,8.3,1.7c0.9-0.6-1-3.2-2.7-3.2c-2.2,0-3.9-4.7-2.7-6.2
|
||||||
|
c-0.8-1,2.9,0.4,6.1,1.5c2,0.7,5-1.4,7.2-1.2c3.9,0.4,2.3-0.8,1.8-2.2c-0.4-1.1-0.9-1.3-1.6-0.8c-0.6,0.4-5.3,0.3-6.5,0.3
|
||||||
|
c-2,0-0.7,0.5-0.2-1.5s7.6-2.5,5-2.5l-0.8-2.6c1.2,0.5,2.4,0.8,3.7,1.1c1.5,0,0.2-2.4-1.3-2.4c-0.8,0-1.4-0.4-1.2-0.8
|
||||||
|
s1.2-0.2,0.1-0.4s4.8-1.6,4.8-2.4l0.3-1.2c3.8-2.7,4.3-5.8,2.8-5.1l4-2.7c0.6,0,1,0.4,1.1,1l2,2c-1.1,0.2-1.7,0.7-1.4,1.1
|
||||||
|
c0.4,0.4,0.9,0.5,1.4,0.3c0.5-0.2,1.1,0.2,1.5,0.9c0.5,0.8,1.4,1.3,2.3,1.2c2.4-0.1,2.4,2.6-0.1,4.5c-1.7,1.2-1.7,1.4-0.4,1.1
|
||||||
|
c1.1-0.3,1.7-0.1,1.7,0.5s0.9,0.9,2.8,0.8l2.2,2c-0.8,0.4-1.1,1.1-0.7,1.5s-0.6,1.1-2.3,1.6s-3,1.1-3,1.4s-0.7,0.9-1.6,1.5
|
||||||
|
c-1.4,1-1.2,1,1.9,0.9c1.9-0.1,3.3-0.3,3.1-0.5s1.4-1,3.4-1.8c3.5-1.3,3.7-1.3,3.3-0.1c-0.3,0.7-1,1.2-1.8,1.3
|
||||||
|
c-0.8,0-1.4,0.7-1.4,1.4c0,1-0.5,1.3-1.4,1.1c-1.2-0.3-3.8,2-2.6,3.5l4.4,0.5c1.9-0.1,6.2-1,6-1.2s-0.5,0.2,0.5-0.3
|
||||||
|
c1.6-0.7,1.8-0.6,1.4,0.8c-0.5,1.8,1.5,3.3,4.8,3.6c4.2,0.4,2.9,0.9-2.1,0.8c-2.8-0.1-3.8,3.4-8.8,2.8l-1.5,0.8c-1.1,0-2,0.9-2,2
|
||||||
|
c0,0.1,0,0.1,0,0.2v0.7h6.2l1.3,0.9c4.4,0.2,9.8-2.7,10-1.8c0.8,2.8,3.9,1,4.3,1.4s0.1,0.7-0.5,0.7s-1,0.6-0.5,1.7
|
||||||
|
c0.7,1.9-0.3,2.2-3.4,1c-1.5-0.5-1.8-0.5-1.3,0.4c0.3,0.6-9.9,2-10.5,2.5c-1.5,1.2,1,2,4.5,1.3c2.2-0.4,8-2.5,11-0.7
|
||||||
|
c-0.2,1,6.7,0,7.6,1.8c-2.7,1-5.9,0.9-6.6,2.2c-1.2,2.2-6.4,0.4-7.3,5l0.8,2.1c0,0.6-0.5,1.1-1.1,1.2c-0.6,0-0.8,0.3-0.4,0.7
|
||||||
|
c0.6,0.4,1.4,0.6,2.1,0.3c0.8-0.2,2.3,0.4,3.5,0.9l1.6-1.8c1.9-1.6,4.3,0.2,7.4-1.9c6.3-2.7,5.3,1.2,9.2,0.7
|
||||||
|
c1.1,1.2-11.6,6.6-13.4,6.7c-1.5,0-1.5,0.1-0.2,0.7c1.3,0.5,1.3,0.7,0,0.8c-0.8,0.1-1.5,0.1-2.3,0c-0.5-0.1-1.3,0.7-1,1.2l-7.6,1.9
|
||||||
|
c-2.7,1.9-1.7,3.9,14.6,1.4c2.6-0.6,5.1-1.5,7.5-2.7c4.1-2,4,0.8,4,1.8c0,0.2-0.8,0.9-1.7,1.4s-1.3,0.8-0.7,0.6s1.1,0.3,1.2,1
|
||||||
|
c0.1,1-0.1,1.2-1.1,0.6c-1.7-1-2.9-0.1-1.4,1.1c0.8,0.7,0.7,0.9-0.5,0.9c-0.9,0-1.6,0.3-1.6,0.7s-0.7,0.7-1.5,0.7
|
||||||
|
c0,0-8.8,0.3-9.7,1.8s-3,0.6-3.9-0.3c-1.2-1.1-1,4.9,3.5,3.6c1.5-0.4,0.3-2.5,3.9-2.2s9.2,2.7,10.2,1.6s11.2-2.2,11.7-3
|
||||||
|
s2.1-3.4,2.8-2.4s0.5,5.8-1.5,6.4c-3.5,1.5-6.8,3.2-10,5.3c-1.9,1.4-4.2,2.1-6.6,1.9c-2.6-0.3-8.2,1.5-8.2,1.5s-1.1,2.4,0,2.7
|
||||||
|
s8.9,1.6,10,1.2s1.5-0.7,3.5-1.6s4.6-3.4,5.2-3.4c1.1-0.2,2.3-0.4,3.4-0.7c0.6,1.2,4.1,1.4,5.1,0.3c1.2-1.3,2.2-0.7,1.7,1.1
|
||||||
|
c-0.4,1.3-1,1.7-2.3,1.4c-1-0.3-2.1,0.2-2.5,1.1c-1,2.3-2.9,3.3-4.3,2.3c-0.9-0.6-1-0.5-0.5,0.5s0.4,1.2-0.9,0.9
|
||||||
|
c-1.4-0.1-2.8,0.3-3.9,1.2c-1.3,1-2.9,1.5-4.5,1.7c-1.2,0-2.2,0.3-2.2,0.6c0,1.2,8.8,2,10.3,0.9c0.4-0.3,0.9-0.5,1.4-0.6
|
||||||
|
c0.4,0,3.1-1.1,3.9-1.3c-0.4,0.8-0.6,1.6-0.6,2.5l-2.5,1.5l-5.2,3.7l-11.3,0.2l4.4,3.4c1.1,0.2,2.2,0.2,3.3,0
|
||||||
|
c1.8-0.3,3.6-0.5,5.4-0.6l5.4-2.8c3.8-1,14.2-1.1,9.9,2.4c-1.5,1.2-3.8,3.3-6.4,2.2s-5.3,3.7-11,4.5s-8.2,1-10.7,0.9
|
||||||
|
s2.8,2.1,8.5,2.2s6.9,3.8,10.5,2.5s9.5-2.1,10.8-1.8s3.6,1.4-0.8,2.4s-6.6,2.6-10.4,2.8s-9.5-0.4-8.5,0.7s-4.4,0.2-3.1,1.2
|
||||||
|
s5.9,1.2,7.9,1.2S389.2,128.5,389.2,128.5 M325.9,130c1.9-0.5,1.9-0.7,0.5-0.9c-1-0.1-1.7-0.6-1.7-1s-0.4-0.5-1.2-0.1
|
||||||
|
c-1.3,0.7-2.9,0.7-6.1-0.2c-1.5-0.4-1.8-0.3-1.3,0.6c0.3,0.4,0.2,1-0.3,1.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.8,0.2-0.7,0.4,0.3,0.4
|
||||||
|
C320.7,130.6,324,130.5,325.9,130 M293.1,88.1c1.9-0.5,1.9-0.7,0.4-0.9c-1-0.1-1.7-0.6-1.7-1s-0.4-0.5-1.2,0
|
||||||
|
c-1.3,0.7-2.9,0.7-6.1-0.2c-1.5-0.4-1.8-0.3-1.3,0.6c0.3,0.4,0.2,1-0.2,1.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.8,0.2-0.7,0.4,0.3,0.4
|
||||||
|
C287.9,88.7,291.1,88.7,293.1,88.1 M382.2,122.2c2.1-0.3,2.3-1.5,0.2-1.5c-0.8,0-1.5-0.3-1.5-0.6c0-1-7.2-0.5-8.8,0.5
|
||||||
|
c-1.1,0.7-1.6,0.7-2.7-0.3s-1.3-1.1-0.8,0c0.3,0.7,0.1,1.2-0.5,1.2s-1.1,0.3-1.1,0.7C367.1,122.7,378.3,122.8,382.2,122.2
|
||||||
|
M377.2,103.2c2.1-0.3,2.3-1.5,0.2-1.5c-0.8,0-1.5-0.3-1.5-0.6c0-0.9-7.2-0.5-8.8,0.5c-1.1,0.7-1.6,0.7-2.7-0.3
|
||||||
|
c-1.3-1.1-1.3-1.1-0.8,0c0.3,0.7,0.1,1.2-0.5,1.2s-1.1,0.3-1.1,0.7C362.1,103.6,373.3,103.7,377.2,103.2 M294,125
|
||||||
|
c1-0.5,0.3-0.8-2.9-1.4c-3.4-0.6-4.4-0.6-5,0.1s-1.1,0.7-2.3,0c-0.8-0.5-1.8-0.7-2.7-0.6c-0.6,0.1,0.3,0.8,2.2,1.4
|
||||||
|
c2.5,0.8,3.7,0.9,4.6,0.4c0.7-0.6,1.7-0.6,2.4,0C291.8,125.8,292.2,125.8,294,125 M363,124.5c1-0.4,0.3-0.8-2.9-1.4
|
||||||
|
c-3.4-0.6-4.4-0.6-5,0.1s-1.1,0.7-2.3,0c-0.8-0.5-1.8-0.7-2.7-0.6c-0.6,0.2,0.3,0.8,2.2,1.4c2.5,0.8,3.7,0.9,4.6,0.4
|
||||||
|
c0.7-0.6,1.7-0.6,2.5,0C360.8,125.3,361.2,125.3,363,124.5 M342.8,16.7c1-0.5,0.3-0.8-2.9-1.4c-3.4-0.6-4.4-0.6-5,0.1
|
||||||
|
c-0.6,0.7-1.1,0.7-2.3,0c-0.8-0.5-1.8-0.7-2.7-0.6c-0.7,0.1,0.3,0.8,2.2,1.4c2.5,0.8,3.7,0.9,4.6,0.4c0.7-0.6,1.7-0.6,2.4,0
|
||||||
|
C340.6,17.4,341,17.5,342.8,16.7 M353.1,132.7c1-0.4,0.3-0.8-2.9-1.4c-3.4-0.6-4.4-0.6-5,0.1s-1.1,0.7-2.3,0
|
||||||
|
c-0.8-0.5-1.8-0.7-2.7-0.6c-0.6,0.1,0.3,0.8,2.2,1.4c2.5,0.8,3.7,0.9,4.6,0.4c0.7-0.5,1.7-0.5,2.4,0.1
|
||||||
|
C350.9,133.5,351.3,133.6,353.1,132.7 M311.7,61.2c8.9,0.5,14.9-2.9,7.8-4.4c-0.9-0.2-1.6,0.2-1.7,0.9c-0.1,0.9-0.8,1-2.3,0.6
|
||||||
|
c-1.2-0.3-2.2-0.3-2.3,0.1s-0.5,0.4-1,0.1c-0.5-0.3-1.1-0.3-1.5,0c-0.9,0.6-3.6-0.6-4.4-1.9c-0.4-0.6-0.6-0.6-0.8,0s0.4,1.2,1.1,1.5
|
||||||
|
s1,0.9,0.6,1.2s-1.1,0.2-1.7-0.4c-0.7-0.6-1.7-0.8-2.5-0.6c-1.3,0.3-1.2,0.4,0.4,0.8s1.6,0.5,0.3,0.8
|
||||||
|
C301.4,60.4,304.2,60.9,311.7,61.2 M364.1,85.8c8.9,0.5,14.9-2.9,7.8-4.4c-0.9-0.2-1.6,0.2-1.7,0.9c-0.1,0.9-0.8,1-2.3,0.6
|
||||||
|
c-1.2-0.3-2.2-0.3-2.3,0.1s-0.5,0.4-1,0.1c-0.5-0.3-1.1-0.3-1.5,0c-0.8,0.6-3.6-0.6-4.4-1.9c-0.4-0.6-0.6-0.6-0.8,0s0.4,1.2,1.1,1.5
|
||||||
|
s1,0.9,0.6,1.2s-1.1,0.2-1.7-0.4c-0.7-0.6-1.7-0.8-2.5-0.6c-1.3,0.3-1.2,0.4,0.4,0.8s1.7,0.5,0.3,0.8
|
||||||
|
C353.8,84.9,356.6,85.4,364.1,85.8 M298,117c8.9,0.1,14.7-3.6,7.5-4.8c-0.9-0.2-1.6,0.2-1.7,0.9c-0.1,0.9-0.7,1.1-2.3,0.7
|
||||||
|
c-1.2-0.3-2.2-0.2-2.3,0.2s-0.5,0.5-1,0.2c-0.5-0.3-1.1-0.3-1.5,0c-0.8,0.6-3.6-0.4-4.5-1.7c-0.4-0.6-0.6-0.6-0.8,0s0.5,1.1,1.2,1.5
|
||||||
|
s1.1,0.9,0.7,1.2s-1.1,0.2-1.7-0.3c-0.7-0.5-1.7-0.7-2.6-0.4c-1.3,0.3-1.2,0.5,0.4,0.7s1.7,0.4,0.4,0.8
|
||||||
|
C287.6,116.5,290.4,116.8,298,117"/>
|
||||||
|
<path class="st1" d="M260.5,175c-0.2,0.4-7.8,1.1-8.9,0.6c-1.1-0.3-2.3-0.4-3.5-0.2c-1.8,0.2-3.6,0.4-5.4,0.4c-3.7,0-4,0.6-0.7,1.1
|
||||||
|
c1.2,0.2,11.9,1.9,12.4,2.3c0.7,0.4,1.4,0.7,2.2,0.7c0.7,0,1.4,0.2,1.4,0.6s-0.8,0.4-1.8,0.3s-1.8,0-1.8,0.2s-0.3,0.4-0.7,0.4
|
||||||
|
s-0.7-0.5-0.7-1.1l-0.7,1.2l-0.5-1.2c-0.6,0.6-11.1-0.2-11.6-0.4c-1.2-0.3-1.3,0.5-0.1,0.9c0.5,0.2,0.1,0.2-0.8,0.1
|
||||||
|
c-1.3-0.2-1.6,0-1.3,0.5s0.1,0.6-0.5,0.4c-1.5-0.7-2.7-0.6-2.7,0.1c0,1.1-2,0.9-2.5-0.2c-0.3-0.7-1-0.9-2.6-0.9
|
||||||
|
c-1.2,0.1-2.1,0-2.1-0.2L226,180c-1.5-0.4-2.5,1.1-2.9,4.1c-0.3,1.8-0.9,71.9-0.7,73.8l-5.8,0.2c0.8-2.7,0.2-73.1,0.3-75.1
|
||||||
|
s0.1-4.4-3.9-3.8c-3,1.2-14.1,2.4-22.5,2c-9.6-1.6-5-2.3-0.3-1.8c2,0.6,8.6-0.3,6-0.1c12-2.9-0.6-3-1.3-3.2s-4.6,0.9-5.2,1
|
||||||
|
s-1.1,0-1.1-0.6c0-0.8-0.6-0.9-4.6-0.8c-3.6,0-4.4-0.1-3.5-0.5c1.2-0.6,0.6-1.9-0.6-1.4c-0.4,0.2-1.4-0.2-2.2-0.9
|
||||||
|
c-0.5-0.5-1.2-0.8-1.9-1c-0.3,0.1-0.5-0.3-0.5-0.8c0-1.1-2.2-2.3-3.6-1.9c-0.6,0.2-1.8-0.5-2.9-1.5c-1.8-1.6-1.9-1.7-0.4-1.4
|
||||||
|
c0.9,0.2,2.4,0.4,3.5,0.6s2.5,0.3,3.1,0.5c0.7,0.1,1.4-0.1,2-0.5c0.7-0.6,1.2-0.6,3.2-0.1c1.2,0.4,2.5,0.5,3.7,0.2
|
||||||
|
c1.6-0.4,0.9-0.6-1.6-0.5c-1,0-2-0.3-2.8-0.9c-0.9-0.8-2.6-2.3-3.3-1.9c-1.1,0.6-3.4,0.2-2.8-0.5c0.2-0.2-0.6-0.8-1.9-1.2
|
||||||
|
s-1-4.3-0.6-4.3s-0.1-0.5-0.9-1.1c-0.7-0.5-1.3-1.2-1.5-2.1c0-0.9,0.1-0.9,0.9-0.2c1.5,1.4,6.6,6,9.5,5.4c1.4-0.3,13.2,0.1,15.1-3.2
|
||||||
|
c1.3-2.2-14.8-1.8-15.8-1.1c-0.8,0.5-1.6-1.8-1.6-2.4c0-0.2,0.3-0.5,0.7-0.7c0.8-0.3-1.8-1.5-3-1.8c-0.4-0.1-0.8-1.1-1-2.4l-0.4-2.2
|
||||||
|
l3,2c1.8,1.2,3.7,2.1,5.6,2.8c2.4,0.7,8.6-0.8,9-1.4s-6.6-2.1-7.3-2c-2.9-1.4-1.8-0.4-3-2.8c0.7-0.3-1.1-1.3-2.4-1.1
|
||||||
|
c-1.6,0.2-1.9-1.7-1.9-2.5c0-1.4-3.5-3.2-3-4.5l2-0.1c3.6,2.6,10.6,4.6,18.1,2.3c0.4-0.1,3.7,0.3-0.6-0.5c-0.4,0.1-0.8-0.1-1-0.4
|
||||||
|
c-0.2-0.4,0.1-0.8,0.6-1s1-0.5,1-0.9s-4.5,0-5.1,0.2c-1.4,0.4-9.8-4-8.7-4.5c1.5-0.6,0.8-1.3-0.8-0.7c-1.3,0.5-1.5,0.4-1.1-0.2
|
||||||
|
c0.2-0.3,0.1-0.7-0.2-0.9c-0.1,0-0.1-0.1-0.2-0.1c-0.5-0.1-0.4-0.3,0.3-0.3s1.1-0.4,1.1-0.8s-0.4-0.7-0.9-0.5
|
||||||
|
c-0.5,0.1-1-0.1-1.3-0.5c-0.8-1.5,0.5-1.7,2.8-0.4c0.9,0.5,1.9,1,2.9,1.3c0.8,0.2,1.6,0.5,2.4,0.9c2.1,1,7.7,1.4,11.1,2.6
|
||||||
|
c-0.2-0.2,2.2,0,2.9,0c1.1,0,0.9-1.3-0.5-2c-0.9-0.4-7.7-3.1-7.7-3.4s-0.9-0.7-2-0.8s-2-0.5-2-0.9s-0.7-0.8-1.6-0.9
|
||||||
|
s-1.4-0.4-1.2-0.6s0-0.5-0.4-0.5s-0.6-0.2-0.4-0.5l11,2.2c0.5-0.2-0.4-2.8-1.1-3.3s-5-0.5-4.8-0.8s-0.2-0.8-0.9-1
|
||||||
|
c-1.1-0.3-1.1-0.4-0.2-0.8s0.9-0.5-0.2-0.5s-1.1-0.2-0.4-1c1.1-1.3,10.4,2.1,10.9,3.4c2,0.1-5.2-5-4.7-5c1.5,0.4,2.9,1,4.2,1.8
|
||||||
|
c1,0.7,1.7,0.7,1.7,0.4s4.2,1,5.3,1.3s0.3-1.7,1.5-2.1c2.3-0.7-0.2-2.7-2.5-2.7c-1,0-2.6,0.8-3.2,0.2s-1.2-1-1.3-0.9s-0.8,0-1.6-0.3
|
||||||
|
c-1.3-0.5-1.3-0.6-0.2-0.6c1.6,0,1.4-2.1-0.4-3.5c-0.7-0.5-0.9-1-0.5-1s0.5-0.4,0.2-0.9c-0.4-0.8-0.3-0.8,0.9-0.1
|
||||||
|
c0.7,0.4,2,1.2,2.9,1.7c4.9,3.2,11.1,4.6,12,3.6c0.4-0.4,0.4-1.7-0.5-1.4c-0.7,0.2-1.2,0.1-1.2-0.1s-3.8-1.1-4.6-1.2
|
||||||
|
s-1.4-0.7-1.4-1.3c0-1-2.7-0.6-4.3-0.3c-0.4,0.1-0.3-0.1,0.1-0.5c0.6-0.5,0.4-0.9-1-1.8c-1-0.6-1.6-1.4-1.4-1.7s0.1-0.5-0.4-0.5
|
||||||
|
s-0.7-0.2-0.1-0.5s1.5-0.1,3.2,1c2.7,1.7,5.1,1.9,6.1,1.3c0.6-0.4-0.8-2.3-2-2.3c-1.6,0-2.8-3.4-2-4.5c-0.6-0.7,2.1,0.3,4.4,1.1
|
||||||
|
c1.5,0.5,3.6-1,5.3-0.9c2.8,0.3,1.7-0.6,1.3-1.6c-0.3-0.8-0.6-0.9-1.2-0.6s-3.9,0.2-4.8,0.2c-1.4,0-0.5,0.4-0.1-1.1s5.5-1.8,3.7-1.8
|
||||||
|
l-0.6-1.9c0.9,0.3,1.8,0.6,2.7,0.8c1.1,0,0.1-1.8-1-1.8c-0.6,0-1-0.3-0.9-0.6s0.9-0.1,0.1-0.3s3.5-1.2,3.5-1.8l0.2-0.9
|
||||||
|
c2.8-2,3.1-4.2,2-3.7l2.9-2c0.4,0,0.8,0.3,0.8,0.8l1.4,1.5c-0.8,0.2-1.2,0.5-1,0.8c0.3,0.2,0.7,0.3,1,0.2c0.3-0.2,0.8,0.2,1,0.7
|
||||||
|
c0.4,0.6,1,0.9,1.7,0.9c1.8-0.1,1.7,1.9-0.1,3.2c-1.2,0.9-1.3,1-0.3,0.8c0.8-0.2,1.2-0.1,1.2,0.4s0.7,0.7,2.1,0.6l1.6,1.4
|
||||||
|
c-0.6,0.3-0.8,0.8-0.5,1.1s-0.5,0.8-1.7,1.2s-2.2,0.8-2.2,1s-0.5,0.7-1.1,1.1c-1,0.7-0.9,0.8,1.4,0.7c1.4-0.1,2.4-0.2,2.3-0.4
|
||||||
|
s1-0.7,2.5-1.3c2.6-1,2.7-1,2.4-0.1c-0.2,0.5-0.8,0.9-1.4,0.9c-0.6,0-1,0.4-1,1c0,0.7-0.3,1-1,0.8c-0.9-0.2-2.7,1.4-1.9,2.5l3.2,0.3
|
||||||
|
c1.4-0.1,4.5-0.8,4.4-0.9s-0.3,0.1,0.4-0.2c1.2-0.5,1.3-0.4,1,0.6c-0.3,1.3,1.1,2.4,3.5,2.7c3,0.3,2.1,0.7-1.5,0.6
|
||||||
|
c-2.1,0-2.8,2.5-6.4,2l-1.1,0.6c-0.8,0-1.5,0.7-1.4,1.5c0,0,0,0.1,0,0.1v0.5h4.5l1,0.7c3.2,0.1,7.1-1.9,7.3-1.3c0.6,2,2.9,0.7,3.1,1
|
||||||
|
s0.1,0.5-0.4,0.5s-0.7,0.4-0.4,1.2c0.5,1.4-0.2,1.6-2.5,0.7c-1.1-0.4-1.3-0.4-0.9,0.3c0.2,0.4-7.2,1.5-7.6,1.8
|
||||||
|
c-1.1,0.9,0.8,1.4,3.3,1c1.6-0.3,5.8-1.8,8-0.5c-0.1,0.7,4.9,0,5.5,1.3c-2,0.8-4.3,0.7-4.8,1.6c-0.9,1.6-4.6,0.3-5.3,3.6l0.6,1.6
|
||||||
|
c0,0.5-0.3,0.8-0.8,0.9c-0.4,0-0.6,0.2-0.3,0.5c0.4,0.3,1,0.4,1.5,0.2c0.9,0,1.8,0.2,2.5,0.7l1.2-1.3c1.4-1.2,3.1,0.1,5.4-1.4
|
||||||
|
c4.6-2,3.8,0.9,6.7,0.5c0.8,0.9-8.4,4.8-9.7,4.8c-1.1,0-1.1,0.1-0.2,0.5s1,0.5,0,0.6c-0.6,0-1.1,0-1.7,0c-0.3,0-0.9,0.5-0.8,0.9
|
||||||
|
l-5.5,1.4c-1.9,1.4-1.2,2.9,10.7,1c2-0.3,4-0.9,5.8-1.8c3-1.4,2.9,0.6,2.9,1.3c0,0.2-0.6,0.6-1.2,1s-0.9,0.6-0.5,0.4
|
||||||
|
s0.8,0.2,0.9,0.8c0.1,0.8-0.1,0.9-0.8,0.5c-1.2-0.7-2.1-0.1-1.1,0.8c0.6,0.5,0.5,0.7-0.4,0.7c-0.6,0-1.2,0.2-1.2,0.5
|
||||||
|
s-0.5,0.5-1.1,0.5c0,0-6.4,0.3-7.1,1.3s-2.2,0.4-2.9-0.2c-0.9-0.8-0.7,3.6,2.5,2.6c1.1-0.3,0.2-1.8,2.9-1.6s6.7,1.9,7.4,1.2
|
||||||
|
s8.1-1.6,8.5-2.2s1.5-2.5,2-1.7s0.4,4.2-1.1,4.6c-2.5,1.1-5,2.4-7.3,3.9c-1.4,1-3.1,1.5-4.8,1.4c-1.9-0.2-6,1.1-6,1.1s-0.8,1.7,0,2
|
||||||
|
s6.5,1.2,7.3,0.9s1.1-0.5,2.5-1.2s3.3-2.5,3.8-2.5c0.8-0.1,1.6-0.3,2.5-0.5c0.5,0.8,3,1,3.7,0.3c0.9-1,1.6-0.5,1.2,0.8
|
||||||
|
c-0.3,1-0.7,1.2-1.7,1.1c-0.7-0.2-1.5,0.1-1.8,0.8c-0.8,1.7-2.1,2.4-3.1,1.7c-0.7-0.5-0.7-0.4-0.3,0.4s0.3,0.9-0.6,0.6
|
||||||
|
c-1-0.1-2,0.2-2.8,0.9c-1,0.7-2.1,1.1-3.3,1.2c-0.9,0-1.6,0.2-1.6,0.5c0,0.9,6.4,1.4,7.5,0.7c0.3-0.2,0.6-0.4,1-0.4
|
||||||
|
c0.3,0,2.2-0.8,2.8-0.9c-0.3,0.6-0.4,1.2-0.5,1.8l-1.8,1.1l-3.8,2.7l-8.2,0.1l3.2,2.5c0.8,0.1,1.6,0.1,2.4,0
|
||||||
|
c1.3-0.2,2.6-0.4,3.9-0.4l4-2c2.8-0.8,10.4-0.8,7.2,1.7c-1.1,0.9-2.8,2.4-4.7,1.6s-3.8,2.7-8,3.2c-2.6,0.4-5.2,0.7-7.8,0.7
|
||||||
|
c-1.8-0.1,2,1.6,6.2,1.6s5,2.8,7.6,1.8s6.9-1.5,7.9-1.3s2.6,1.1-0.6,1.8s-4.8,1.9-7.5,2s-6.9-0.3-6.2,0.5s-3.2,0.1-2.3,0.9
|
||||||
|
s4.3,0.9,5.7,0.9s0.9,1,0.9,1 M214.4,176.3c1.4-0.4,1.4-0.5,0.3-0.7c-0.7-0.1-1.3-0.4-1.3-0.7s-0.3-0.4-0.9,0
|
||||||
|
c-1,0.5-2.1,0.5-4.4-0.1c-1.1-0.3-1.3-0.2-0.9,0.4c0.2,0.3,0.1,0.7-0.2,1c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.2-0.5,0.3,0.2,0.3
|
||||||
|
C210.6,176.8,213,176.7,214.4,176.3 M190.5,145.6c1.4-0.4,1.4-0.5,0.3-0.7c-0.7-0.1-1.3-0.4-1.3-0.7s-0.3-0.4-0.9,0
|
||||||
|
c-0.9,0.5-2.1,0.5-4.4-0.2c-1.1-0.3-1.3-0.2-0.9,0.4c0.2,0.3,0.1,0.7-0.2,0.9c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.2-0.5,0.3,0.2,0.3
|
||||||
|
C186.7,146.1,189.1,146,190.5,145.6 M255.4,170.5c1.5-0.2,1.7-1.1,0.2-1.1c-0.6,0-1.1-0.2-1.1-0.5c0-0.7-5.2-0.4-6.4,0.4
|
||||||
|
c-0.8,0.5-1.2,0.5-2-0.3s-1-0.8-0.6,0c0.2,0.5,0.1,0.9-0.4,0.9s-0.8,0.2-0.8,0.5C244.4,170.8,252.5,170.9,255.4,170.5 M251.8,156.6
|
||||||
|
c1.5-0.2,1.7-1.1,0.2-1.1c-0.6,0-1.1-0.2-1.1-0.5c0-0.7-5.2-0.4-6.4,0.4c-0.8,0.5-1.2,0.5-2-0.2s-1-0.8-0.6,0
|
||||||
|
c0.2,0.5,0.1,0.9-0.4,0.9s-0.8,0.2-0.8,0.5C240.8,156.9,248.9,157,251.8,156.6 M191.1,172.6c0.8-0.4,0.2-0.6-2.1-1
|
||||||
|
c-2.5-0.4-3.2-0.4-3.7,0.1s-0.8,0.5-1.7,0c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3
|
||||||
|
c0.5-0.4,1.3-0.4,1.8,0C189.5,173.2,189.8,173.2,191.1,172.6 M241.4,172.3c0.8-0.3,0.2-0.6-2.1-1c-2.4-0.5-3.2-0.4-3.7,0
|
||||||
|
s-0.8,0.5-1.7,0c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0
|
||||||
|
C239.7,172.8,240,172.8,241.4,172.3 M226.7,93.6c0.8-0.3,0.2-0.6-2.1-1c-2.5-0.5-3.2-0.4-3.7,0.1s-0.8,0.5-1.7,0
|
||||||
|
c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0C225,94.2,225.3,94.2,226.7,93.6
|
||||||
|
M234.2,178.1c0.8-0.3,0.2-0.6-2.1-1c-2.4-0.5-3.2-0.4-3.7,0.1s-0.8,0.5-1.7,0c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1
|
||||||
|
c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0C232.5,178.7,232.8,178.7,234.2,178.1 M204,126.1c6.5,0.4,10.8-2.1,5.6-3.2
|
||||||
|
c-0.7-0.2-1.2,0.1-1.3,0.6s-0.6,0.8-1.7,0.4c-0.9-0.2-1.6-0.2-1.7,0.1s-0.4,0.3-0.7,0.1c-0.3-0.2-0.8-0.2-1.1,0
|
||||||
|
c-0.6,0.4-2.6-0.4-3.2-1.3c-0.2-0.4-0.4-0.4-0.6,0s0.3,0.8,0.8,1.1s0.7,0.7,0.5,0.9s-0.8,0.1-1.2-0.3c-0.5-0.4-1.2-0.6-1.9-0.4
|
||||||
|
c-0.9,0.2-0.9,0.3,0.2,0.6s1.2,0.3,0.2,0.6C196.5,125.5,198.5,125.8,204,126.1 M242.2,143.9c6.5,0.4,10.8-2.1,5.6-3.2
|
||||||
|
c-0.7-0.1-1.2,0.1-1.3,0.6s-0.6,0.7-1.7,0.4c-0.9-0.2-1.6-0.2-1.7,0.1s-0.4,0.3-0.7,0.1c-0.3-0.2-0.8-0.2-1.1,0
|
||||||
|
c-0.6,0.4-2.6-0.4-3.2-1.4c-0.3-0.4-0.4-0.4-0.6,0s0.3,0.8,0.8,1.1s0.7,0.7,0.4,0.9s-0.8,0.1-1.2-0.3c-0.5-0.4-1.2-0.6-1.9-0.4
|
||||||
|
c-0.9,0.2-0.9,0.3,0.2,0.6s1.2,0.4,0.2,0.6C234.7,143.3,236.7,143.7,242.2,143.9 M194,166.8c6.5,0.1,10.7-2.6,5.5-3.5
|
||||||
|
c-0.7-0.1-1.2,0.2-1.2,0.7s-0.5,0.8-1.6,0.5c-0.9-0.2-1.6-0.1-1.7,0.1s-0.4,0.3-0.7,0.1c-0.3-0.2-0.8-0.2-1.1,0
|
||||||
|
c-0.6,0.5-2.6-0.3-3.2-1.2c-0.3-0.4-0.5-0.4-0.6,0s0.3,0.8,0.9,1.1s0.8,0.6,0.5,0.9s-0.8,0.2-1.3-0.2c-0.5-0.4-1.2-0.5-1.9-0.3
|
||||||
|
c-0.9,0.2-0.9,0.3,0.3,0.5s1.2,0.3,0.3,0.6C186.5,166.4,188.6,166.6,194,166.8"/>
|
||||||
|
<path class="st1" d="M490,174.9c-0.2,0.4-7.7,1.1-8.9,0.6c-1.1-0.3-2.3-0.4-3.5-0.2c-1.8,0.2-3.6,0.4-5.4,0.4c-3.7,0-4,0.6-0.7,1.1
|
||||||
|
c1.2,0.2,12,1.9,12.4,2.3c0.7,0.4,1.4,0.7,2.2,0.7c0.7,0,1.4,0.2,1.4,0.5s-0.7,0.5-1.8,0.3s-1.8,0-1.8,0.2s-0.3,0.4-0.7,0.4
|
||||||
|
s-0.7-0.5-0.7-1.1l-0.7,1.2l-0.5-1.2c-0.6,0.6-11.1-0.2-11.6-0.4c-1.2-0.3-1.4,0.5-0.1,0.9c0.5,0.2,0.1,0.2-0.8,0.1
|
||||||
|
c-1.3-0.2-1.6,0-1.3,0.5s0.1,0.6-0.5,0.4c-1.5-0.6-2.7-0.6-2.7,0.1c0,1.1-2,0.9-2.5-0.2c-0.3-0.7-1-0.9-2.6-0.8
|
||||||
|
c-1.2,0.1-2.1,0-2.1-0.2l-1.6-0.6c-1.5-0.4-2.5,1.1-3,4.1c-0.3,1.8-0.9,71.9-0.7,73.8L446,258c0.8-2.7,0.2-73.1,0.3-75.1
|
||||||
|
s0.1-4.4-3.9-3.8c-3,1.2-14.1,2.4-22.5,2c-9.5-1.6-5-2.2-0.3-1.8c2,0.6,8.6-0.3,6-0.1c12-2.9-0.6-3-1.3-3.2s-4.5,0.9-5.2,1
|
||||||
|
s-1.1,0-1.1-0.6c0-0.8-0.6-0.9-4.6-0.8c-3.6,0-4.4-0.1-3.5-0.5c1.2-0.6,0.6-1.9-0.6-1.4c-0.4,0.2-1.4-0.2-2.2-0.9
|
||||||
|
c-0.6-0.5-1.2-0.8-1.9-1c-0.3,0.1-0.5-0.3-0.5-0.7c0-1.1-2.2-2.3-3.6-1.9c-0.6,0.2-1.8-0.5-3-1.5c-1.8-1.6-1.9-1.7-0.4-1.4
|
||||||
|
c0.8,0.2,2.4,0.4,3.5,0.6s2.5,0.3,3.1,0.5c0.7,0.1,1.4-0.1,2-0.5c0.7-0.6,1.2-0.6,3.2-0.1c1.2,0.4,2.5,0.5,3.8,0.2
|
||||||
|
c1.5-0.4,0.9-0.6-1.6-0.5c-1,0-2-0.3-2.8-0.9c-0.9-0.8-2.6-2.3-3.3-1.9c-1.1,0.6-3.4,0.2-2.8-0.5c0.2-0.2-0.6-0.8-1.9-1.2
|
||||||
|
s-1-4.3-0.6-4.3s-0.1-0.5-0.9-1.1c-0.7-0.5-1.3-1.2-1.5-2.1c0-0.9,0.1-0.9,0.9-0.2c1.5,1.4,6.6,6,9.5,5.4c1.4-0.3,13.2,0.1,15.1-3.2
|
||||||
|
c1.3-2.2-14.8-1.8-15.8-1.1c-0.8,0.5-1.6-1.8-1.6-2.4c0-0.2,0.3-0.6,0.7-0.7c0.8-0.3-1.8-1.5-3-1.8c-0.4-0.1-0.8-1.1-1-2.4l-0.4-2.2
|
||||||
|
l3,2c1.8,1.2,3.7,2.1,5.7,2.8c2.4,0.7,8.6-0.8,9-1.5c0.3-0.5-6.6-2.1-7.3-1.9c-2.9-1.4-1.8-0.4-3-2.8c0.7-0.3-1.1-1.3-2.4-1.1
|
||||||
|
c-1.6,0.3-1.9-1.7-1.9-2.5c0-1.4-3.5-3.2-3-4.5l2-0.1c3.6,2.6,10.6,4.6,18.1,2.3c0.5-0.1,3.7,0.3-0.6-0.5c-0.4,0.1-0.8-0.1-1-0.4
|
||||||
|
c-0.2-0.4,0.1-0.8,0.6-1s1-0.5,1-0.8s-4.5,0-5.1,0.2c-1.4,0.4-9.8-4-8.7-4.5c1.5-0.6,0.8-1.3-0.8-0.7c-1.3,0.5-1.5,0.4-1.1-0.2
|
||||||
|
c0.2-0.3,0.1-0.7-0.2-0.9c-0.1,0-0.1-0.1-0.2-0.1c-0.5-0.1-0.4-0.3,0.3-0.3s1.1-0.4,1.1-0.8s-0.4-0.7-0.9-0.5
|
||||||
|
c-0.5,0.1-1-0.1-1.3-0.5c-0.8-1.5,0.5-1.7,2.8-0.4c1,0.5,2,0.9,3.1,1.2c0.8,0.2,1.6,0.5,2.4,0.9c2.1,1,7.7,1.4,11.2,2.6
|
||||||
|
c-0.2-0.2,2.2,0,2.9,0c1.1,0,0.9-1.3-0.5-2c-0.9-0.4-7.7-3-7.7-3.4s-0.9-0.7-2-0.8s-2-0.4-2-0.9s-0.8-0.8-1.6-0.9s-1.4-0.4-1.2-0.6
|
||||||
|
s0-0.4-0.4-0.4s-0.6-0.2-0.4-0.5l11,2.2c0.5-0.2-0.4-2.9-1.1-3.3s-5-0.5-4.9-0.8s-0.2-0.8-0.9-1c-1.1-0.3-1.1-0.4-0.2-0.8
|
||||||
|
s0.9-0.5-0.2-0.5s-1.1-0.2-0.4-1c1.1-1.3,10.4,2.1,10.9,3.4c2,0.1-5.2-5-4.7-5c1.5,0.4,2.9,1,4.2,1.8c1,0.7,1.7,0.7,1.7,0.4
|
||||||
|
s4.2,1,5.3,1.3s0.3-1.7,1.5-2c2.3-0.7-0.2-2.7-2.5-2.7c-1,0-2.6,0.8-3.3,0.2s-1.2-1-1.3-0.9s-0.8,0-1.6-0.4
|
||||||
|
c-1.3-0.5-1.3-0.6-0.2-0.6c1.6,0,1.4-2.1-0.4-3.5c-0.7-0.5-0.9-1-0.5-1s0.5-0.4,0.2-0.9c-0.4-0.8-0.3-0.8,0.9-0.1
|
||||||
|
c0.7,0.4,2,1.2,2.9,1.8c4.9,3.2,11,4.6,12,3.6c0.4-0.4,0.4-1.7-0.5-1.4c-0.7,0.2-1.2,0.1-1.2-0.1s-3.8-1.1-4.5-1.2s-1.4-0.7-1.4-1.3
|
||||||
|
c0-1-2.7-0.6-4.3-0.3c-0.4,0.1-0.4-0.1,0.1-0.5c0.6-0.4,0.4-0.8-1-1.7c-1-0.6-1.6-1.4-1.4-1.7s0.1-0.5-0.4-0.5
|
||||||
|
c-0.6,0-0.7-0.2-0.1-0.5s1.5-0.1,3.2,1c2.7,1.7,5.1,2,6,1.3c0.6-0.4-0.8-2.3-2-2.3c-1.6,0-2.8-3.4-2-4.5c-0.6-0.7,2.1,0.3,4.4,1.1
|
||||||
|
c1.5,0.5,3.6-1,5.3-0.9c2.9,0.3,1.7-0.6,1.3-1.6c-0.3-0.8-0.6-0.9-1.2-0.6s-3.9,0.2-4.8,0.2c-1.4,0-0.5,0.4-0.1-1.1s5.5-1.8,3.7-1.8
|
||||||
|
l-0.6-1.9c0.9,0.3,1.8,0.6,2.7,0.8c1.1,0,0.1-1.8-1-1.8c-0.6,0-1-0.3-0.9-0.6s0.9-0.2,0.1-0.3s3.5-1.2,3.5-1.8l0.2-0.9
|
||||||
|
c2.8-2,3.1-4.2,2-3.7l2.9-2c0.4,0,0.8,0.3,0.8,0.7l1.4,1.5c-0.8,0.2-1.3,0.5-1,0.8c0.3,0.2,0.7,0.3,1,0.2c0.3-0.2,0.8,0.2,1,0.7
|
||||||
|
c0.3,0.6,1,0.9,1.7,0.9c1.8-0.1,1.7,1.9-0.1,3.2c-1.2,0.9-1.3,1-0.3,0.8c0.8-0.2,1.2-0.1,1.2,0.4s0.7,0.7,2.1,0.6l1.6,1.4
|
||||||
|
c-0.5,0.3-0.8,0.8-0.5,1.1s-0.5,0.8-1.7,1.2s-2.2,0.8-2.2,1s-0.5,0.7-1.1,1.1c-1,0.7-0.9,0.8,1.4,0.7c1.4-0.1,2.4-0.2,2.3-0.4
|
||||||
|
s1-0.7,2.5-1.3c2.6-1,2.7-1,2.4-0.1c-0.2,0.5-0.8,0.9-1.4,0.9c-0.6,0-1,0.4-1,1c0,0.7-0.3,1-1,0.8c-0.9-0.2-2.7,1.4-1.9,2.5l3.2,0.4
|
||||||
|
c1.5-0.1,3-0.4,4.4-0.9c-0.1-0.2-0.3,0.1,0.4-0.2c1.2-0.5,1.3-0.4,1,0.6c-0.3,1.3,1.1,2.4,3.5,2.6c3,0.3,2.1,0.7-1.5,0.6
|
||||||
|
c-2.1-0.1-2.8,2.5-6.4,2l-1.1,0.6c-0.8,0-1.5,0.7-1.4,1.5c0,0,0,0.1,0,0.1v0.5h4.5l1,0.6c3.2,0.1,7.1-1.9,7.3-1.3
|
||||||
|
c0.6,2,2.9,0.7,3.1,1s0.1,0.5-0.4,0.5s-0.7,0.4-0.4,1.2c0.5,1.4-0.2,1.6-2.5,0.8c-1.1-0.4-1.3-0.4-1,0.3c0.2,0.4-7.2,1.5-7.6,1.8
|
||||||
|
c-1.1,0.9,0.8,1.4,3.3,1c1.6-0.3,5.8-1.8,8-0.5c-0.2,0.7,4.9,0,5.5,1.3c-2,0.8-4.3,0.7-4.8,1.6c-0.9,1.6-4.6,0.3-5.3,3.6l0.6,1.6
|
||||||
|
c0,0.5-0.3,0.8-0.8,0.9c-0.4,0-0.5,0.2-0.3,0.5c0.4,0.3,1,0.4,1.5,0.2c0.9,0,1.8,0.2,2.5,0.7l1.2-1.3c1.4-1.2,3.1,0.1,5.4-1.4
|
||||||
|
c4.6-2,3.8,0.9,6.7,0.5c0.8,0.9-8.4,4.8-9.7,4.8c-1.1,0-1.1,0.1-0.2,0.5s1,0.5,0,0.6c-0.6,0-1.1,0-1.7,0c-0.3,0-0.9,0.5-0.8,0.9
|
||||||
|
l-5.5,1.4c-2,1.4-1.3,2.9,10.7,1c1.9-0.4,3.7-1,5.4-1.9c3-1.4,2.9,0.6,2.9,1.3c0,0.2-0.6,0.6-1.3,1s-0.9,0.6-0.5,0.5
|
||||||
|
s0.8,0.2,0.9,0.8c0.1,0.8-0.1,0.9-0.8,0.5c-1.2-0.7-2.1-0.1-1.1,0.8c0.6,0.5,0.5,0.7-0.4,0.7c-0.6,0-1.2,0.2-1.2,0.5
|
||||||
|
s-0.5,0.5-1.1,0.5c0,0-6.4,0.3-7.1,1.3s-2.1,0.4-2.9-0.2c-0.9-0.8-0.7,3.6,2.5,2.6c1.1-0.3,0.2-1.8,2.9-1.6s6.7,1.9,7.4,1.2
|
||||||
|
s8.1-1.6,8.5-2.2s1.6-2.5,2-1.7s0.4,4.2-1.1,4.6c-2.5,1.1-5,2.4-7.3,3.9c-1.4,1-3.1,1.5-4.8,1.4c-1.9-0.2-6,1.1-6,1.1
|
||||||
|
s-0.8,1.7,0,1.9s6.5,1.2,7.3,0.9s1.1-0.5,2.5-1.2s3.4-2.5,3.8-2.5c0.8-0.1,1.7-0.3,2.5-0.5c0.5,0.8,3,1,3.7,0.2
|
||||||
|
c0.9-1,1.6-0.5,1.2,0.8c-0.2,0.9-0.7,1.2-1.7,1.1c-0.7-0.2-1.5,0.1-1.8,0.8c-0.8,1.7-2.1,2.4-3.1,1.7c-0.7-0.4-0.7-0.4-0.4,0.4
|
||||||
|
s0.3,0.9-0.6,0.6c-1-0.1-2,0.2-2.8,0.9c-1,0.7-2.1,1.1-3.3,1.2c-0.9,0-1.6,0.2-1.6,0.4c0,0.9,6.4,1.4,7.5,0.7c0.3-0.2,0.6-0.3,1-0.4
|
||||||
|
c0.2,0,2.2-0.8,2.8-0.9c-0.3,0.6-0.4,1.2-0.5,1.8l-1.8,1.1l-3.8,2.7l-8.2,0.1l3.2,2.5c0.8,0.1,1.6,0.1,2.4,0c1.3-0.2,2.6-0.4,4-0.4
|
||||||
|
l4-2.1c2.8-0.8,10.4-0.8,7.2,1.7c-1.1,0.9-2.7,2.4-4.7,1.6s-3.8,2.7-8,3.2c-2.6,0.4-5.2,0.7-7.8,0.7c-1.8-0.1,2,1.6,6.2,1.6
|
||||||
|
s5,2.8,7.6,1.8s6.9-1.5,7.9-1.3s2.6,1-0.6,1.8s-4.8,1.9-7.5,2s-6.9-0.3-6.2,0.6s-3.2,0.1-2.3,0.9s4.3,0.9,5.8,0.9s0.8,1,0.8,1
|
||||||
|
M444,176c1.4-0.4,1.4-0.5,0.3-0.7c-0.7-0.1-1.3-0.4-1.3-0.7s-0.3-0.4-0.9,0c-1,0.5-2.1,0.5-4.5-0.1c-1.1-0.3-1.3-0.2-0.9,0.4
|
||||||
|
c0.2,0.3,0.1,0.8-0.3,0.9c0,0-0.1,0-0.2,0.1c-0.5,0.2-0.5,0.3,0.2,0.3C440.2,176.5,442.6,176.4,444,176 M420,145.4
|
||||||
|
c1.4-0.4,1.4-0.5,0.3-0.7c-0.7-0.1-1.3-0.4-1.3-0.7s-0.3-0.4-0.9,0c-1,0.5-2.1,0.5-4.5-0.1c-1.1-0.3-1.3-0.2-0.9,0.4
|
||||||
|
c0.2,0.3,0.1,0.7-0.2,0.9c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.2-0.5,0.3,0.2,0.3C416.2,145.9,418.6,145.8,420,145.4 M484.9,170.3
|
||||||
|
c1.5-0.2,1.7-1.1,0.2-1.1c-0.6,0-1.1-0.2-1.1-0.5c0-0.7-5.2-0.4-6.4,0.4c-0.8,0.5-1.2,0.5-2-0.3s-1-0.8-0.6,0
|
||||||
|
c0.3,0.5,0.1,0.9-0.4,0.9s-0.8,0.2-0.8,0.5C473.9,170.6,482,170.7,484.9,170.3 M481.3,156.4c1.5-0.2,1.7-1.1,0.2-1.1
|
||||||
|
c-0.6,0-1.1-0.2-1.1-0.5c0-0.7-5.2-0.4-6.4,0.4c-0.8,0.5-1.2,0.5-2-0.3s-1-0.8-0.5,0c0.2,0.5,0.1,0.9-0.4,0.9s-0.8,0.2-0.8,0.5
|
||||||
|
C470.3,156.7,478.4,156.8,481.3,156.4 M420.6,172.4c0.8-0.3,0.2-0.6-2.1-1c-2.5-0.4-3.2-0.4-3.7,0s-0.8,0.5-1.7,0
|
||||||
|
c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0C419,173,419.3,173,420.6,172.4
|
||||||
|
M470.9,172.1c0.8-0.4,0.2-0.6-2.1-1c-2.5-0.5-3.2-0.4-3.7,0s-0.8,0.5-1.7,0c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1
|
||||||
|
c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0C469.2,172.6,469.5,172.6,470.9,172.1 M456.3,93.5c0.8-0.3,0.2-0.6-2.1-1
|
||||||
|
c-2.5-0.4-3.2-0.4-3.7,0.1s-0.8,0.5-1.7,0c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3
|
||||||
|
c0.5-0.4,1.3-0.4,1.8,0C454.6,94,454.9,94.1,456.3,93.5 M463.7,178c0.7-0.3,0.2-0.6-2.1-1c-2.5-0.5-3.2-0.4-3.7,0.1s-0.8,0.5-1.7,0
|
||||||
|
c-0.6-0.4-1.3-0.5-2-0.4c-0.5,0.1,0.2,0.6,1.6,1c1.8,0.6,2.7,0.7,3.4,0.3c0.5-0.4,1.3-0.4,1.8,0C462,178.6,462.3,178.6,463.7,178
|
||||||
|
M433.5,125.9c6.5,0.3,10.8-2.1,5.6-3.2c-0.7-0.1-1.2,0.1-1.3,0.6s-0.6,0.7-1.7,0.4c-0.9-0.2-1.6-0.2-1.7,0.1s-0.4,0.3-0.7,0.1
|
||||||
|
c-0.3-0.2-0.8-0.2-1.1,0c-0.6,0.4-2.6-0.4-3.2-1.4c-0.3-0.4-0.5-0.4-0.6,0s0.3,0.8,0.8,1.1s0.7,0.7,0.5,0.9s-0.8,0.1-1.2-0.3
|
||||||
|
c-0.5-0.4-1.2-0.6-1.9-0.4c-0.9,0.2-0.9,0.3,0.3,0.5s1.2,0.3,0.2,0.6C426,125.3,428.1,125.6,433.5,125.9 M471.7,143.8
|
||||||
|
c6.5,0.4,10.8-2.1,5.6-3.2c-0.7-0.1-1.2,0.1-1.3,0.6s-0.5,0.7-1.7,0.4c-0.9-0.2-1.6-0.2-1.7,0.1s-0.4,0.3-0.7,0.1
|
||||||
|
c-0.3-0.2-0.8-0.2-1.1,0c-0.6,0.4-2.6-0.4-3.2-1.4c-0.3-0.4-0.5-0.4-0.6,0s0.3,0.8,0.8,1.1s0.7,0.7,0.5,0.9s-0.8,0.1-1.2-0.3
|
||||||
|
c-0.5-0.4-1.2-0.6-1.9-0.4c-0.9,0.2-0.9,0.3,0.3,0.6s1.2,0.3,0.2,0.6C464.2,143.1,466.3,143.5,471.7,143.8 M423.6,166.6
|
||||||
|
c6.5,0.1,10.7-2.6,5.5-3.5c-0.7-0.1-1.2,0.2-1.2,0.7s-0.5,0.8-1.6,0.5c-0.9-0.2-1.6-0.1-1.7,0.1s-0.4,0.3-0.7,0.1
|
||||||
|
c-0.3-0.2-0.8-0.2-1.1,0c-0.6,0.5-2.6-0.3-3.2-1.2c-0.3-0.4-0.5-0.4-0.5,0s0.3,0.8,0.9,1.1s0.8,0.6,0.5,0.9s-0.8,0.2-1.3-0.2
|
||||||
|
c-0.5-0.4-1.2-0.5-1.9-0.3c-0.9,0.2-0.9,0.3,0.3,0.5s1.2,0.3,0.3,0.5C416,166.2,418.1,166.5,423.6,166.6"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 34 KiB |
BIN
img/scan0018.pdf
Normal file
BIN
img/vineyard-0.jpg
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
img/vineyard-1.jpg
Normal file
|
After Width: | Height: | Size: 147 KiB |
BIN
img/vineyard-2.jpg
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
img/vineyard-3.jpg
Normal file
|
After Width: | Height: | Size: 184 KiB |
165
index.html
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Pine Creek HOA</title>
|
||||||
|
|
||||||
|
<!-- Bootstrap backup -->
|
||||||
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||||||
|
<!-- Lato Font embed -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet">
|
||||||
|
<!-- Libre Bakersville Font embed -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap" rel="stylesheet">
|
||||||
|
<!-- Current project CSS file -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/main.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav id="mainNav" class="main-nav">
|
||||||
|
<div class="container">
|
||||||
|
<div class="mobile-nav">
|
||||||
|
<a class="mobile-nav--logo" href="#"><img src="img/logo.svg" alt="Pine Creek Logo"></a>
|
||||||
|
<div id="hamburger" class="hamburger">
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li><a class="nav-item" href="#welcome">Welcome</a></li>
|
||||||
|
<li><a class="nav-item" href="#vineyard">The Vineyard</a></li>
|
||||||
|
<li><a class="nav-item" href="#custom-homes">Custom Homes</a></li>
|
||||||
|
<li class="main-nav--logo"><a href="#top"><img src="img/logo.svg" alt="Pine Creek Logo"></a></li>
|
||||||
|
<li><a class="nav-item" href="#kannapolis">Kannapolis</a></li>
|
||||||
|
<li><a class="nav-item" href="#home-owners">Home Owners</a></li>
|
||||||
|
<li><a class="nav-item" href="#contact">Contact Us</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<main class="page-content">
|
||||||
|
|
||||||
|
<!-- Anchor target for Welcome/Home -->
|
||||||
|
<div id="top"></div>
|
||||||
|
|
||||||
|
<div class="hero">
|
||||||
|
<div style="padding:56.25% 0 0 0;position:relative;">
|
||||||
|
<video playsinline muted autoplay loop preload="auto" style="position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;" aria-hidden="true">
|
||||||
|
<source src="img/intro_short.mp4" type="video/mp4">
|
||||||
|
<!-- Fallback text -->
|
||||||
|
Your browser does not support HTML5 video. Download the video <a href="img/intro_short.mp4">here</a>.
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section id="welcome" class="container my-5">
|
||||||
|
<div class="hero-text row py-5">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h1>Welcome to Pine Creek</h1>
|
||||||
|
<h5>Kannapolis' Premier Gated community</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mt-3 mt-md-0">
|
||||||
|
<p>Pine Creek is one of the Greater Charlotte Area’s premier gated communities offering custom built homes in North Carolina’s Cabarrus County.</p>
|
||||||
|
<p>The neighborhood features elegant custom built homes based on French country designs and influences, and homes range in size from 4,500 to over 11,000 square feet. Each home is carefully positioned on lots of one acre or more in order to preserve the natural beauty of the original landscape and to protect each homeowner’s privacy.</p>
|
||||||
|
<p>Create lifelong memories with your family in a luxury, custom home in a secure and quiet community. Welcome home to Pine Creek.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section id="vineyard" class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="col-md-5">
|
||||||
|
<h3>The Vineyard</h3>
|
||||||
|
<p>A subsect of Pine Creek, The Vineyard is its own haven. Enclosed by lush grape vines and woods, The Vineyard custom homes feature Spanish/Tuscan styled architectural designs.</p>
|
||||||
|
<a class="btn btn-primary" href="#">Learn More</a>
|
||||||
|
</div>
|
||||||
|
<div class="ml-auto col-md-6">
|
||||||
|
<div id="slidesVineyard" class="slides vineyard">
|
||||||
|
<img class="slides-img" src="img/vineyard-0.jpg" onerror="imgVineyardError(this)">
|
||||||
|
<div class="slides-arrow out">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="15 18 9 12 15 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
<div class="slides-arrow">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="9 18 15 12 9 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section id="custom-homes" class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="ml-auto col-md-5 order-md-2">
|
||||||
|
<h3>Build Your Custom Home in Pine Creek</h3>
|
||||||
|
<p>While Pine Creek does not have a list of pre-approved custom home builders in order to provide owners with more flexibility in who builds their future custom home, Pine Creek Homeowners’ Association does evaluate proposed plans in accordance to the guidance in Pine Creek Covenants.</p>
|
||||||
|
<p>The primary focus of this approval process is to ensure all proposed home designs, architectural details and landscape designs align with the existing custom homes in Pine Creek. The HOA is pleased to provide feedback to a potential buyer on home plan renderings to confirm your vision would be in harmony with the style of the neighborhood.</p>
|
||||||
|
<a class="btn btn-primary" href="#">View open lots</a>
|
||||||
|
<a class="btn btn-light" href="#">Contact us</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div id="slidesHouse" class="slides house">
|
||||||
|
<img class="slides-img" src="img/house-0.jpg" onerror="imgHouseError(this)">
|
||||||
|
<div class="slides-arrow out">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="15 18 9 12 15 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
<div class="slides-arrow">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section id="kannapolis" class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h3>Call Kannapolis, NC ‘Home’</h3>
|
||||||
|
<p>Kannapolis, North Carolina is a family-oriented town filled with Southern charm. Kannapolis was originally developed in 1906 to be the home to Cannon Mills. Even though the mill is no longer open, Kannapolis has exploded with residential and business development and has become home to families desiring to live close to uptown with the small town, country feel.</p>
|
||||||
|
<p>The town is conveniently located; right off of I-85 and within 30 minutes of uptown Charlotte and Charlotte Douglas International Airport. With growing businesses, a vast array of shops and restaurants, a beautiful downtown, Cabarrus County schools and highly sought after private schools, and the grandeur of the NC Research Campus, Kannapolis is a wonderful place to call home.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ml-auto col-md-6">
|
||||||
|
<div class="slides">
|
||||||
|
<img class="slides-img" src="img/kannapolis-nc.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section id="home-owners" class="container my-5">
|
||||||
|
<div class="py-5">
|
||||||
|
<div class="pb-4 text-center">
|
||||||
|
<h3>Pine Creek Homeowners’ Association</h3>
|
||||||
|
</div>
|
||||||
|
<p>The Pine Creek Homeowners’ Association consists of board members voted into position by homeowners within the neighborhood. The Homeowner’s Association is responsible for approving proposed building plans and ongoing maintenance of homes within the neighborhood to ensure homes are built and managed to meet the aesthetics of Pine Creek and the Vineyards.</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Simple contact anchor (nav -> Contact Us) -->
|
||||||
|
<section id="contact" class="container my-4">
|
||||||
|
<div class="py-3 text-center">
|
||||||
|
<h4>Contact Us</h4>
|
||||||
|
<p>Email: <a href="mailto:info@pinecreekhoa.example">info@pinecreekhoa.example</a></p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-- Current project JS file -->
|
||||||
|
<script type="text/javascript" src="js/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
178
js/main.js
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
const hamburger = document.getElementById('hamburger'),
|
||||||
|
mainNav = document.querySelector('#mainNav ul'),
|
||||||
|
navItem = document.getElementsByClassName('nav-item')
|
||||||
|
|
||||||
|
// Nav toggle, open, close
|
||||||
|
const toggleNav = () => {
|
||||||
|
!(mainNav.classList.contains('in')) ? (
|
||||||
|
mainNav.classList.add('in'),
|
||||||
|
hamburger.classList.add('in')
|
||||||
|
) : (
|
||||||
|
mainNav.classList.remove('in'),
|
||||||
|
hamburger.classList.remove('in')
|
||||||
|
)
|
||||||
|
},
|
||||||
|
openNav = () => mainNav.classList.add('in'),
|
||||||
|
closeNav = () => mainNav.classList.remove('in')
|
||||||
|
|
||||||
|
// Hamburger menu icon click
|
||||||
|
hamburger.onclick = toggleNav
|
||||||
|
|
||||||
|
// Nav items on click: close nav (mobile) and smooth-scroll to anchor targets
|
||||||
|
for (let i = 0; i < navItem.length; i++) {
|
||||||
|
navItem[i].onclick = function (e) {
|
||||||
|
// prevent default anchor jump; we'll smooth-scroll with offset instead
|
||||||
|
e.preventDefault()
|
||||||
|
// close mobile nav if open
|
||||||
|
closeNav()
|
||||||
|
|
||||||
|
const href = this.getAttribute('href') || ''
|
||||||
|
if (href.startsWith('#')) {
|
||||||
|
const target = document.querySelector(href)
|
||||||
|
if (target) {
|
||||||
|
// compute offset to account for fixed header
|
||||||
|
const header = document.getElementById('mainNav')
|
||||||
|
const headerHeight = header ? header.offsetHeight : 0
|
||||||
|
const extra = 8 // small spacing under header
|
||||||
|
const targetY = window.pageYOffset + target.getBoundingClientRect().top - headerHeight - extra
|
||||||
|
|
||||||
|
window.scrollTo({ top: targetY, behavior: 'smooth' })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// fallback: follow the link if it's not an in-page anchor
|
||||||
|
if (href) window.location.href = href
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the page is loaded with a hash or the hash changes, adjust scroll to account for the fixed header
|
||||||
|
const scrollToHashWithOffset = (hash) => {
|
||||||
|
if (!hash) return
|
||||||
|
const target = document.querySelector(hash)
|
||||||
|
if (!target) return
|
||||||
|
const header = document.getElementById('mainNav')
|
||||||
|
const headerHeight = header ? header.offsetHeight : 0
|
||||||
|
const extra = 8
|
||||||
|
const targetY = window.pageYOffset + target.getBoundingClientRect().top - headerHeight - extra
|
||||||
|
// Use a short timeout to allow browser default jump to complete before adjusting
|
||||||
|
setTimeout(() => window.scrollTo({ top: targetY, behavior: 'smooth' }), 50)
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener('load', () => scrollToHashWithOffset(location.hash))
|
||||||
|
window.addEventListener('hashchange', () => scrollToHashWithOffset(location.hash))
|
||||||
|
|
||||||
|
// light auth
|
||||||
|
window.onload = () => {
|
||||||
|
const board = document.getElementById('boardPage'),
|
||||||
|
owner = document.getElementById('ownerPage')
|
||||||
|
|
||||||
|
if (board || owner) {
|
||||||
|
const response = prompt('Please enter the password.')
|
||||||
|
|
||||||
|
switch (response) {
|
||||||
|
case '12345':
|
||||||
|
console.log('Board Member')
|
||||||
|
break
|
||||||
|
case 'abcde':
|
||||||
|
console.log('Owner')
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
console.log('Access Denied')
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Slides
|
||||||
|
|
||||||
|
const slidesVineyard = document.getElementById('slidesVineyard'),
|
||||||
|
slidesVineyardLeft = document.querySelector('#slidesVineyard .slides-arrow:nth-last-child(2)'),
|
||||||
|
slidesVineyardRight = document.querySelector('#slidesVineyard .slides-arrow:last-child'),
|
||||||
|
slidesVineyardImg = document.querySelector('#slidesVineyard .slides-img'),
|
||||||
|
slidesHouse = document.getElementById('slidesHouse'),
|
||||||
|
slidesHouseLeft = document.querySelector('#slidesHouse .slides-arrow:nth-last-child(2)'),
|
||||||
|
slidesHouseRight = document.querySelector('#slidesHouse .slides-arrow:last-child'),
|
||||||
|
slidesHouseImg = document.querySelector('#slidesHouse .slides-img')
|
||||||
|
|
||||||
|
let vineyardImgs = 0
|
||||||
|
|
||||||
|
slidesVineyardRight.onclick = () => {
|
||||||
|
vineyardImgs = vineyardImgs + 1
|
||||||
|
slidesVineyardImg.classList.add('out')
|
||||||
|
setTimeout(() => {
|
||||||
|
slidesVineyardImg.setAttribute('src', 'img/vineyard-' + vineyardImgs + '.jpg')
|
||||||
|
slidesVineyardImg.classList.remove('out')
|
||||||
|
if (vineyardImgs >= 1) {
|
||||||
|
slidesVineyardLeft.classList.remove('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
}
|
||||||
|
|
||||||
|
slidesVineyardLeft.onclick = () => {
|
||||||
|
slidesVineyardImg.classList.add('out')
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
slidesVineyardImg.classList.remove('out')
|
||||||
|
if (vineyardImgs > 0) {
|
||||||
|
vineyardImgs = vineyardImgs - 1
|
||||||
|
slidesVineyardImg.setAttribute('src', 'img/vineyard-' + vineyardImgs + '.jpg')
|
||||||
|
}
|
||||||
|
if (vineyardImgs < 1) {
|
||||||
|
slidesVineyardLeft.classList.add('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
}
|
||||||
|
|
||||||
|
const imgVineyardError = (image) => {
|
||||||
|
vineyardImgs = 0
|
||||||
|
image.src = 'img/vineyard-0.jpg'
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
if (vineyardImgs < 1) {
|
||||||
|
slidesVineyardLeft.classList.add('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
let houseImgs = 0
|
||||||
|
|
||||||
|
slidesHouseRight.onclick = () => {
|
||||||
|
houseImgs = houseImgs + 1
|
||||||
|
slidesHouseImg.classList.add('out')
|
||||||
|
setTimeout(() => {
|
||||||
|
slidesHouseImg.setAttribute('src', 'img/house-' + houseImgs + '.jpg')
|
||||||
|
slidesHouseImg.classList.remove('out')
|
||||||
|
if (houseImgs >= 1) {
|
||||||
|
slidesHouseLeft.classList.remove('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
}
|
||||||
|
|
||||||
|
slidesHouseLeft.onclick = () => {
|
||||||
|
slidesHouseImg.classList.add('out')
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
slidesHouseImg.classList.remove('out')
|
||||||
|
if (houseImgs > 0) {
|
||||||
|
houseImgs = houseImgs - 1
|
||||||
|
slidesHouseImg.setAttribute('src', 'img/house-' + houseImgs + '.jpg')
|
||||||
|
}
|
||||||
|
if (houseImgs < 1) {
|
||||||
|
slidesHouseLeft.classList.add('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
}
|
||||||
|
|
||||||
|
const imgHouseError = (image) => {
|
||||||
|
houseImgs = 0
|
||||||
|
image.src = 'img/house-0.jpg'
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
if (houseImgs < 1) {
|
||||||
|
slidesHouseLeft.classList.add('out')
|
||||||
|
}
|
||||||
|
}, 150)
|
||||||
|
return true
|
||||||
|
}
|
||||||
166
old.index.php
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Use for pics:
|
||||||
|
|
||||||
|
https://www.zillow.com/homedetails/3661-Richwood-Cir-Kannapolis-NC-28081/61653437_zpid/?
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Pine Creek HOA</title>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Bootstrap backup -->
|
||||||
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||||||
|
<!-- Lato Font embed -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet">
|
||||||
|
<!-- Libre Bakersville Font embed -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap" rel="stylesheet">
|
||||||
|
<!-- Current project CSS file -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/main.css">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav id="mainNav" class="main-nav">
|
||||||
|
<div class="container">
|
||||||
|
<div class="mobile-nav">
|
||||||
|
<a class="mobile-nav--logo" href="#"><img src="img/logo.svg" alt="Pine Creek Logo"></a>
|
||||||
|
<div id="hamburger" class="hamburger">
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li><a class="nav-item" href="#">Welcome</a></li>
|
||||||
|
<li><a class="nav-item" href="#">The Vineyard</a></li>
|
||||||
|
<li><a class="nav-item" href="#">Custom Homes</a></li>
|
||||||
|
<li class="main-nav--logo"><a href="#"><img src="img/logo.svg" alt="Pine Creek Logo"></a></li>
|
||||||
|
<li><a class="nav-item" href="#">Kannapolis</a></li>
|
||||||
|
<li><a class="nav-item" href="#">Home Owners</a></li>
|
||||||
|
<li><a class="nav-item" href="#">Contact Us</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<main class="page-content">
|
||||||
|
|
||||||
|
<div class="hero">
|
||||||
|
<div style="padding:56.25% 0 0 0;position:relative;">
|
||||||
|
<video playsinline muted autoplay loop preload="auto" style="position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;" aria-hidden="true">
|
||||||
|
<source src="img/intro_short.mp4" type="video/mp4">
|
||||||
|
<!-- Fallback text -->
|
||||||
|
Your browser does not support HTML5 video. Download the video <a href="img/intro_short.mp4">here</a>.
|
||||||
|
</video>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="container my-5">
|
||||||
|
<div class="hero-text row py-5">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h1>Welcome to Pine Creek</h1>
|
||||||
|
<h5>Kannapolis' Premier Gated community</h5>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mt-3 mt-md-0">
|
||||||
|
<p>Pine Creek is one of the Greater Charlotte Area’s premier gated communities offering custom built homes in North Carolina’s Cabarrus County.</p>
|
||||||
|
<p>The neighborhood features elegant custom built homes based on French country designs and influences, and homes range in size from 4,500 to over 11,000 square feet. Each home is carefully positioned on lots of one acre or more in order to preserve the natural beauty of the original landscape and to protect each homeowner’s privacy.</p>
|
||||||
|
<p>Create lifelong memories with your family in a luxury, custom home in a secure and quiet community. Welcome home to Pine Creek.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="col-md-5">
|
||||||
|
<h3>The Vineyard</h3>
|
||||||
|
<p>A subsect of Pine Creek, The Vineyard is its own haven. Enclosed by lush grape vines and woods, The Vineyard custom homes feature Spanish/Tuscan styled architectural designs.</p>
|
||||||
|
<a class="btn btn-primary" href="#">Learn More</a>
|
||||||
|
</div>
|
||||||
|
<div class="ml-auto col-md-6">
|
||||||
|
<div id="slidesVineyard" class="slides vineyard">
|
||||||
|
<img class="slides-img" src="img/vineyard-0.jpg" onerror="imgVineyardError(this)">
|
||||||
|
<div class="slides-arrow out">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="15 18 9 12 15 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
<div class="slides-arrow">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="9 18 15 12 9 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="ml-auto col-md-5 order-md-2">
|
||||||
|
<h3>Build Your Custom Home in Pine Creek</h3>
|
||||||
|
<p>While Pine Creek does not have a list of pre-approved custom home builders in order to provide owners with more flexibility in who builds their future custom home, Pine Creek Homeowners’ Association does evaluate proposed plans in accordance to the guidance in Pine Creek Covenants.</p>
|
||||||
|
<p>The primary focus of this approval process is to ensure all proposed home designs, architectural details and landscape designs align with the existing custom homes in Pine Creek. The HOA is pleased to provide feedback to a potential buyer on home plan renderings to confirm your vision would be in harmony with the style of the neighborhood.</p>
|
||||||
|
<a class="btn btn-primary" href="#">View open lots</a>
|
||||||
|
<a class="btn btn-light" href="#">Contact us</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div id="slidesHouse" class="slides house">
|
||||||
|
<img class="slides-img" src="img/house-0.jpg" onerror="imgHouseError(this)">
|
||||||
|
<div class="slides-arrow out">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><polyline points="15 18 9 12 15 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
<div class="slides-arrow">
|
||||||
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="container my-5">
|
||||||
|
<div class="row py-5">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h3>Call Kannapolis, NC ‘Home’</h3>
|
||||||
|
<p>Kannapolis, North Carolina is a family-oriented town filled with Southern charm. Kannapolis was originally developed in 1906 to be the home to Cannon Mills. Even though the mill is no longer open, Kannapolis has exploded with residential and business development and has become home to families desiring to live close to uptown with the small town, country feel.</p>
|
||||||
|
<p>The town is conveniently located; right off of I-85 and within 30 minutes of uptown Charlotte and Charlotte Douglas International Airport. With growing businesses, a vast array of shops and restaurants, a beautiful downtown, Cabarrus County schools and highly sought after private schools, and the grandeur of the NC Research Campus, Kannapolis is a wonderful place to call home.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ml-auto col-md-6">
|
||||||
|
<div class="slides">
|
||||||
|
<img class="slides-img" src="img/kannapolis-nc.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="container my-5">
|
||||||
|
<div class="py-5">
|
||||||
|
<div class="pb-4 text-center">
|
||||||
|
<h3>Pine Creek Homeowners’ Association</h3>
|
||||||
|
</div>
|
||||||
|
<p>The Pine Creek Homeowners’ Association consists of board members voted into position by homeowners within the neighborhood. The Homeowner’s Association is responsible for approving proposed building plans and ongoing maintenance of homes within the neighborhood to ensure homes are built and managed to meet the aesthetics of Pine Creek and the Vineyards.</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-- Current project JS file -->
|
||||||
|
<script type="text/javascript" src="js/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||