diff --git a/css/main.css b/css/main.css index aa561706..ae04d245 100644 --- a/css/main.css +++ b/css/main.css @@ -1,3 +1,726 @@ -/* Add your CSS here */ +:root { + --black: #000; + --white: #fff; + --lylac: #f5e8ff; + --lightGreen: #e6fac0; + --mediumGreen: #5e7d1f; + --darkGreen: #394b2a; + --ff-body: 'Roboto', sans-serif; + --ff-headings: 'Questrial', sans-serif; + --ff-btns: 'Raleway', sans-serif; + --fw-body: 300; + --fw-headings: 400; + --fw-btns: 400; +} -/* Dont' forget to link this file to your HTML in the */ +* { + box-sizing: border-box; + margin: 0; +} + +html { + font-size: 14px; +} + +body { + font-family: var(--ff-body); + -webkit-font-smoothing: antialiased; + font-weight:var(--fw-body); + color: var(--black); + background: var(--white); + line-height: 1.4; +} + +html, body { + /*max-width: 100vw;*/ + /*min-height: 100vh;*/ + /*overflow: hidden;*/ + +} + +h1, h2, h3, h4, h5 { + font-family: var(--ff-headings); + font-weight: var(--fw-headings); + margin: 0; +} + +/** General */ +a { + display: inline-block; + color: inherit; +} + +nav a { + text-decoration: none; +} + +ul { + list-style-type: none; + padding: 0; +} +img { + display: inline-block; + max-width: 100%; + height: auto; +} + +p { + font-size: 1.07rem; + line-height: 1.8; +} + +.text-center { + text-align: center; +} +.btn { + display: inline-block; + font-family: var(--ff-btns); + font-weight: var(--fw-btns); + padding: 10px 30px; + text-align: center; +} + +a.btn{ + text-decoration: none; +} + +.btn.btn--primary { + border: 2px solid var(--black); + background-color: var(--black); + color: var(--white); +} + +.btn.btn--primary:hover { + border: 2px solid var(--black); + background-color: transparent; + color: var(--black); +} + +.btn.btn--secondary { + border: 2px solid var(--black); + background-color: transparent; + color: var(--black); +} + +.btn.btn--secondary:hover { + border: 2px solid var(--black); + background-color: var(--black); + color: var(--white); +} + +.btn.btn--uppercase { + text-transform: uppercase; +} + +.btn.btn--white { + border: 2px solid var(--white); + background-color:transparent; + color: var(--white); +} + + +.btn.btn--white:hover { + border: 2px solid var(--white); + background-color: var(--white); + color: var(--black); +} + +.fullwidth { + width: 100%; +} + +.section_text-content { + padding: 4rem 2rem; +} + +.section_title { + font-size: 2.3rem; + margin-bottom: 1.2rem; +} + +.section_subtitle { + font-size: 1.6rem; + margin-bottom: 1.8rem; +} + +.wrapper { + display: grid; + grid-template-areas: + "header" + 'main' + "footer"; + grid-template-columns: 1fr; + grid-template-rows:repeat(3, auto); + position: relative; + overflow: hidden; +} + +/* HEADER */ +.header { + grid-area: header; + display: grid; + grid-template-areas: + "order order" + "logo menu"; + grid-template-columns: 1fr auto; + grid-template-rows: auto auto; + align-items: center; + grid-column-gap: 1rem; + grid-row-gap: 1rem; +} + + +.header_logo { + grid-area: logo; +} + +.header_logo a { + text-decoration: none; + font-size: 30px; + font-family: var(--ff-headings); + padding: 0 1rem; +} + +.header_login { + grid-area: login; + display: none; + align-items: center; + column-gap: 8px; +} + +.header_login a { + text-decoration: none; +} + +.header_login-icon{ + display: inline-block; +} + +.header_login-icon svg{ + display: inline-block; + width: 23px; + height: 23px; +} + +.header_order-link { + grid-area: order; + z-index: 1; +} + + +.header_logo-link { + font-size: 2.1rem; + z-index: 1; +} + +.header_menu-icon{ + grid-area: menu; + display: flex; + flex-direction: column; + row-gap: 5px; + width: 50px; + height: 40px; + align-items: center; + justify-content: center; + z-index: 101; + position: relative; + top: -10px; +} + + +.header_menu-icon.close span:first-of-type { + position: relative; + transform: rotate(45deg); +} + +.header_menu-icon.close span:last-of-type { + position: relative; + bottom: 7px; + transform: rotate(-45deg); +} + +.header_menu-icon:hover{ + cursor: pointer; +} + +.header_menu-icon span{ + width: 22px; + height: 2px; + background-color: var(--black); +} + +.header_nav { + position: absolute; + left: 0; + right: 0; + bottom: 0; + top: 0; + background-color: var(--white); + width: 100%; + transition: all 0.5s; + transform: translateX(-100%); + z-index: 100; +} + +.header_nav.opened { + display: flex; + background-color: var(--white); + transform: translateX(0); +} + +.header_nav .menu_list { + width: 100%; + display: flex; + flex-direction: column; + text-align: center; + row-gap: 2rem; +} +.header_nav .menu_item { + font-size: 2rem; +} + +.header_nav .menu_item.active { + color: var(--mediumGreen); +} + +/*MAIN*/ +.main { + grid-area: main; + display: grid; + grid-template-areas: + "welcome" + "different" + "boosting" + "path" + "kit" + "juice" + "follow"; + grid-template-columns: 1fr; + grid-template-rows: repeat(7, auto); + +} + +/* WELCOME */ +section.welcome { + grid-area: welcome; + display: grid; + grid-template-areas: + "welcome_content" + "welcome_img" + "welcome_ads"; + grid-template-columns: 1fr; + grid-template-rows: 1fr auto auto; +} + +.welcome_content { + grid-area: welcome_content; +} + + +.welcome_img { + grid-area: welcome_img; + background-color: orange; +} + +.welcome_img img{ + width: 100%; +} + +.welcome_ads { + grid-area: welcome_ads; + background-color: var(--lylac); + font-size: 1.1rem; +} + +/* * DIFFERENT* */ +section.different { + grid-area: different; +} + +.different_list { + display: grid; + grid-template-columns: 1fr; + grid-template-rows: repeat(3, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 1.5rem; +} + +.different_item-img { + margin-bottom: 1rem; +} + +.different_item-img svg{ + width: 70px; + height: 70px; +} + +/* * BOOSTING* */ +section.boosting { + grid-area: boosting; + background-color: var(--lightGreen); + display: grid; + grid-template-columns: 1fr; + grid-template-rows: repeat(2, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 1.5rem; +} + +.boosting_img img{ + width: 557px; +} + +.boosting_text p { + margin-bottom: 2rem; +} + +/* * PATH* */ +section.path { + grid-area: path; + background-color: var(--lylac); +} + +.path_cards { + background-color: var(--lylac); +} + +.path_list { + display: grid; + grid-template-columns: 1fr; + grid-template-rows: repeat(3, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 1.5rem; + margin-bottom: 2rem; +} + +.path_img { + margin-bottom: 1.5rem; +} + +/* * KIT* */ +section.kit { + grid-area: kit; + background-color: var(--white); + display: grid; + grid-template-columns: 1fr; + grid-template-rows: repeat(2, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 1.5rem; +} + +.kit_img img{ + width: 557px; +} + +.kit_text p { + margin-bottom: 2rem; +} + +/* JUICE */ + +section.juice { + grid-area: juice; +} + +.juice .section_title{ + margin-bottom: 0; +} + +.juice_cards { + background-color: var(--lightGreen); +} + +.juice_list { + display: grid; + grid-template-columns: 1fr; + grid-template-rows: repeat(3, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 2rem; +} + +.juice_step { + width: 42px; + height: 42px; + display: inline-grid; + place-content: center; + margin-bottom: 1rem; + border-radius: 50%; + border: 1px solid var(--black); +} + + +/* FOLLOW */ + +section.follow { + grid-area: follow; + z-index: 1; + margin-bottom: -50px; +} + +.follow_list{ + display: grid; + grid-template-rows: auto; + grid-template-columns: repeat(4, auto); + width: 90%; + max-width: 1070px; + margin: 0 auto; + position: relative; + height: 232px; + top: 50px; +} + +.follow_item { + position: relative; +} + +.follow_item--apples { + transform: rotate(333.85071717456117deg); + +} + +.follow_item--papaya { + transform: rotate(16.69666345366653deg); +} + +.follow_item--bag { + transform: rotate(347.34482520820825deg); + +} + +.follow_item--citrus { + transform: rotate(17.142845342601447deg); +} + +/* FOOTER */ +.footer { + grid-area: footer; + background-color: var(--darkGreen); + padding-top: 100px; +} + +.footer_content { + color: var(--white); + display: grid; + grid-template-areas: + "nav socials" + "form form" + "happy happy" + "copyright copyright"; + grid-template-columns: auto auto; + grid-template-rows: repeat(4, auto); + grid-column-gap: 1.5rem; + grid-row-gap: 3rem; +} + +.footer ul { + text-align: left; +} +.footer_nav .menu_list { + display: flex; + flex-direction: column; + row-gap: 1rem; +} + +.footer_socials a { + text-decoration: none; +} + +.footer_socials .socials_list { + display: flex; + flex-direction: column; + row-gap: 1rem; +} + +.footer_nav { + grid-area: nav; +} + +.footer_socials { + grid-area: socials; +} + +.footer_form { + grid-area: form; +} + +.footer_form .form{ + display: flex; + align-items: flex-end; + justify-content: space-between; + column-gap: 16px; +} + +.footer_form input{ + outline: none; + border: none; + border-bottom: 2px solid var(--white); + background-color: transparent; + width: 100%; +} + +.footer_form .form_item{ + flex: 1 1 auto; +} + +.footer_happy { + grid-area: happy; +} + +.footer_circle { + width: 64px; + height: 64px; + border-radius: 50%; + display: grid; + place-content: center; + border: 2px solid var(--white); +} + +.footer_copyright { + grid-area: copyright; + text-align: center; +} + +@media screen and (min-width: 768px) { + html { + font-size: 16px; + } + + .section_title { + font-size: 3rem; + } + + .header { + grid-template-areas: + "menu login order"; + grid-template-columns: 1fr auto auto; + grid-template-rows: auto; + position: relative; + } + + + .header_logo { + text-align: center; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + height: 88px; + line-height: 88px; + z-index: 0; + } + + .header_login { + display: flex; + } + + .header_btn-link { + height: 88px; + padding: 0 45px; + line-height: 88px; + } + + .header_nav { + width: 60vw; + } + + + .header_menu-icon { + height: 88px; + line-height: 88px; + position: static; + } + + .different_cards { + text-align: left; + } + + .different_list { + grid-template-columns: repeat(3, 1fr); + grid-template-rows: auto; + } + + section.boosting { + grid-template-columns: repeat(2, 1fr); + grid-template-rows: auto; + } + + .boosting_text { + text-align: left; + } + + section.path { + background-color: white; + } + + .path .section_title { + padding-top: 3rem; + padding-bottom: 5rem; + } + + .path_list { + grid-template-columns: repeat(3, 1fr); + grid-template-rows: auto; + position: relative; + top: -5rem; + margin-bottom: -3rem; + } + + .path_item.go-up { + position: relative; + top: -3rem; + } + + .juice_list { + grid-template-columns: repeat(3, 1fr); + grid-template-rows: auto; + text-align: left; + } + + section.kit { + grid-template-columns: repeat(2, 1fr); + grid-template-rows: auto; + } + + .kit_text { + text-align: left; + } + + .follow_list { + grid-template-rows: auto; + grid-template-columns: repeat(4, auto); + top: -20px; + } + + .follow_item { + position: static; + width: auto; + } + + .follow_item--apples { + transform: rotate(333.85071717456117deg); + } + + .follow_item--papaya { + transform: rotate(16.69666345366653deg); + } + + .follow_item--bag { + transform: rotate(347.34482520820825deg); + } + + .follow_item--citrus { + transform: rotate(17.142845342601447deg); + } + + .footer { + padding-top: 200px; + } + + .footer_content { + grid-template-areas: + "nav socials form happy" + "copyright copyright copyright copyright"; + grid-template-columns: repeat(4, auto); + grid-template-rows: repeat(2, auto); + } +} \ No newline at end of file diff --git a/css/normalize.css b/css/normalize.css new file mode 100755 index 00000000..95760591 --- /dev/null +++ b/css/normalize.css @@ -0,0 +1,436 @@ + +/** + * --------------------------------------- + * DO NOT EDIT THIS FILE. + * All your styling should go in style.css + * --------------------------------------- + */ + + +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} \ No newline at end of file diff --git a/images/follow1.webp b/images/follow1.webp new file mode 100644 index 00000000..302f4e41 Binary files /dev/null and b/images/follow1.webp differ diff --git a/images/follow2.webp b/images/follow2.webp new file mode 100644 index 00000000..26eb1adc Binary files /dev/null and b/images/follow2.webp differ diff --git a/images/follow3.webp b/images/follow3.webp new file mode 100644 index 00000000..7f75a5f7 Binary files /dev/null and b/images/follow3.webp differ diff --git a/images/follow4.webp b/images/follow4.webp new file mode 100644 index 00000000..3cc9f56a Binary files /dev/null and b/images/follow4.webp differ diff --git a/images/fruits.webp b/images/fruits.webp new file mode 100644 index 00000000..9cdd391a Binary files /dev/null and b/images/fruits.webp differ diff --git a/images/kit.webp b/images/kit.webp new file mode 100644 index 00000000..3ecb27b7 Binary files /dev/null and b/images/kit.webp differ diff --git a/images/path1.webp b/images/path1.webp new file mode 100644 index 00000000..05d373a3 Binary files /dev/null and b/images/path1.webp differ diff --git a/images/path2.webp b/images/path2.webp new file mode 100644 index 00000000..2d534028 Binary files /dev/null and b/images/path2.webp differ diff --git a/images/path3.webp b/images/path3.webp new file mode 100644 index 00000000..8e950c91 Binary files /dev/null and b/images/path3.webp differ diff --git a/images/welcome_bg.webp b/images/welcome_bg.webp new file mode 100644 index 00000000..e75e1649 Binary files /dev/null and b/images/welcome_bg.webp differ diff --git a/index.html b/index.html index cd704c69..66c0e798 100644 --- a/index.html +++ b/index.html @@ -4,18 +4,360 @@ - - + + + + + Responsive grid project +
+
+ + + + Order Online +
+ +
+
+
+

Fuel Your Body.
Balance Your Mind.

+

Organic Cold Pressed
Juices & Smoothies

+ Explore Flavors +
+
+ welcome image +
+
+

Get 10% off your first Online Order.
Try Now +

+
+
+
+

What Makes Us Different

+
+
    +
  • +
    + +
    +

    Locally Sourced

    +

    I'm a paragraph. Click here to + add your own text and edit me. Let your users get to know you.

    +
  • +
  • +
    + +
    +

    100% Natural Ingredients

    +

    I'm a paragraph. Click here to + add your own text and edit me. Let your users get to know you.

    +
  • +
  • +
    +

    This website design was created by Wix.com, and is used here for strictly educational purposes.

    - + #comp-kr0d2s2y svg [data-color="2"] { + fill: #000000; + } + + + + + + + + + + +
    +

    Just Picked Freshness

    +

    I'm a paragraph. Click here to + add your own text and edit me. Let your users get to know you.

    +
  • +
+
+
+
+
+ fruits +
+
+

Boosting
+ Immunity the Way
Nature Intended

+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or + double click me to add your own content and make changes to the font. I’m a great place for you to + tell a story and let your users know a little more about you.

+ Our Vision +
+
+
+
+

Choose Your Wellness Path

+
+
+
    +
  • +
    +  Pure Hydration with Сold Pressed Juices +
    +

    + Pure Hydration with
    + Сold Pressed Juices +

    +

    I'm a paragraph. Click here to add your own text and edit me. Let your users get to know + you.

    +
  • +
  • +
    + Soft & Creamy Organic Smoothies +
    +

    + Soft & Creamy + Organic Smoothies +

    +

    I'm a paragraph. Click here to add your own text and edit me. Let your users get to know + you.

    +
  • +
  • +
    + The Power of Wellness Shots +
    +

    + The Power of
    + Wellness Shots +

    +

    I'm a paragraph. Click here to add your own text and edit me. Let your users get to know + you.

    +
  • +
+ View All +
+
+
+
+ Special Cleanse Kit image +
+
+

Boosting
+ Discover Our
+ Special Cleanse Kit

+

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or + double click me to add your own content and make changes to the font. I’m a great place for you to + tell a story and let your users know a little more about you.

+ Try it +
+
+
+
+

Get Juice Bar

+
+
+
    +
  • + 01 +

    Local Delivery

    +

    I'm a paragraph. Click here to add your own text and edit me.

    +
  • +
  • + 02 +

    In Store Pick Up

    +

    I'm a paragraph. Click here to add your own text and edit me.

    +
  • +
  • + 03 +

    Curbside Pick Up

    +

    I'm a paragraph. Click here to add your own text and edit me.

    +
  • +
+
+
+ +
+ +
+ + \ No newline at end of file