diff --git a/content/new-donate/index.md b/content/new-donate/index.md index 685ced55..fb8f5bf4 100644 --- a/content/new-donate/index.md +++ b/content/new-donate/index.md @@ -4,6 +4,8 @@ template: new-donate.html weight: 10 extra: hero_title: Donate + hero_image: new-donate/donate-bg.png + menu_title_pre: Home hero_description: Donate and create better maps together! info_section_card_description_1: We rely on your donations to keep Organic Maps open, free, and without ads info_section_card_description_2: We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users diff --git a/sass/component/header-sub.scss b/sass/component/header-sub.scss index f1f4dd30..2ef86cc5 100644 --- a/sass/component/header-sub.scss +++ b/sass/component/header-sub.scss @@ -17,6 +17,22 @@ left: 0; } + &--big { + padding:calc(var(--menu-height) + 30rem) 0 274rem; + @media (max-width: $media-sm) { + padding:calc(var(--menu-height) + 30rem) 0 74rem; + } + &:before { + background: transparent; + } + .hero-sub__title { + padding: 100rem 0 22rem; + } + .hero-sub__description { + margin-bottom: 30rem; + } + } + &__container { display: flex; flex-direction: column; diff --git a/sass/component/icons.scss b/sass/component/icons.scss index ed4d50e3..0676f228 100644 --- a/sass/component/icons.scss +++ b/sass/component/icons.scss @@ -6,4 +6,14 @@ align-items: center; padding: 8rem; border-radius: 8rem; +} + +.swiper-pagination-bullet { + background-color: var(--dots-color)!important; + opacity: 1!important; + width: 22rem!important; + height: 22rem!important; +} +.swiper-pagination-bullet-active { + background-color: var(--common-green)!important; } \ No newline at end of file diff --git a/sass/global/index.scss b/sass/global/index.scss index 6fe4cee4..4531301a 100644 --- a/sass/global/index.scss +++ b/sass/global/index.scss @@ -25,4 +25,15 @@ max-width: 130rem; .frizz { overflow: hidden; +} + +.line { + width: 100%; + background-color: var(--green-button); + max-width: 222rem; + height: 2rem; + margin: 10rem auto 40rem; + @media (max-width: $media-sm) { + margin: 10rem auto 20rem; + } } \ No newline at end of file diff --git a/sass/main.scss b/sass/main.scss index cdb2a204..797a3fd8 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -28,5 +28,6 @@ @import "./pages/community"; @import "./pages/support"; @import "./pages/volunteering"; +@import "./pages/new-support"; diff --git a/sass/pages/new-support.scss b/sass/pages/new-support.scss new file mode 100644 index 00000000..c5491aea --- /dev/null +++ b/sass/pages/new-support.scss @@ -0,0 +1,277 @@ +@import "../variables/media"; + +.new-support { + &__text { + color: var(--black-white); + } +} + +.support-benefit { + margin: -120rem 0 80rem; + position: relative; + z-index: 10; + @media (max-width: $media-sm) { + margin: -20rem 0 80rem; + } + + &__container { + display: flex; + justify-content: center; + gap: 15rem; + @media (max-width: $media-sm) { + flex-direction: column; + } + } + + &__item { + background-color: var(--wite-green); + border-radius: 10rem; + box-shadow: var(--card-box-shadow); + padding: 28rem 26rem; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 15rem; + } + + &__text { + max-width: 292rem; + text-align: center; + } + + &__icon { + display: flex; + align-items: center; + justify-content: center; + border-radius: 143rem; + width: 143rem; + height: 143rem; + background-color: var(--acordion-green-bg); + color: var(--green-button); + border: 1rem solid var(--green-button-transparent); + } +} + +.services-support { + &__container { + display: flex; + flex-direction: column; + align-items: center; + } + + &__title { + text-align: center; + } + + &__img { + display: block; + width: 47%; + border-radius: 10rem 0 0 10rem; + @media (max-width: $media-sm) { + border-radius: 10rem; + width: calc(100% - 10rem); + margin: 0 10rem -20rem 0; + } + } + + &__item { + border-radius: 10rem; + display: flex; + align-items: center; + margin-bottom: 10rem; + @media (max-width: $media-sm) { + margin-bottom: 20rem; + } + &:nth-child(2n) { + flex-direction: row-reverse; + @media (max-width: $media-sm) { + flex-direction: column; + } + + .services-support__img { + border-radius: 0 10rem 10rem 0; + @media (max-width: $media-sm) { + border-radius: 10rem; + width: calc(100% - 10rem); + margin: 0 0rem -20rem 10rem; + } + } + .services-support__item-content { + @media (max-width: $media-sm) { + + width: calc(100% - 10rem); + margin: 0 10rem 0rem 0; + } + } + } + + @media (max-width: $media-sm) { + flex-direction: column; + + } + } + + &__sub-title { + padding: 10rem 0; + } + + &__row { + margin-bottom: 40rem; + @media (max-width: $media-sm) { + margin-bottom: 10rem; + } + } + + &__item-content { + background-color: var(--bg-green); + padding: 110rem 40rem; + border-radius: 10rem; + position: relative; + @media (max-width: $media-sm) { + padding: 20rem 16rem; + width: calc(100% - 10rem); + margin: 0 0 0 10rem; + } + } + + &__count { + display: flex; + gap: 19rem; + align-items: center; + } + + &__number { + color: var(--green-button); + } + + &__icon { + width: 53rem; + height: 53rem; + border-radius: 53rem; + display: flex; + align-items: center; + justify-content: center; + background-color: var(--icon-check-color); + + color: var(--common-green); + @media (max-width: $media-sm) { + width: 33rem; + height: 33rem; + } + } + + &__title-row { + @media (max-width: $media-sm) { + display: flex; + align-items: center; + gap: 16rem; + } + } + + &__line { + margin: 10rem auto 40rem; + } +} + +.reviews { + padding: var(--container-mob-section) 0; + + &__title { + text-align: center; + } +&__line { + @media (max-width: $media-sm) { + margin-bottom: -10rem; + } +} + &__item { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + box-shadow: var(--card-box-shadow); + margin: 30rem 30rem 65rem; + border-radius: 10rem; + padding: 58rem 30rem 0; + background-color: var(--rewi-card-color); + position: relative; + @media (max-width: $media-sm) { + padding: 30rem 30rem 0; + } + &:before { + content: ""; + width: 150rem; + height: 150rem; + + position: absolute; + bottom: -30rem; + left: 50%; + transform: translateX(-50%) rotate(45deg); + z-index: 1; + border-radius: 30rem; + box-shadow: var(--card-box-shadow); + background-color: var(--rewi-card-color); + } + + &:after { + content: ""; + width: 100%; + height: 100%; + border-radius: 10rem; + position: absolute; + bottom: 0; + left: 50%; + transform: translateX(-50%); + z-index: 2; + + background-color: var(--rewi-card-color); + } + } + + &__text { + color: var(--black-white); + max-width: 390rem; + z-index: 4; + } + + &__s-title { + text-align: center; + display: flex; + align-items: center; + width: 100%; + max-width: 200rem; + justify-content: space-between; + margin: 30rem 0 10rem; + z-index: 4; + + &:before { + content: ""; + width: 16rem; + height: 1rem; + background-color: var(--green-button); + } + + &:after { + content: ""; + width: 16rem; + height: 1rem; + background-color: var(--green-button); + } + } + + &__icon { + display: block; + margin-top: auto; + width: 80rem; + height: 80rem; + border-radius: 80rem; + margin-bottom: -30rem; + z-index: 4; + } + + &__pag { + position: relative; + margin-top: 60rem; + } +} \ No newline at end of file diff --git a/sass/pages/volunteering.scss b/sass/pages/volunteering.scss index cae8e4c2..a2ae6b25 100644 --- a/sass/pages/volunteering.scss +++ b/sass/pages/volunteering.scss @@ -1,6 +1,13 @@ +@import "../variables/media"; + .section-volunteering { padding: var(--container-mob-section) 0; - +&__title { + @media (max-width: $media-sm) { + display: flex; + align-items: center; + } +} &__select { display: flex; justify-content: space-between; @@ -9,23 +16,39 @@ background-color: var(--acordion-green); margin-bottom: 20rem; cursor: pointer; -border: 1rem solid transparent; + border: 1rem solid transparent; +@media (max-width: $media-sm) { + padding: 16rem 15rem; + } &:last-child { margin-bottom: 0; } } -&__main { - padding: 30rem; -} + &__block { + padding: 20rem; + display: flex; + flex-direction: column; + gap: 16rem; + border-bottom: 1rem solid var(--common-acord-button); + @media (max-width: $media-sm) { + padding: 16rem 15rem; + } + } + &__main { + padding: 30rem; + } + &__content { overflow: hidden; max-height: 0; background-color: var(--acordion-green-bg); transition: max-height 0.5s ease-in-out; margin-bottom: 20rem; - margin-top: -24rem; + margin-top: -24rem; border-radius: 0 0 10rem 10rem; - +@media (max-width: $media-sm) { + margin-top: -27rem; + } } @@ -41,15 +64,17 @@ border: 1rem solid transparent; align-items: center; border-radius: 34rem; } -.is-active { - border: 1rem solid var(--common-acord-button); - background-color: var(--acordion-green-bg); -} -.is-active + .section-volunteering__content { - max-height: 1500rem; - border: 1rem solid var(--common-acord-button); + .is-active { -} + border: 1rem solid var(--common-acord-button); + background-color: var(--acordion-green-bg); + } + + .is-active + .section-volunteering__content { + max-height: 1500rem; + border: 1rem solid var(--common-acord-button); + + } } diff --git a/sass/variables/color-theme.scss b/sass/variables/color-theme.scss index 857eca07..e0939266 100644 --- a/sass/variables/color-theme.scss +++ b/sass/variables/color-theme.scss @@ -5,44 +5,60 @@ --common-black: #000D07; --common-white: #ffffff; --common-green: #006C35; + --common-green-02: #33453D ; --common-green-primery: #CCE1D7; --common-green-btn: #006031; --common-green-hover: #2b6445; --common-grey: #D9DBDA; --common-grey-v2: #5A5A5A; + --common-grey-v3: #64776E; + --common-grey-v4: #E5F0EB; --common-green-border: #99C4AF; --common-line-color: #AEC5BA; --common-black-sub: #26312C; --common-green-btn-social: #33895E; --common-acord-button: #BFDACC; --common-green-gradient: linear-gradient(90deg, #006C35 0%, rgba(0, 96, 49, 0.00) 100%); + } // Theme COLOR change .light { + --card-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15); + --icon-check-color: var(--common-green-primery); --acordion-green: #F2F8F5; - --acordion-green-bg: #E5F0EB; + --acordion-green-bg: var(--common-grey-v4);; + --dots-color: var(--common-grey-v4);; --body-bg: var(--common-white); --white-black: var(--common-white); --black-white: var(--common-black); --green-theme: #006031; - --bg-green: #E5F0EB; + --bg-green: var(--common-grey-v4);; + --wite-green: var(--common-white); --footer-bg: #F5F5F5; --green-button: var(--common-green); + --green-button-transparent: transparent; --icon-border-green: #66A686; + --rewi-card-color: var(--common-white); } .dark { - --acordion-green: #33453D; - --acordion-green-bg: #64776E; + --card-box-shadow: none; + --icon-check-color: var(--common-green-primery); + --acordion-green: var(--common-green-02); + --acordion-green-bg: var( --common-grey-v3); --body-bg: #2C2C2C; + --dots-color: var(--common-grey-v4);; --white-black: var(--common-black); --black-white: var(--common-white); --green-theme: var(--common-green); - --bg-green: #33453D; + --bg-green: var(--common-green-02); + --wite-green: var(--common-green-02); --footer-bg: var(--common-black); --green-button: #BBD7A7; + --green-button-transparent: #BBD7A7; --icon-border-green: var(--common-white); + --rewi-card-color: var( --common-grey-v3); } \ No newline at end of file diff --git a/sass/variables/fonts.scss b/sass/variables/fonts.scss index c1cec8da..288f73d5 100644 --- a/sass/variables/fonts.scss +++ b/sass/variables/fonts.scss @@ -16,12 +16,16 @@ --h6: 500 30rem/36rem var(--main-font); --h5-boold: 700 22rem/28rem var(--main-font); --p: 300 18rem/28rem var(--main-font); + --p-15: 300 15rem/26rem var(--main-font); --p-md: 400 16rem/28rem var(--main-font); + --p-md-bold: 600 16rem/28rem var(--main-font); --p-sm: 500 14rem/28rem var(--main-font); --p-sub: 300 12rem/15rem var(--main-font); --p-card: 300 17rem/24rem var(--main-font); --nav-link: 500 16rem/28rem var(--main-font); --nav-bred: 400 13rem/18rem var(--main-font); + + --icon-count: 700 64rem/60rem var(--sub-fonst); } @media (max-width: $media-md) { @@ -29,6 +33,7 @@ --h1: 300 36rem/normal var(--sub-fonst); --h1-sub: 400 18rem/32rem var(--main-font); + --h5-boold: 700 16rem/28rem var(--main-font); --p: 300 18rem/28rem var(--main-font); --p-md: 400 16rem/28rem var(--main-font); --p-sm: 500 14rem/28rem var(--main-font); @@ -37,6 +42,7 @@ --nav-link: 500 13rem/24rem var(--main-font); --h1-inter: 500 24rem/36rem var(--main-font); + --icon-count: 700 48rem/60rem var(--sub-fonst); } } @@ -89,6 +95,9 @@ .p{ font: var(--p); } +.p-15 { + font: var(--p-15); +} .p-md { font: var(--p-md); } @@ -101,6 +110,9 @@ .p-card { font: var(--p-card); } +.p-md-bold { + font: var(--p-md-bold); +} .nav-link{ font: var(--nav-link); } @@ -109,3 +121,7 @@ color: var(--common-white); } +.icon-count { + font: var(--icon-count); +} + diff --git a/templates/base.html b/templates/base.html index b1dfef6b..3d7ec085 100644 --- a/templates/base.html +++ b/templates/base.html @@ -34,7 +34,7 @@ rel="stylesheet"> - {% block rss %} @@ -90,6 +90,8 @@ + + diff --git a/templates/new-donate.html b/templates/new-donate.html index 185eb4bf..6098ab8d 100644 --- a/templates/new-donate.html +++ b/templates/new-donate.html @@ -1,74 +1,216 @@ {% extends "base.html" %} {%- block content %} -
-
-

{{ page.extra.hero_title | safe }}

-

{{ page.extra.hero_description | safe }}

- -
-
-
-
- -

{{ page.extra.info_section_card_description_1 | safe }}

-
-
- -

{{ page.extra.info_section_card_description_2 | safe }}

-
-
- -

{{ page.extra.info_section_card_description_3 | safe }}

-
-
-
-
- -

{{ page.extra.funding_section_card_title_1 | safe }}

-

{{ page.extra.funding_section_card_description_1 | safe }}

-
-
- -

{{ page.extra.funding_section_card_title_2 | safe }}

-

{{ page.extra.funding_section_card_description_2 | safe }}

-
-
- -

{{ page.extra.funding_section_card_title_3 | safe }}

-

{{ page.extra.funding_section_card_description_3 | safe }}

-
- -
-
-

{{ page.extra.users_way_section_title | safe }}

-
-

{{ page.extra.users_way_donation_description_1 | safe }}

-

{{ page.extra.users_way_donation_name_1| safe }}

- -
-
-

{{ page.extra.users_way_donation_description_2 | safe }}

-

{{ page.extra.users_way_donation_name_2| safe }}

- -
-
-
- {{ trans(key='ged-involved-title', lang=lang) }} -
- - {{ trans(key='donate-title', lang=lang) }} - {{ trans(key='donate-description', lang=lang) }} -
-
- - {{ trans(key='contribute-code-title', lang=lang) }} - {{ trans(key='contribute-code-description', lang=lang) }} -
-
- - {{ trans(key='contribute-location-title', lang=lang) }} - {{ trans(key='contribute-location-description', lang=lang) }} -
-
+ +
+
+ +

{{ page.extra.hero_title | safe }}

+

{{ page.extra.hero_description | safe }}

+ +
+
+ +
+
+ +
+
+ {% include 'ui/icons/new-support/icon01.html' %} +
+

{{ page.extra.info_section_card_description_1 | safe }}

+
+ +
+
+ {% include 'ui/icons/new-support/icon02.html' %} +
+

{{ page.extra.info_section_card_description_2 | safe }}

+
+
+
+ {% include 'ui/icons/new-support/icon03.html' %} +
+

{{ page.extra.info_section_card_description_3 | safe }}

+
+
+
+ +
+
+

{{ page.extra.funding_section_title | safe }}

+
+
+
+ img +
+
+
+ 01 +
+ {% include 'ui/icons/new-support/pin.html' %} +
+
+

{{ page.extra.funding_section_card_title_1 | safe }}

+
+

{{ page.extra.funding_section_card_description_1 | safe }}

+
+
+
+ img +
+
+
+ 02 +
+ {% include 'ui/icons/new-support/pin.html' %} +
+
+

{{ page.extra.funding_section_card_title_2 | safe }}

+
+

{{ page.extra.funding_section_card_description_2 | safe }}

+
+
+
+ img +
+
+
+ 03 +
+ {% include 'ui/icons/new-support/pin.html' %} +
+
+

{{ page.extra.funding_section_card_title_3 | safe }}

+
+

{{ page.extra.funding_section_card_description_3 | safe }}

+
+ +
+
+ +
+
+ +
+

{{ page.extra.users_way_section_title | safe }}

+
+ +
+
+
+
+

{{ page.extra.users_way_donation_description_1 | safe }}

+

{{ page.extra.users_way_donation_name_1| safe }}

+ img +
+
+
+
+

{{ page.extra.users_way_donation_description_2 | safe }}

+

{{ page.extra.users_way_donation_name_2| safe }}

+ img +
+
+
+
+

{{ page.extra.users_way_donation_description_2 | safe }}

+

{{ page.extra.users_way_donation_name_2| safe }}

+ img +
+
+
+
+

{{ page.extra.users_way_donation_description_2 | safe }}

+

{{ page.extra.users_way_donation_name_2| safe }}

+ img +
+
+ +
+
+
+
+ +
+
+ +
+
+

{{ trans(key='ged-involved-title', lang=lang) }}

+
+
+ {% include 'ui/icons/header/donate.html' %} +
+ {{ trans(key='donate-title', lang=lang) }} +
+ +

+ {{ trans(key='donate-description', lang=lang) }} +

+ +
+
+ {% include 'ui/icons/header/code.html' %} +
+ {{ trans(key='contribute-code-title', lang=lang) }} +
+ +

+ {{ trans(key='contribute-code-description', lang=lang) }} +

+ +
+
+ {% include 'ui/icons/header/location.html' %} +
+ {{ trans(key='contribute-location-title', lang=lang) }} +
+

+ {{ trans(key='contribute-location-description', lang=lang) }} +

+ +
+
+ +
+
+ + + {%- endblock content %} \ No newline at end of file diff --git a/templates/support.html b/templates/support.html index b895fbd2..95e4e2ae 100644 --- a/templates/support.html +++ b/templates/support.html @@ -62,40 +62,39 @@ -
+
-

Get Involved

+

{{ trans(key='ged-involved-title', lang=lang) }}

{% include 'ui/icons/header/donate.html' %}
- Donate + {{ trans(key='donate-title', lang=lang) }}

- The app runs on your donations, help improve it + {{ trans(key='donate-description', lang=lang) }}

{% include 'ui/icons/header/code.html' %}
- Contribute Code + {{ trans(key='contribute-code-title', lang=lang) }}

- Build the app used by people around the world + {{ trans(key='contribute-code-description', lang=lang) }}

{% include 'ui/icons/header/location.html' %}
- Contribute Location Info + {{ trans(key='contribute-location-title', lang=lang) }}

- Add info around you, and make the product - better for everyone + {{ trans(key='contribute-location-description', lang=lang) }}

diff --git a/templates/ui/icons/new-support/icon01.html b/templates/ui/icons/new-support/icon01.html new file mode 100644 index 00000000..bec8e1b5 --- /dev/null +++ b/templates/ui/icons/new-support/icon01.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/ui/icons/new-support/icon02.html b/templates/ui/icons/new-support/icon02.html new file mode 100644 index 00000000..b6c89bb4 --- /dev/null +++ b/templates/ui/icons/new-support/icon02.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/templates/ui/icons/new-support/icon03.html b/templates/ui/icons/new-support/icon03.html new file mode 100644 index 00000000..ee539d63 --- /dev/null +++ b/templates/ui/icons/new-support/icon03.html @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/ui/icons/new-support/pin.html b/templates/ui/icons/new-support/pin.html new file mode 100644 index 00000000..a07d9ab9 --- /dev/null +++ b/templates/ui/icons/new-support/pin.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/templates/volunteering.html b/templates/volunteering.html index d6b8ae16..ee1b0bf1 100644 --- a/templates/volunteering.html +++ b/templates/volunteering.html @@ -42,18 +42,35 @@
-
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+ +
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+
    +
  • {{ page.extra.marketing_section_list_item_1| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_2| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_3| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_4| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_5| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_6| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_7| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_8| safe }}
  • +
+
-
@@ -65,19 +82,36 @@ +
-
-
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+ +
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+
    +
  • {{ page.extra.marketing_section_list_item_1| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_2| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_3| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_4| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_5| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_6| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_7| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_8| safe }}
  • +
+
-
@@ -90,18 +124,35 @@
-
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+ +
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+
    +
  • {{ page.extra.marketing_section_list_item_1| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_2| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_3| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_4| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_5| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_6| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_7| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_8| safe }}
  • +
+
-
@@ -114,15 +165,35 @@
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+ +
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+ + +
@@ -135,17 +206,37 @@
-
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+
    +
  • {{ page.extra.marketing_section_list_item_1| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_2| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_3| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_4| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_5| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_6| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_7| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_8| safe }}
  • +
+ +
+
@@ -158,16 +249,36 @@ + -
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis distinctio enim eveniet, fuga - molestiae sequi voluptas. Commodi consequatur debitis deleniti deserunt dicta dignissimos ducimus - eaque eos error excepturi explicabo facere harum hic id iste neque nobis nostrum obcaecati - perspiciatis quam qui, quidem quod quos reprehenderit soluta tempora temporibus tenetur vero - voluptas voluptatum. Ab aliquid animi aperiam architecto blanditiis commodi cupiditate debitis - ducimus ex excepturi in magni minima molestiae molestias natus nemo nostrum nulla, numquam odio odit - perspiciatis reprehenderit saepe, ullam vel voluptatibus! Aliquid, amet beatae blanditiis - consectetur, culpa debitis doloremque esse itaque, nam necessitatibus non saepe sunt vitae! Omnis, - voluptate. +
+
+

+ {{ page.extra.section_marketing_title_1 | safe }} +

+

+ {{ page.extra.section_marketing_description_1 | safe }} +

+ +
+
+

+ {{ page.extra.section_marketing_title_2 | safe }} +

+
    +
  • {{ page.extra.marketing_section_list_item_1| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_2| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_3| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_4| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_5| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_6| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_7| safe }}
  • +
  • {{ page.extra.marketing_section_list_item_8| safe }}
  • +
+ +