diff --git a/green_deal/migrations/0002_auto_20201208_1435.py b/green_deal/migrations/0002_auto_20201208_1435.py
new file mode 100644
index 0000000000000000000000000000000000000000..c17d773f9f1b8065da8091f55b1b6316aef957bf
--- /dev/null
+++ b/green_deal/migrations/0002_auto_20201208_1435.py
@@ -0,0 +1,412 @@
+# Generated by Django 3.1.1 on 2020-12-08 13:35
+
+import datetime
+
+import wagtail.core.blocks
+import wagtail.core.fields
+import wagtail.images.blocks
+from django.db import migrations, models
+from django.utils.timezone import utc
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("green_deal", "0001_initial"),
+    ]
+
+    operations = [
+        migrations.AlterModelOptions(
+            name="greendealsubpage",
+            options={"verbose_name": "Zelená dohoda pro regiony"},
+        ),
+        migrations.AddField(
+            model_name="greendealsubpage",
+            name="matomo_id",
+            field=models.IntegerField(
+                blank=True,
+                null=True,
+                verbose_name="Matomo ID pro sledování návštěvnosti",
+            ),
+        ),
+        migrations.AddField(
+            model_name="greendealsubpage",
+            name="top_menu",
+            field=wagtail.core.fields.StreamField(
+                [
+                    (
+                        "item",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                ("name", wagtail.core.blocks.CharBlock(label="název")),
+                                (
+                                    "page",
+                                    wagtail.core.blocks.PageChooserBlock(
+                                        label="stránka",
+                                        page_type=[
+                                            "green_deal.GreenDealHomePage",
+                                            "green_deal.GreenDealSubPage",
+                                        ],
+                                    ),
+                                ),
+                            ]
+                        ),
+                    )
+                ],
+                blank=True,
+                verbose_name="hornĂ­ menu",
+            ),
+        ),
+        migrations.AlterField(
+            model_name="greendealhomepage",
+            name="content",
+            field=wagtail.core.fields.StreamField(
+                [
+                    (
+                        "text_2_columns",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                (
+                                    "left_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="levĂ˝ sloupec",
+                                    ),
+                                ),
+                                (
+                                    "right_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="pravĂ˝ sloupec",
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "text_1_column",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                ("header", wagtail.core.blocks.CharBlock()),
+                                (
+                                    "text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ]
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "FAQ_columns",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                (
+                                    "left_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="levĂ˝ sloupec",
+                                    ),
+                                ),
+                                (
+                                    "faqs",
+                                    wagtail.core.blocks.ListBlock(
+                                        wagtail.core.blocks.StructBlock(
+                                            [
+                                                (
+                                                    "question",
+                                                    wagtail.core.blocks.TextBlock(),
+                                                ),
+                                                (
+                                                    "answer",
+                                                    wagtail.core.blocks.RichTextBlock(),
+                                                ),
+                                            ]
+                                        ),
+                                        label="faq",
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "news",
+                        wagtail.core.blocks.ListBlock(
+                            wagtail.core.blocks.StructBlock(
+                                [
+                                    ("header", wagtail.core.blocks.CharBlock()),
+                                    (
+                                        "perex",
+                                        wagtail.core.blocks.RichTextBlock(
+                                            features=[
+                                                "h2",
+                                                "h3",
+                                                "h4",
+                                                "h5",
+                                                "bold",
+                                                "italic",
+                                                "ol",
+                                                "ul",
+                                                "hr",
+                                                "link",
+                                                "document-link",
+                                                "image",
+                                            ]
+                                        ),
+                                    ),
+                                    ("img", wagtail.images.blocks.ImageChooserBlock()),
+                                    ("link", wagtail.core.blocks.URLBlock()),
+                                    (
+                                        "date",
+                                        wagtail.core.blocks.DateBlock(
+                                            default=datetime.datetime(
+                                                2020,
+                                                12,
+                                                8,
+                                                13,
+                                                35,
+                                                3,
+                                                209883,
+                                                tzinfo=utc,
+                                            )
+                                        ),
+                                    ),
+                                ]
+                            ),
+                            label="aktuality",
+                        ),
+                    ),
+                ],
+                blank=True,
+                verbose_name="obsah stránky",
+            ),
+        ),
+        migrations.AlterField(
+            model_name="greendealsubpage",
+            name="content",
+            field=wagtail.core.fields.StreamField(
+                [
+                    (
+                        "text_2_columns",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                (
+                                    "left_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="levĂ˝ sloupec",
+                                    ),
+                                ),
+                                (
+                                    "right_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="pravĂ˝ sloupec",
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "text_1_column",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                ("header", wagtail.core.blocks.CharBlock()),
+                                (
+                                    "text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ]
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "FAQ_columns",
+                        wagtail.core.blocks.StructBlock(
+                            [
+                                (
+                                    "left_text",
+                                    wagtail.core.blocks.RichTextBlock(
+                                        features=[
+                                            "h2",
+                                            "h3",
+                                            "h4",
+                                            "h5",
+                                            "bold",
+                                            "italic",
+                                            "ol",
+                                            "ul",
+                                            "hr",
+                                            "link",
+                                            "document-link",
+                                            "image",
+                                        ],
+                                        label="levĂ˝ sloupec",
+                                    ),
+                                ),
+                                (
+                                    "faqs",
+                                    wagtail.core.blocks.ListBlock(
+                                        wagtail.core.blocks.StructBlock(
+                                            [
+                                                (
+                                                    "question",
+                                                    wagtail.core.blocks.TextBlock(),
+                                                ),
+                                                (
+                                                    "answer",
+                                                    wagtail.core.blocks.RichTextBlock(),
+                                                ),
+                                            ]
+                                        ),
+                                        label="faq",
+                                    ),
+                                ),
+                            ]
+                        ),
+                    ),
+                    (
+                        "news",
+                        wagtail.core.blocks.ListBlock(
+                            wagtail.core.blocks.StructBlock(
+                                [
+                                    ("header", wagtail.core.blocks.CharBlock()),
+                                    (
+                                        "perex",
+                                        wagtail.core.blocks.RichTextBlock(
+                                            features=[
+                                                "h2",
+                                                "h3",
+                                                "h4",
+                                                "h5",
+                                                "bold",
+                                                "italic",
+                                                "ol",
+                                                "ul",
+                                                "hr",
+                                                "link",
+                                                "document-link",
+                                                "image",
+                                            ]
+                                        ),
+                                    ),
+                                    ("img", wagtail.images.blocks.ImageChooserBlock()),
+                                    ("link", wagtail.core.blocks.URLBlock()),
+                                    (
+                                        "date",
+                                        wagtail.core.blocks.DateBlock(
+                                            default=datetime.datetime(
+                                                2020,
+                                                12,
+                                                8,
+                                                13,
+                                                35,
+                                                3,
+                                                209883,
+                                                tzinfo=utc,
+                                            )
+                                        ),
+                                    ),
+                                ]
+                            ),
+                            label="aktuality",
+                        ),
+                    ),
+                ],
+                blank=True,
+                verbose_name="obsah stránky",
+            ),
+        ),
+    ]
diff --git a/green_deal/models.py b/green_deal/models.py
index 7b69d9e931a81548bd188d9b54156bb0b7170506..abe4c208ca5e38c9163707885578fbf17da88a10 100644
--- a/green_deal/models.py
+++ b/green_deal/models.py
@@ -1,4 +1,5 @@
 from django.db import models
+from django.utils import timezone
 from django.utils.translation import gettext_lazy
 from wagtail.admin.edit_handlers import (
     FieldPanel,
@@ -9,6 +10,7 @@ from wagtail.admin.edit_handlers import (
 from wagtail.core import blocks
 from wagtail.core.fields import StreamField
 from wagtail.core.models import Page
+from wagtail.images.blocks import ImageChooserBlock
 from wagtail.images.edit_handlers import ImageChooserPanel
 from wagtailmetadata.models import MetadataPageMixin
 
@@ -63,15 +65,28 @@ class ColumnsFaqBlock(blocks.StructBlock):
 
 
 class NewsBlock(blocks.StructBlock):
+    header = blocks.CharBlock()
+    perex = blocks.RichTextBlock(features=RICH_TEXT_FEATURES)
+    img = ImageChooserBlock()
+    link = blocks.URLBlock()
+    date = blocks.DateBlock(default=timezone.now())
+
+
+class StudiesBlock(blocks.StructBlock):
     header = blocks.CharBlock()
     text = blocks.RichTextBlock(features=RICH_TEXT_FEATURES)
 
+    class Meta:
+        label = "Text 1 sloupec"
+        icon = "doc-full"
+
 
 class GreenDealHomePage(MetadataPageMixin, Page):
     ### FIELDS
     content = StreamField(
         [
             ("text_2_columns", ColumnsTextBlock()),
+            ("text_1_column", StudiesBlock()),
             ("FAQ_columns", ColumnsFaqBlock()),
             ("news", blocks.ListBlock(NewsBlock(), label="aktuality")),
         ],
@@ -132,12 +147,22 @@ class GreenDealSubPage(Page, MetadataPageMixin):
     content = StreamField(
         [
             ("text_2_columns", ColumnsTextBlock()),
+            ("text_1_column", StudiesBlock()),
             ("FAQ_columns", ColumnsFaqBlock()),
             ("news", blocks.ListBlock(NewsBlock(), label="aktuality")),
         ],
         verbose_name="obsah stránky",
         blank=True,
     )
+    # settings
+    matomo_id = models.IntegerField(
+        "Matomo ID pro sledování návštěvnosti", blank=True, null=True
+    )
+    top_menu = StreamField(
+        [("item", MenuItemBlock())],
+        verbose_name="hornĂ­ menu",
+        blank=True,
+    )
 
     ### PANELS
 
@@ -148,35 +173,31 @@ class GreenDealSubPage(Page, MetadataPageMixin):
     promote_panels = [
         MultiFieldPanel(
             [
-                FieldPanel("slug"),
                 FieldPanel("seo_title"),
                 FieldPanel("search_description"),
                 ImageChooserPanel("search_image"),
-                HelpPanel(help.build(help.NO_SEO_TITLE, help.NO_SEARCH_IMAGE)),
+                HelpPanel(help.build(help.IMPORTANT_TITLE)),
             ],
             gettext_lazy("Common page configuration"),
         ),
     ]
 
-    settings_panels = []
+    settings_panels = [
+        FieldPanel("matomo_id"),
+        StreamFieldPanel("top_menu"),
+    ]
 
     ### RELATIONS
 
-    parent_page_types = ["green_deal.GreenDealHomePage"]
-    subpage_types = []
+    subpage_types = [
+        "green_deal.GreenDealSubPage",
+    ]
 
     ### OTHERS
 
     class Meta:
-        verbose_name = "Podstránka"
+        verbose_name = "Zelená dohoda pro regiony"
 
     @property
     def root_page(self):
-        if not hasattr(self, "_root_page"):
-            self._root_page = (
-                self.get_ancestors().type(GreenDealHomePage).specific().last()
-            )
-        return self._root_page
-
-    def get_meta_image(self):
-        return self.search_image or self.root_page.get_meta_image()
+        return self
diff --git a/green_deal/static/green_deal/css/style.css b/green_deal/static/green_deal/css/style.css
index fa59b98a51b09c9356b8ae6d5c64ae4b03d16b76..93ab0d0f2c5892e1785bff16cd7495d26533dc3f 100644
--- a/green_deal/static/green_deal/css/style.css
+++ b/green_deal/static/green_deal/css/style.css
@@ -496,6 +496,7 @@ a.home img {
 .content > .inner > .text {
   font-size: 110%;
   line-height: 1.5em;
+  text-align: justify;
   margin: auto;
 }
 .content h2 {
@@ -505,6 +506,7 @@ a.home img {
 }
 .content .inner p {
   padding-bottom: 20px;
+  text-align: justify;
 }
 .content .inner ul li p {
   padding-bottom: 0;
@@ -1754,10 +1756,25 @@ h3.white {
   /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to bottom, #f6f6f6 1%, #ffffff 100%);
   /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
-  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f6f6f6", endColorstr="#ffffff",GradientType=0 );
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f6f6f6", endColorstr="#ffffff", GradientType=0);
   /* IE6-9 */
 }
 
+.akt {
+  width: 100%;
+  display: flex;
+}
+.akt .imagebox {
+  width: 30%;
+  float: left;
+  margin-right: 1em;
+}
+.akt .text {
+  width: 70%;
+  text-align: justify;
+  float: right;
+}
+
 .fxbottom {
   position: absolute;
   bottom: -35px;
diff --git a/green_deal/static/green_deal/css/style.css.map b/green_deal/static/green_deal/css/style.css.map
index 759b3374247492a193da98af17151386abd83d9e..a880c6653b24b237ba84cb216b530ecb8df176d7 100644
--- a/green_deal/static/green_deal/css/style.css.map
+++ b/green_deal/static/green_deal/css/style.css.map
@@ -1 +1 @@
-{"version":3,"sourceRoot":"","sources":["style.scss","_addon.scss","_responsive.scss"],"names":[],"mappings":"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","file":"style.css"}
+{"version":3,"sourceRoot":"","sources":["style.scss","_addon.scss","_responsive.scss"],"names":[],"mappings":";AA4HA;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE,OAjJO;EAkJP;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA,YA9JG;EAgKH,OA/JM;EAgKN,aAnKK;EAoKL;EACA;;;AAGF;EAnFE,OAjFO;EAkFP;EAnDA;EACA;;AAmDA;EACE;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;;AAwEJ;EACE,OAzKO;;;AA4KT;EACE;EACA;EACA;;;AAGF;EACE;EACA,aAvLM;EAwLN,WA/KO;EAgLP;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,aAnMM;EAoMN;EACA,OAhMO;EAiMP;EACA;EACA;EACA;EACA;EACA;AAAc;;;AAGhB;EACE;EACA;EACA;;;AASF;EACE;;;AAGF;EACE;EACA,OA7NO;AA6NS;EAChB;EACA;EACA;EACA;EACA;;AAEA;EAnJA,OAjFO;EAkFP;EAnDA;EACA;;AAmDA;EACE;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;;AAyIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OAnPO;EAoPP;EACA;EACA;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;AAAa;EA3OX;EACA;EACA;;;AA6OJ;EACE,OApQM;EAqQN,WAtQS;EAuQT;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;AAAoB;EACpB;EACA;EA1PA;EACA;;;AA6PF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAIF;EACE;EACA;EACA,OAlUM;EAmUN;AAAkB;EAClB;;;AAMF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EArUA;EACA;;;AAwUF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;AAAkB;EAClB;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;AAAkB;EAClB;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAMF;EACE;EACA;EACA,OA9cI;EA+cJ;EACA;EACA;EACA;EAlbF;EACA;;AAwbA;EACE,OAzdK;EA0dL;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;AAAgB;;;AAGlB;EACE;AAAe;;;AAGjB;EACE;;;AAGF;AACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EApfF;;AAwfA;EACE;EACA;EACA;EACA;EA5fF;EASE;EACA;EACA;;AAqfA;EACE;EACA;EAlgBJ;EASE;EACA;EACA;;;AA8fJ;EACE;EACA;EACA;EACA;EACA;EACA;EArhBA,uBAshBiB;EArhBjB,oBAqhBiB;EAphBjB,eAohBiB;EACjB;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAGA;AAAA;AA2BA;EACE;EACA;;AAEA;EACE;;;AAIJ;EAhCE;EACA;EACA,aA+BiB;EA9BjB;EA+BA;EACA;EACA;;AAhCA;EACE;EACA,OAtjBI;EAujBJ,WAxjBO;EAyjBP;EACA,SAwBF;EAvBE,YAuBoB;;AArBpB;EACE;EACA;EACA;EACA;;AAsBJ;EACE;AAAoB;AACpB;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE,OAzmBK;;AA4mBP;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA,WAxnBS;EAynBT;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAznBA;;;AA6nBF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA,YAxpBO;;;AA2pBT;EACE;;;AAGF;EACE;;;AAIF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;AA+BA;;AA7BA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAIF;EACE;EACA;EAptBA;EACA;EACA;;AAqtBA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OAh0BO;;;AAm0BT;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE,kBA/8BO;EAg9BP;EACA;EACA;EACA;EACA;EACA;;;AAGF;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;AAAoB;EAx9BtB;EACA;;AA29BA;AAAiB;;AAGjB;EACE;EACA;EACA,OAjgCK;;AAqgCP;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EA5/BA;EACA;;AA+/BA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;AAAc;EACd;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,WA9iCO;EA+iCP;EACA;;AAGF;EACE;EACA;;AAGF;AAAU;EACR;;AAGF;EACE;EACA;EACA,OAlkCK;EAmkCL;;AAGF;EACE;EACA;EACA,OA3kCC;AA2kCW;EACZ;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA,kBAxoCK;EAyoCL;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;AAAkB;EAClB;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;;;AAGF;EACE;EACA;AAAuB;EACvB;EAhsCE;EACA;EACA;;;AAksCJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;;;AAIF;EA/pCE;EACA;EACA;EACA;;;AAgqCF;EAnqCE;EACA;EACA;EACA;;;AAoqCF;EAvqCE;EACA;EACA;EACA;;;AAwqCF;EA3qCE;EACA;EACA;EACA;;;AA4qCF;EA/qCE;EACA;EACA;EACA;;;AAgrCF;EAnrCE;EACA;EACA;EACA;;;AAorCF;EAvrCE;EACA;EACA;EACA;;;AAwrCF;AACA;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EA1vCE;EACA;EACA;EACA,aA3CK;EA4CL;EACA;;;AAyvCF;EACE;EACA;;;AAGF;EApvCE;EACA,WAovC+B;EAnvC/B,SAmvCsC;EAlvCtC,kBAkvCgB;EAjvChB,OAvDO;EAwDP,QAgvCiD;EA/uCjD,WA+uCoE;EA9uCpE,aA8uC4E;EA7uC5E,gBA6uCkF;EA5uClF;EACA;EACA;EA/BA;EACA;;AAmCA;EACE,OAouCc;EAnuCd,kBArEK;;;AA2yCT;EAxvCE;EACA,WAwvC+B;EAvvC/B,SAuvCsC;EAtvCtC,kBAtDO;EAuDP,OAqvCyB;EApvCzB,QAovC+C;EAnvC/C,WAmvCkE;EAlvClE,aAkvC0E;EAjvC1E,gBAivCgF;EAhvChF;EACA;EACA;EArDA,uBAuDmB;EAtDnB,oBAsDmB;EArDnB,eAqDmB;EAjCnB;EACA;;AAmCA;EACE,OApEK;EAqEL,kBAuuCuB;;;AAG3B;EA5vCE;EACA,WA4vCkC;EA3vClC,SA2vCyC;EA1vCzC,kBA0vCgB;EAzvChB,OAvDO;EAwDP,QAwvCoD;EAvvCpD,WAuvCuE;EAtvCvE,aAsvC+E;EArvC/E,gBAqvCqF;EApvCrF;EACA;EACA;EArDA,uBAuDmB;EAtDnB,oBAsDmB;EArDnB,eAqDmB;EAjCnB;EACA;;AAmCA;EACE,OA4uCc;EA3uCd,kBArEK;;;AAmzCT;EAhwCE;EACA,WAgwC+B;EA/vC/B,SA+vCqC;EA9vCrC,kBA8vCgB;EA7vChB,OAvDO;EAwDP,QA4vCkD;EA3vClD,WA2vCqE;EA1vCrE,aA0vC4E;EAzvC5E,gBAyvCkF;EAxvClF;EACA;EACA;EArDA,uBAuDmB;EAtDnB,oBAsDmB;EArDnB,eAqDmB;EAjCnB;EACA;;AAmCA;EACE,OAgvCc;EA/uCd,kBArEK;;;AAuzCT;EApwCE;EACA,WAowC+B;EAnwC/B,SAmwCsC;EAlwCtC,kBAtDO;EAuDP,OAiwCyB;EAhwCzB,QAgwCiD;EA/vCjD,WA+vCoE;EA9vCpE,aA8vC2E;EA7vC3E,gBA6vCgF;EA5vChF;EACA;EACA;EArDA,uBAuDmB;EAtDnB,oBAsDmB;EArDnB,eAqDmB;EAjCnB;EACA;EAyxCA;EACA;EACA;;AAxvCA;EACE,OApEK;EAqEL,kBAmvCuB;;;AAM3B;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;AAIJ;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EAEE;EACA;EACA;;;AAGF;EAEE;EACA;EACA;;;AAGF;EAEE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EAx9CE;EACA;;;AA29CF;EAn+CI;EACA;EACA;;;AAq+CJ;EAt/CE,uBAu/CiB;EAt/CjB,oBAs/CiB;EAr/CjB,eAq/CiB;;;AAGnB;EA75CE;EACA;EACA;EACA;EACA;;;AA65CF;EACE;EACA;EACA;EACA;EA5+CA;EACA;;;AA++CF;EACE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","file":"style.css"}
diff --git a/green_deal/static/green_deal/css/style.min.css b/green_deal/static/green_deal/css/style.min.css
index d594bf27fe88af68f0063fa21ef91ed08f452af3..a07af1c8ee122867112a254026a110e79cd9233d 100644
--- a/green_deal/static/green_deal/css/style.min.css
+++ b/green_deal/static/green_deal/css/style.min.css
@@ -1 +1 @@
-@charset "UTF-8";*,h1{margin:0;padding:0}#footer ul.mainmenu li a:hover,abbr,acronym,img,object{border:0}ul li{margin-left:20px;list-style-image:url(../images/li.png)}ol{list-style-position:inside}ol li{color:#fff;background-image:url(../images/olli.png);background-position:0;background-repeat:no-repeat;padding:.5em 11px}ol li span{color:#000;padding-left:1em}body,html{height:100%}body{width:100%;background:#fff;font-family:"Roboto Condensed",sans-serif;font-size:medium;line-height:1.3em}a,h3 a{font-weight:700;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a:link{text-decoration:underline}a:active,a:hover,a:visited{color:#000;text-decoration:none}a:active,a:hover{color:#4d4d4d}a:hover{text-decoration:underline}.content strong,a,body,h3 a,strong{color:#000}address{font-style:normal;padding:0;line-height:16px}h1{display:inline-block;font-family:"Roboto",sans-serif;font-size:250%;font-weight:200;text-align:left;line-height:1.2em}.content>.inner>.text,h2{line-height:1.5em;margin:auto}h2,h2 a:link{font-weight:700;text-transform:none}h2{font-family:"Roboto",sans-serif;font-size:130%;color:#000;padding-bottom:0;text-align:center}h2 a:link{text-decoration:underline}h2 a:hover,h3 a:link,h3 a:visited{text-decoration:none}h3,h4{font-weight:900}h3{font-size:150%;color:#000;padding:5px 0;margin-bottom:.2em;text-transform:uppercase;line-height:1.3em}h3 a:visited{color:#000}h3 a:active,h3 a:hover{color:#4d4d4d;text-decoration:none}h4{color:#1a1a1a;font-size:125%;padding:0 0 .5em}#slideshow h2,h4,h5{text-transform:none}a.home,h4,h5{text-decoration:none}a.home,h5{color:#000}h5{font-size:83.3333333333%;font-weight:700;padding:.5em 0}#header,#header_top{position:relative;width:100%}#header{height:150px;background:#fff;z-index:50;-webkit-box-shadow:2px 0 3px rgba(0,0,0,.2);-moz-box-shadow:2px 0 3px rgba(0,0,0,.2);box-shadow:2px 0 3px rgba(0,0,0,.2)}#header .inner,.content>.inner{width:90%;max-width:1100px;margin:auto}#header_top{height:45px;padding:20px 0;background-color:#212121;z-index:2}#flags a.active svg path,#flags a:hover svg path,#header_top .inner,.mainmenu li a,.mainmenu_menu li a{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}#header_top .inner{position:relative;margin:auto;padding-top:2px}#header_top .logo_cont{position:relative;float:left;width:160px;border-right:1px solid #fff}#header .title,#header_top .soc{position:relative;top:10px}#header .title{top:0}#header_top h1{left:20px}#header h1 span{top:25px;left:.5em}#header .logo{max-width:150px}a.home{font-size:100%;font-weight:400}a.home img{float:left}#flags,.head_menu{position:relative;top:15px;float:right}#cont,#flags a,#header h1 span,#header_top h1,a.home img{position:relative}#flags a{display:inline-block;width:44px;height:44px;margin-left:0;text-decoration:none;font-size:18px;text-transform:uppercase}#flags a span,#flags svg{position:absolute}#flags a.active svg path,#flags a:hover svg path{fill:#fff}#flags a span{top:10px;left:5px}#cont{max-width:1042px;margin:auto;padding-top:50px;overflow:hidden}#menu .social,#responsive_flags{display:none}.head_menu{top:20px;right:0;max-width:60%;z-index:50}#mob_menu_close,#mob_menu_open{display:none;position:absolute;float:right;top:95px;width:40px;background:0 0;border:0;cursor:pointer;transition:.5s all ease;outline:0}#mob_menu_open{right:5%}#mob_menu_close{left:5%;opacity:0}.rotate{transform:rotate3d(0,0,1,180deg);-webkit-transform:rotate3d(0,0,1,180deg)}.rotate_back{transform:rotate3d(0,0,1,-180deg);-webkit-transform:rotate3d(0,0,1,-180deg)}.mainmenu,.mainmenu_menu{position:relative;top:0;z-index:10;max-width:100%}.mainmenu li,.mainmenu_menu li{position:relative;display:inline-block;padding-right:.5em;padding-left:0;margin:0;list-style:none}.mainmenu li.border,.mainmenu_menu li.border{padding-left:0}.mainmenu li a,.mainmenu_menu li a{display:block;padding:0 .5em 22px;color:#000;font-size:130%;text-decoration:none;font-weight:700;text-transform:none}.mainmenu li a:hover,.mainmenu_menu li a:hover{color:#000;border-bottom:3px solid #000}#responsive_menu ul{left:-115%;padding:1em 4%;background:rgba(0,0,0,.8)}#footer ul.mainmenu>li ul li,#responsive_menu li.open ul,#slideshow p,a.home{display:block}#responsive_menu li.close ul{display:none}#footer strong,#responsive_menu .mainmenu li a,h1,p.underline strong{color:#fff}#slideshow{position:relative;top:0}#slideshow h2{text-align:center;font-size:350%;color:#fff;font-weight:900}#slideshow p{max-width:580px;font-size:160%;color:#fff;font-weight:300;line-height:1.8em;text-shadow:0 2px 2px #000}#slideshow a.button{margin-top:1em;background-color:rgba(255,255,255,.2);border:1px solid #fff;font-size:120%;text-shadow:-1px -1px 4px rgba(0,0,0,.3);-webkit-box-shadow:-2px -2px 5px rgba(0,0,0,.2);-moz-box-shadow:-2px -2px 5px rgba(0,0,0,.2);box-shadow:-2px -2px 5px rgba(0,0,0,.2)}#slideshow a.button:hover{background-color:rgba(255,255,255,.5);color:#fff;text-shadow:0 0 2px rgba(0,0,0,.3);-webkit-box-shadow:0 0 4px rgba(0,0,0,.2);-moz-box-shadow:0 0 4px rgba(0,0,0,.2);box-shadow:0 0 4px rgba(0,0,0,.2)}#slideshow_text{position:absolute;top:70px;right:21%;max-width:680px;padding:2em;text-align:center;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;background-color:rgba(0,0,0,.5);z-index:11}#slider{position:relative;padding-bottom:43.5%;height:0;overflow:hidden;transition:.5s all ease;margin-bottom:2em}#content{min-height:574px;font-size:100%}#content ul{padding:10px 0}.content{width:100%;padding-top:1em;margin:auto;top:0;left:0;z-index:20}.content>.inner{padding:3em 0;text-align:left}.content>.inner>.text{font-size:110%}#navigation,.content,.content h2,.content>.inner,.fixed1 a.button{position:relative}.content .inner p{padding-bottom:20px}#homepage.content>.inner,.contact_form .half p,.contact_form .twothird p,.content .inner ul li p{padding-bottom:0}.content ol,.content ul{padding-top:10px;padding-bottom:20px;font-size:100%}.content ol li ol,.content ul li ul{padding-top:10px;padding-bottom:10px}.fixed1 .inner,.fixed1 h2{position:relative;text-align:center}.fixed1 .inner{width:90%;max-width:1100px;margin:auto}.fixed1 h2{top:1.9em;padding-bottom:1.5em;color:#fff;font-size:320%;font-weight:200;text-transform:none;text-shadow:0 5px 5px #000}.fixed1 ul li{padding-bottom:.5em;color:#fff;font-size:130%;font-weight:300}.fixed1 a.button{top:1.5em;padding:.8em 2em;margin:auto;background:#000}.twothird ul{padding-top:0}.twothird ul li{margin-left:15px}.text_blocks h2{font-size:160%;color:#ff5b0b;font-weight:700;margin-bottom:.5em}.text_blocks p{color:#7f7f7f;font-size:120%;font-weight:300}.text_blocks .row{margin-bottom:20px}.text_blocks .row img{float:left;max-width:13%}.text_blocks .row .inner{padding-left:15%}.text_blocks a{text-decoration:none;color:#7f7f7f}.gray_bg{background-color:#eee}.contact_form{position:relative;margin-top:0;margin-bottom:3em}.contact_form>.inner{position:relative;max-width:1200px;width:90%;margin:auto}#navigation a,.contact_form label{display:inline-block;font-weight:400}.contact_form label{cursor:text;position:relative;top:2.5em;color:#000;font-size:90%}.contact_form input[type=text]{width:100%;margin-bottom:0;border-bottom:1px solid #fff}.contact_form textarea{width:100%;padding-left:0;border-bottom:1px solid #fff}.contact_form .half,.contact_form .twothird{background-color:#fff;color:#000;-webkit-box-shadow:3px 3px 15px #888;-moz-box-shadow:3px 3px 15px #888;box-shadow:3px 3px 15px #888}.contact_form .half .inner,.contact_form .twothird .inner{padding:2em 1em 2em 2em}.contact_form .half h3,.contact_form .twothird h3{font-size:110%;color:#000;font-weight:700}.contact_form .half h4,.contact_form .twothird h4{color:#fff;font-size:130%;font-weight:100}.contact_form .half hr.underline,.contact_form .twothird hr.underline{display:none;margin:inherit;margin-bottom:3em}.contact_form .third{margin-top:70px;max-height:600px;overflow-y:scroll}.contact_form .third .inner{padding-left:5em;padding-top:0;font-size:x-small}.contact_form .third h3{font-size:150%;text-transform:uppercase}.contact_form .third p{font-size:small}.contact_form .g-recaptcha{text-align:center}.contact_form .info{font-size:small;text-align:right;line-height:1.5em;font-weight:100}#navigation{top:-.5em;padding-bottom:1em;margin-bottom:2em;font-size:medium;border-bottom:2px solid #7f7f83}#navigation a{padding:3px 1.5em;margin-bottom:.5em;border-right:1px solid #7f7f83;font-size:120%;text-decoration:none;color:#fff}#navigation a:active,#navigation a:hover{color:#000}#navigation a:last-child{border-right:none}#kontakty p{padding-bottom:0!important}#kontakty .half hr.underline{margin:inherit;margin-bottom:3em}.kontakt{width:33%;display:inline-block;margin-bottom:5px}.kontakt h4{color:#329f4d}.kontakt img{float:left;max-width:25%;margin-right:2em}.content a.tel strong{font-weight:400}.content a.tel{text-decoration:none}#uvod .blog_post{padding-top:5px}.blog_post,.kontakt img{margin-bottom:2em}.blog_post h2{font-size:120%;color:#d04000;font-weight:700}#footer a,.blog_post h2 a,.pagination a{text-decoration:none;color:#24a3d8}.blog_post .mainpost{font-size:85%}.blog_post .link{font-size:small}.blog_post .date{padding-bottom:2em;font-size:small;font-style:italic;line-height:1em}.blog_post .button{display:inline-block;width:95px;height:26px;margin-top:10px;padding-left:10px;color:#fff;font-size:12px;text-decoration:none}.blog_post .stroke{border:1px solid #ccc;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}.box{width:31%;float:left;margin-top:2em;border:1px solid #ebebeb;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px}.box .inner{padding:2em;text-align:center}.box h3{font-size:180%;font-weight:300;line-height:1.2em;color:#6b6b6c}.box .underline{margin-bottom:3em}.box.middle{margin-left:4%;margin-right:4%}.block h2,.blog_post h2{padding-bottom:0;margin-bottom:0}.block h4{display:inline}.block .info{padding-bottom:2em}hr.underline{color:#fff;height:3px;width:85px;border:0;margin:auto auto 3em}.pagination{position:relative;width:100%;height:auto;margin:3em auto 4em;text-align:center;color:#787878;font-weight:400}.pagination span{padding:8px;margin:0 3px}.gdpr span,.pagination .ppage{position:relative;top:0;font-size:150%}#footer>.inner,.pagination .ppage_inactive{position:relative;padding:0;margin:0}.pagination .ppage{padding:17px 25px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.pagination a{position:relative;color:#000}.pagination .arrow{border:0;font-size:400%;color:#ccc;position:relative;top:9px}.pagination a span.arrow{color:gray;position:relative;top:9px}.pagination svg{position:absolute;width:45px;height:50px;top:-17px;left:12px}.pagination svg path{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.pagination a:hover svg path{fill:#ccc}#footer,#footer hr,hr.underline{background-color:#000}#footer{position:relative;top:0;width:100%;height:auto;color:#fff;font-size:90%;margin-top:30px}#footer>.inner{width:94%;max-width:1100px;margin:auto;padding:2em 0}#footer .menu{width:85%;float:left}#footer .social{float:left}#footer .eshop{display:inline-block;padding-bottom:2em;color:#000;font-weight:700}#footer h4{padding-top:0;padding-bottom:.5em;color:#fff;font-size:140%;font-weight:900;text-transform:none}#footer a{color:inherit;text-transform:none;font-weight:400}#footer ul{padding-left:0;padding-top:0}#footer ul.mainmenu{position:relative;top:0;left:0;width:auto;background:0 0}#footer ul.mainmenu>li,.pagination{display:block;padding:0}#footer ul.mainmenu>li a{padding:0;border:0;float:none;font-size:medium;font-weight:700;color:#fff}#footer ul.mainmenu>li ul li a{font-size:small;font-weight:300;color:#838383}#footer hr{max-width:215px;height:1px;margin-bottom:1.5em;border:0}#footer .hidden{height:0}#footer .submit{position:relative;left:-35px;top:8px;background:url(../images/lupa.png) 50% 0 no-repeat;width:25px;height:25px;min-width:inherit;border:0;padding:0;margin:0}#footer .search{width:80%}#footer .backlinks{text-align:center;padding:1em 2em;background-color:#333;font-size:x-small}.copyright,.copyright a{text-transform:uppercase;line-height:20px}.copyright{bottom:1em;text-align:left;font-size:75%}.copyright a{color:#000;position:relative;font-size:90%;font-weight:400}.copyleft{display:inline-block;transform:rotate(180deg)}.fright{width:20%;float:right;text-align:right;padding-left:5%;padding-bottom:4em}#counter{position:absolute;bottom:.5em;margin:auto;font-size:small;color:#000}#counter,.fotogalerie{text-align:center}.lightbox{position:relative;display:inline-block;line-height:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.googlemap iframe{width:100%;height:560px}.map{border:1px dashed #518d08;padding:10px;margin-top:20px}li.ct,li.doc,li.htm,li.jpg,li.pdf,li.tub,li.wmv{list-style:none;padding-left:25px;margin-left:0;background:url(../images/$filename.png) 0 50% no-repeat}fieldset,select{margin-bottom:10px}fieldset{border:2px #e1f3f8 solid;padding:10px}.fieldset,fieldset{background-color:#fff}label,legend{font-weight:700}legend{font-size:100%;padding:0 10px;border:1px #e1f3f8 solid;color:#377bba;background-color:#e1f3f8}input{margin-bottom:15px}input[type=password],input[type=text],textarea{background-color:#f6f6f6;color:#000;padding:.6em 10px;font-family:"Roboto Condensed",sans-serif;font-size:large;border:0}textarea{width:330px;height:100px}input[type=submit]{display:inline-block;min-width:160px;padding:.8em 2em;border:1px solid #000;font-size:medium;font-weight:700;text-transform:none;text-align:center;text-decoration:none;cursor:pointer;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a.button,a.button_m,a.button_s,input[type=submit]:hover{color:#fff;background-color:#000}a.button,a.button_m,a.button_s{display:inline-block;min-width:100px;padding:1em 2em;border:1px solid #000;font-size:medium;font-weight:700;text-transform:none;text-align:center;text-decoration:none;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a.button:hover,input[type=submit]{color:#000;background-color:#fff}a.button_m,a.button_s{min-width:120px;padding:.8em 1em;background-color:#fff7e4;color:#000}a.button_m:hover{color:#fff7e4;background-color:#000}a.button_s{min-width:80px;padding:.5em 1.5em;background-color:#fff;font-size:small}a.button_s:hover,a.promo_button{color:#fff;background-color:#000}a.promo_button{display:inline-block;min-width:150px;padding:.5em 1em;border:1px solid #000;font-weight:200;text-transform:none;text-decoration:none;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease;text-align:right;font-size:150%;line-height:1.2em}a.promo_button:hover{color:#000;background-color:#fff}input[type=checkbox],input[type=radio]{padding:0;margin:0 10px 0 0;border:0;background:0 0}input[type=checkbox]{transform:scale(1.5)}.must{color:red;font-size:150%}select{color:#707173;height:25px;padding-left:10px}label{font-size:105%;color:#666;padding-bottom:2px;display:block}input.short,label.short{width:260px}input.long,label.long{width:99%}input.minimal,label.minimal{width:100px}.input_cont{float:left;margin-right:20px}textarea.short{width:260px;height:80px}textarea.long{width:99%;height:80px}.minfloat{width:132px;float:left}a.linkout{color:#fff;position:relative;bottom:0;left:0;z-index:1}.gdpr{margin-top:1em}.gdpr span{top:-3px;font-size:small}.gdpr a{color:#000}input:-webkit-autofill,input:-webkit-autofill:focus input:-webkit-autofill,input:-webkit-autofill:hover,select:-webkit-autofill,select:-webkit-autofill:focus,select:-webkit-autofill:hover,textarea:-webkit-autofill,textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus{background:0 0;color:#bddfff!important;transition:background-color 5000s ease-in-out 0s}.error,.msg,.notice,.success{width:100%;font-weight:700;padding:5px 0;text-align:center;margin:auto;font-size:medium;color:#fff}.error{border-top:2px solid #000;border-bottom:2px solid #000;background:#b20400}.notice{border-top:2px solid #a19400;border-bottom:2px solid #a19400;background:#e6d302}.success{border-top:2px solid #0c0;border-bottom:2px solid #0c0;background:#090}#error{width:90%;max-width:1200px;margin:auto}#error h1{color:#b20400}#error p,#error ul{padding-bottom:1em}hr{color:#67b2b7;border:0;border-bottom:1px solid #67b2b7}hr.cleaner{clear:both}hr.cleaner,hr.cleanerie{height:1px;border:0;margin:-1em 0 0;visibility:hidden}.trans{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.shadow{-webkit-box-shadow:3px 3px 15px #888;-moz-box-shadow:3px 3px 15px #888;box-shadow:3px 3px 15px #888}.round{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.desaturate{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%)}#header_top a img,.arrow{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.arrow{border:solid #00523d;border-width:0 7px 7px 0;display:inline-block;padding:10px}.arrow.right{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.arrow.left{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.arrow.up{transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.arrow.down{transform:rotate(45deg);-webkit-transform:rotate(45deg)}.alpha50{filter:alpha(opacity=50);opacity:.5}.icon{position:relative;top:2px}.img{border:5px solid #d8ccbd;background-color:#fff;margin-bottom:20px;margin-right:0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px}.img_left,.left_img{float:left;margin:1em 2em 1em 0}.img_right,.right_img{float:right;margin:1em 0 1em 2em}.mini{font-size:x-small;line-height:15px}.small{font-size:small;line-height:13px}.half,.third{width:50%;float:left}.third{width:33.3333333333%}.quarter,.twothird{width:66.6666666667%;float:left}.quarter{width:25%}.threequarters{width:75%;float:left}.half .inner,.quarter .inner,.third .inner,.twothird .inner{padding:2em}.half .innerleft,.innerleft,.third .innerleft,.twothird .innerleft{padding-right:2em}.half .innerright,.innerright,.third .innerright,.twothird .innerright{padding-left:2em}p.underline{text-decoration:underline;padding-bottom:0!important}.justify{text-align:justify}.f_right{float:right}.f_left{float:left}.red{color:#fe0000}#sticky_menu.sticky a.home,#sticky_menu.sticky a.home strong,#sticky_menu.sticky ul.topmenu li a,.white,h3.white{color:#fff}h3.white{font-size:130%}.blue{color:#0296f0}.bgblue{background-color:#0296f0}.green{color:#67b2b7!important}.bggreen{background-color:#36af53}.gray{color:#757575}.head_menu ul.topmenu,.upper{text-transform:uppercase}.center,.content .center{text-align:center;margin:auto}.left,div.p h3{text-align:left}.tright{text-align:right}.stroke{border:3px solid #fff}.medium{font-size:medium}.italic{font-style:italic}.strong{font-weight:700}.clear{clear:both}.no{padding:0;margin:0}.hidden{visibility:hidden}.display_none,.hide{display:none}.display_block{display:block}.ofhide{overflow:hidden}.overlay{display:none;position:absolute;left:0}.gradient{background:-moz-linear-gradient(top,#f6f6f6 1%,#fff 100%);background:-webkit-linear-gradient(top,#f6f6f6 1%,#fff 100%);background:linear-gradient(to bottom,#f6f6f6 1%,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#f6f6f6", endColorstr="#ffffff",GradientType=0 )}.fxbottom{position:absolute;bottom:-35px;right:0;width:85%;max-width:1600px}.fxbottom img{transform:rotate(180deg)}.head_menu ul.topmenu{position:relative;margin-top:0;right:0;text-align:right;display:block}.head_menu ul.topmenu li a{font-size:130%;color:#000;font-weight:400;text-decoration:none;padding:0}.head_menu ul.topmenu li a:hover{color:#333;text-shadow:0 1px 3px #aaa}.head_menu ul.topmenu .active{color:#777}.head_menu ul.topmenu li{display:inline-block;list-style:none;padding:0;margin:0 0 0 2em}#sticky_menu.sticky a.home img{max-width:100px}#sticky_menu.sticky h1,.tcont h2{font-size:250%}#sticky_menu.sticky h1 span{top:0}#header_top a img{filter:gray;-webkit-filter:grayscale(1);filter:grayscale(1)}#header_top a:hover img{filter:gray;-webkit-filter:grayscale(0);filter:grayscale(0)}.tcont{position:relative;padding:1em 4%;background-color:rgba(0,0,0,.08);overflow:hidden}.tcont .inner{max-width:1100px;margin:auto}.tcont h2{text-transform:uppercase;font-weight:200;color:#888}.uvod_text{position:relative;top:30px;width:70%;float:left;text-align:center;padding-bottom:5em}.uvod_text h2{position:relative;font-size:250%;padding-bottom:20px}.uvod_text h2 span{position:relative;top:-.5em;font-weight:200;font-size:60%}.uvod_text p{font-size:large}.uvod_foto{position:relative;width:48%;float:right}.prehled{float:right;font-size:120%;padding-top:40px}.prehled,.prehled h3,div.p{position:relative}.harmonogram{width:40%;float:left}.zdroje{width:60%;float:right}.item_arrow{position:relative;top:5px}div.p{padding-bottom:1em}div.p:nth-child(2n){width:56%;padding-left:4%;float:right;text-align:justify}div.p:nth-child(2n-1){width:36%;padding-right:4%;float:left;text-align:justify;clear:both}div.p ol li{font-size:100%}.left_banners a,.right_banners a,div.p img{margin-bottom:1em}.right_banners{position:relative;float:right;margin-left:2em}.left_banners{position:relative;float:left;margin-right:2em}.akt h3{font-size:150%;font-weight:700}.akt{padding-bottom:2em}.img_cont1,table.gal a{display:block;position:relative}.img_cont1{width:100%;height:70%;margin-bottom:1em;max-height:380px;background:url(../images/table.jpg);background-attachment:fixed;background-position:left;background-repeat:no-repeat;background-size:auto}.refs,table.gal{position:relative}.refs{padding-top:1em;margin-bottom:3em;border-top:1px solid rgba(0,0,0,.05);border-bottom:1px solid rgba(0,0,0,.05)}.gallery{margin-top:20px}#kdo-jsem .gallery{margin-top:10px}table.gal{float:left;margin:0 10px 20px}table.gal a{width:230px;height:230px;overflow:hidden}table.table{width:100%;border-spacing:0;margin-bottom:2em;border-top:1px dashed #c4e9f2;border-bottom:1px dashed #c4e9f2}.content table strong{color:#00355f}table.table tr:nth-child(even){background:#f0fbff}table.table td{padding:10px 1em}table.table tr.border{border-top:1px dashed #c4e9f2}.field{float:left;margin-right:2em}#footer .social,#map{text-align:right}#map{float:right}#map span{display:block;background:url(../images/border.png) 0 0;padding:9px 9px 4px;margin-bottom:5px}#kontakt form{width:510px;float:right}#kontakt iframe{float:none}canvas,img,video{max-width:100%}@media (max-width:1600px){#slideshow_text{top:2em;right:5%}#slideshow_text h2{font-size:300%}#slideshow_text p{font-size:140%}}@media (max-width:1280px){#footer .half{width:40%}#footer .menu{width:50%}#footer .mainmenu li{float:none!important;min-height:inherit!important;padding-bottom:0!important}#footer .mainmenu ul{display:none}.googlemap iframe{width:100%!important}.mainmenu li,.mainmenu_menu li{padding-right:0}#qm0 li a,.mainmenu li a,.mainmenu_menu li a{font-size:100%}h2{padding-bottom:0}#slideshow_text{top:1em;padding:1em}#slideshow h2{font-size:180%}#slideshow_text p{font-size:110%}}@media (max-width:1050px){#menu .hide,#menu .mainmenu,#menu .mainmenu_menu,#qm0{display:none!important}#responsive_menu{position:fixed;width:100%;height:1px;top:80px;z-index:50;overflow:hidden}#responsive_menu.hide{display:block!important}#responsive_menu li{display:block;padding:.5em}#header{overflow:hidden}#responsive_menu #qm0,#responsive_menu .mainmenu,#responsive_menu .mainmenu_menu{font-size:100%;text-align:left}#responsive_menu #qm0 li a,#responsive_menu .mainmenu li a,#responsive_menu .mainmenu_menu li a{float:none;border-bottom:none;font-weight:400;padding:0}#responsive_menu #qm0 li a:hover,#responsive_menu .mainmenu li a:hover,#responsive_menu .mainmenu_menu li a:hover{border-bottom:none;color:#000}#responsive_menu .mainmenu li ul{padding-top:.5em}#responsive_menu .mainmenu li ul li{padding-left:1em}#responsive_menu .mainmenu li ul li a::before{content:url(../images/li.png);padding-right:5px}#responsive_menu .mainmenu li ul li a{text-transform:none}#responsive_menu button,.head_menu button{display:inline-block}.quarter_center.last{margin-right:10px}#cont{padding-top:50px}#header{position:relative}#header .hide{display:none!important}.head_menu{position:absolute;max-width:none;top:85px;right:-110%;width:100%;padding:50px 20px 0;background:#0f3234;background:linear-gradient(90deg,rgba(255,255,255,0) 0,#000 50%)}.head_menu ul.topmenu{position:relative;padding-right:0;padding-bottom:3em;margin-top:-25px;border:0;height:auto;font-size:130%;text-align:right;right:50px}.head_menu ul.topmenu li{display:inline-block;float:none;padding-bottom:1em}.head_menu ul.topmenu li a{float:none;border-bottom:none;color:#fff;font-size:100%}.head_menu ul.topmenu li a:hover{border-bottom:none}#mob_menu_open{display:inline-block}#mob_menu_close{z-index:100;top:100px}.addhtml{display:none}.sticky #mob_menu_open,sticky #mob_menu_close{right:4%}#slideshow_text h3{font-size:120%}#slideshow_text a.button{font-size:100%;padding:.8em 1.5em}#slideshow_text p{font-size:100%;line-height:1.5em}.fixed1 a.button{display:block;max-width:150px;top:1em;margin:auto}.fixed1 h2{font-size:150%}.akt{text-align:left}.gallery{text-align:center}#mob_menu_close,table.gal{display:inline-block}#kontakt form{display:block;width:90%;float:none}#kontakt iframe{width:100%!important;margin-top:20px}#footer .logo img{width:85%}#footer .mainmenu{font-size:110%}.box{width:90%;margin-left:5%}.boxes h2{font-size:90%}#homepage.content>.inner{padding-top:0;padding-bottom:0}.uvod_text h2{font-size:250%}.harmonogram,.prehled,.zdroje,table.gal{float:none}.zdroje{width:100%;padding-top:2em}.content>.inner{padding:2em 0}}@media (max-width:850px){.quarter{width:50%;float:none}.quarter,.third{text-align:center}#footer .quarter,.contact_form .inner .twothird,.half,.third{width:100%}#footer hr{max-width:100%}#footer .half{width:100%;padding-top:1em}#footer .half,#footer .mainmenu{text-align:center}#footer .mainmenu li{padding:inherit}#header_top .logo_cont{width:80px;padding-right:10px}#header_top .soc{top:0}#slideshow_text{max-width:80%}#slideshow_text p{font-size:100%}#slideshow_text h2{font-size:160%}#slideshow_text a.button,.twothird hr.underline{display:none}.text_blocks h2{font-size:140%}.text_blocks p{font-size:110%}h3{font-size:130%}#aktuality_uvod .text{text-align:center!important}.akt{width:90%}.akt,.akt .akt_text{height:auto}.akt .submit_cont{position:relative;margin:1em 0;bottom:0}.fixed1 h3{top:50px;font-size:200%}.cat h2{font-size:220%}#footer .logo,.uvod_foto{display:none}#footer .fright{padding-bottom:0}#footer ul{padding-bottom:2em}#footer ul li{display:inline-block}#footer .quarter:nth-child(2){text-align:center}#footer .quarter:nth-child(2) ul{direction:ltr}#footer .quarter:nth-child(2) ul li{margin-right:0}#footer .quarter:nth-child(2) h4{padding-right:0}#footer .social{text-align:center;float:none;padding-top:1em}#footer .social a img{position:relative;float:none}.uvod_text{width:100%}#homepage.content>.inner{padding-bottom:4em}}@media (max-width:700px){.quarter,.twothird{width:100%;text-align:center}.pagination span{font-size:small}#header a.home{font-size:140%}#header a.home strong{display:block}#menu .logo{display:none}#responsive_menu #qm0,#responsive_menu .mainmenu,#responsive_menu .mainmenu_menu{width:100%;left:-115%}.head_menu ul.topmenu li a{font-size:80%}h1{text-align:left}.portfolio{width:100%;margin-bottom:0}#slideshow_text{top:0}#slideshow_text p{font-size:90%}#slideshow_text h2,h1{font-size:130%}#menu .social{display:none}#flags{width:100px}#flags .flag,#responsive_flags{margin-right:0}.fixed1 h2{font-size:120%}.g-recaptcha>div{width:100%!important}.cats .cat{padding-bottom:2em}.akt h4{font-size:110%}}@media (max-width:500px){a.home{font-size:25px}#header_top .soc,#map,#slideshow_text,.fb,.instagram{display:none}.head_menu .topmenu li{padding-bottom:.4em}.head_menu .topmenu li a{text-shadow:0 1px 1px #fff}.head_menu ul.topmenu li{margin-left:1em}.head_menu ul.topmenu li a{font-size:65%}.akt img.f_right{max-width:90px}#footer .inner{font-size:small}#content .inner{border-top:0}.contact_form .info{text-align:center;float:none}.home img{max-width:85%}#footer .inner .quarter:nth-child(2){display:none}#head_img{margin-bottom:0}}@media (max-width:430px){#header{padding-bottom:0}}
+@charset "UTF-8";*,h1{margin:0;padding:0}#footer ul.mainmenu li a:hover,abbr,acronym,img,object{border:0}ul li{margin-left:20px;list-style-image:url(../images/li.png)}ol{list-style-position:inside}ol li{color:#fff;background-image:url(../images/olli.png);background-position:0;background-repeat:no-repeat;padding:.5em 11px}ol li span{color:#000;padding-left:1em}body,html{height:100%}body{width:100%;background:#fff;font-family:"Roboto Condensed",sans-serif;font-size:medium;line-height:1.3em}a,h3 a{font-weight:700;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a:link{text-decoration:underline}a:active,a:hover,a:visited{color:#000;text-decoration:none}a:active,a:hover{color:#4d4d4d}a:hover{text-decoration:underline}.content strong,a,body,h3 a,strong{color:#000}address{font-style:normal;padding:0;line-height:16px}h1{display:inline-block;font-family:"Roboto",sans-serif;font-size:250%;font-weight:200;text-align:left;line-height:1.2em}.content>.inner>.text,h2{line-height:1.5em;margin:auto}h2,h2 a:link{font-weight:700;text-transform:none}h2{font-family:"Roboto",sans-serif;font-size:130%;color:#000;padding-bottom:0;text-align:center}h2 a:link{text-decoration:underline}h2 a:hover,h3 a:link,h3 a:visited{text-decoration:none}h3,h4{font-weight:900}h3{font-size:150%;color:#000;padding:5px 0;margin-bottom:.2em;text-transform:uppercase;line-height:1.3em}h3 a:visited{color:#000}h3 a:active,h3 a:hover{color:#4d4d4d;text-decoration:none}h4{color:#1a1a1a;font-size:125%;padding:0 0 .5em}#slideshow h2,h4,h5{text-transform:none}a.home,h4,h5{text-decoration:none}a.home,h5{color:#000}h5{font-size:83.3333333333%;font-weight:700;padding:.5em 0}#header,#header_top{position:relative;width:100%}#header{height:150px;background:#fff;z-index:50;-webkit-box-shadow:2px 0 3px rgba(0,0,0,.2);-moz-box-shadow:2px 0 3px rgba(0,0,0,.2);box-shadow:2px 0 3px rgba(0,0,0,.2)}#header .inner,.content>.inner{width:90%;max-width:1100px;margin:auto}#header_top{height:45px;padding:20px 0;background-color:#212121;z-index:2}#flags a.active svg path,#flags a:hover svg path,#header_top .inner,.mainmenu li a,.mainmenu_menu li a{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}#header_top .inner{position:relative;margin:auto;padding-top:2px}#header_top .logo_cont{position:relative;float:left;width:160px;border-right:1px solid #fff}#header .title,#header_top .soc{position:relative;top:10px}#header .title{top:0}#header_top h1{left:20px}#header h1 span{top:25px;left:.5em}#header .logo{max-width:150px}a.home{font-size:100%;font-weight:400}a.home img{float:left}#flags,.head_menu{position:relative;top:15px;float:right}#cont,#flags a,#header h1 span,#header_top h1,a.home img{position:relative}#flags a{display:inline-block;width:44px;height:44px;margin-left:0;text-decoration:none;font-size:18px;text-transform:uppercase}#flags a span,#flags svg{position:absolute}#flags a.active svg path,#flags a:hover svg path{fill:#fff}#flags a span{top:10px;left:5px}#cont{max-width:1042px;margin:auto;padding-top:50px;overflow:hidden}#menu .social,#responsive_flags{display:none}.head_menu{top:20px;right:0;max-width:60%;z-index:50}#mob_menu_close,#mob_menu_open{display:none;position:absolute;float:right;top:95px;width:40px;background:0 0;border:0;cursor:pointer;transition:.5s all ease;outline:0}#mob_menu_open{right:5%}#mob_menu_close{left:5%;opacity:0}.rotate{transform:rotate3d(0,0,1,180deg);-webkit-transform:rotate3d(0,0,1,180deg)}.rotate_back{transform:rotate3d(0,0,1,-180deg);-webkit-transform:rotate3d(0,0,1,-180deg)}.mainmenu,.mainmenu_menu{position:relative;top:0;z-index:10;max-width:100%}.mainmenu li,.mainmenu_menu li{position:relative;display:inline-block;padding-right:.5em;padding-left:0;margin:0;list-style:none}.mainmenu li.border,.mainmenu_menu li.border{padding-left:0}.mainmenu li a,.mainmenu_menu li a{display:block;padding:0 .5em 22px;color:#000;font-size:130%;text-decoration:none;font-weight:700;text-transform:none}.mainmenu li a:hover,.mainmenu_menu li a:hover{color:#000;border-bottom:3px solid #000}#responsive_menu ul{left:-115%;padding:1em 4%;background:rgba(0,0,0,.8)}#footer ul.mainmenu>li ul li,#responsive_menu li.open ul,#slideshow p,a.home{display:block}#responsive_menu li.close ul{display:none}#footer strong,#responsive_menu .mainmenu li a,h1,p.underline strong{color:#fff}#slideshow{position:relative;top:0}#slideshow h2{text-align:center;font-size:350%;color:#fff;font-weight:900}#slideshow p{max-width:580px;font-size:160%;color:#fff;font-weight:300;line-height:1.8em;text-shadow:0 2px 2px #000}#slideshow a.button{margin-top:1em;background-color:rgba(255,255,255,.2);border:1px solid #fff;font-size:120%;text-shadow:-1px -1px 4px rgba(0,0,0,.3);-webkit-box-shadow:-2px -2px 5px rgba(0,0,0,.2);-moz-box-shadow:-2px -2px 5px rgba(0,0,0,.2);box-shadow:-2px -2px 5px rgba(0,0,0,.2)}#slideshow a.button:hover{background-color:rgba(255,255,255,.5);color:#fff;text-shadow:0 0 2px rgba(0,0,0,.3);-webkit-box-shadow:0 0 4px rgba(0,0,0,.2);-moz-box-shadow:0 0 4px rgba(0,0,0,.2);box-shadow:0 0 4px rgba(0,0,0,.2)}#slideshow_text{position:absolute;top:70px;right:21%;max-width:680px;padding:2em;text-align:center;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;background-color:rgba(0,0,0,.5);z-index:11}#slider{position:relative;padding-bottom:43.5%;height:0;overflow:hidden;transition:.5s all ease;margin-bottom:2em}#content{min-height:574px;font-size:100%}#content ul{padding:10px 0}.content{width:100%;padding-top:1em;margin:auto;top:0;left:0;z-index:20}.content>.inner{padding:3em 0;text-align:left}.content>.inner>.text{font-size:110%;text-align:justify}#navigation,.content,.content h2,.content>.inner,.fixed1 a.button{position:relative}.content .inner p{padding-bottom:20px;text-align:justify}#homepage.content>.inner,.contact_form .half p,.contact_form .twothird p,.content .inner ul li p{padding-bottom:0}.content ol,.content ul{padding-top:10px;padding-bottom:20px;font-size:100%}.content ol li ol,.content ul li ul{padding-top:10px;padding-bottom:10px}.fixed1 .inner,.fixed1 h2{position:relative;text-align:center}.fixed1 .inner{width:90%;max-width:1100px;margin:auto}.fixed1 h2{top:1.9em;padding-bottom:1.5em;color:#fff;font-size:320%;font-weight:200;text-transform:none;text-shadow:0 5px 5px #000}.fixed1 ul li{padding-bottom:.5em;color:#fff;font-size:130%;font-weight:300}.fixed1 a.button{top:1.5em;padding:.8em 2em;margin:auto;background:#000}.twothird ul{padding-top:0}.twothird ul li{margin-left:15px}.text_blocks h2{font-size:160%;color:#ff5b0b;font-weight:700;margin-bottom:.5em}.text_blocks p{color:#7f7f7f;font-size:120%;font-weight:300}.text_blocks .row{margin-bottom:20px}.text_blocks .row img{float:left;max-width:13%}.text_blocks .row .inner{padding-left:15%}.text_blocks a{text-decoration:none;color:#7f7f7f}.gray_bg{background-color:#eee}.contact_form{position:relative;margin-top:0;margin-bottom:3em}.contact_form>.inner{position:relative;max-width:1200px;width:90%;margin:auto}#navigation a,.contact_form label{display:inline-block;font-weight:400}.contact_form label{cursor:text;position:relative;top:2.5em;color:#000;font-size:90%}.contact_form input[type=text]{width:100%;margin-bottom:0;border-bottom:1px solid #fff}.contact_form textarea{width:100%;padding-left:0;border-bottom:1px solid #fff}.contact_form .half,.contact_form .twothird{background-color:#fff;color:#000;-webkit-box-shadow:3px 3px 15px #888;-moz-box-shadow:3px 3px 15px #888;box-shadow:3px 3px 15px #888}.contact_form .half .inner,.contact_form .twothird .inner{padding:2em 1em 2em 2em}.contact_form .half h3,.contact_form .twothird h3{font-size:110%;color:#000;font-weight:700}.contact_form .half h4,.contact_form .twothird h4{color:#fff;font-size:130%;font-weight:100}.contact_form .half hr.underline,.contact_form .twothird hr.underline{display:none;margin:inherit;margin-bottom:3em}.contact_form .third{margin-top:70px;max-height:600px;overflow-y:scroll}.contact_form .third .inner{padding-left:5em;padding-top:0;font-size:x-small}.contact_form .third h3{font-size:150%;text-transform:uppercase}.contact_form .third p{font-size:small}.contact_form .g-recaptcha{text-align:center}.contact_form .info{font-size:small;text-align:right;line-height:1.5em;font-weight:100}#navigation{top:-.5em;padding-bottom:1em;margin-bottom:2em;font-size:medium;border-bottom:2px solid #7f7f83}#navigation a{padding:3px 1.5em;margin-bottom:.5em;border-right:1px solid #7f7f83;font-size:120%;text-decoration:none;color:#fff}#navigation a:active,#navigation a:hover{color:#000}#navigation a:last-child{border-right:none}#kontakty p{padding-bottom:0!important}#kontakty .half hr.underline{margin:inherit;margin-bottom:3em}.kontakt{width:33%;display:inline-block;margin-bottom:5px}.kontakt h4{color:#329f4d}.kontakt img{float:left;max-width:25%;margin-right:2em}.content a.tel strong{font-weight:400}.content a.tel{text-decoration:none}#uvod .blog_post{padding-top:5px}.blog_post,.kontakt img{margin-bottom:2em}.blog_post h2{font-size:120%;color:#d04000;font-weight:700}#footer a,.blog_post h2 a,.pagination a{text-decoration:none;color:#24a3d8}.blog_post .mainpost{font-size:85%}.blog_post .link{font-size:small}.blog_post .date{padding-bottom:2em;font-size:small;font-style:italic;line-height:1em}.blog_post .button{display:inline-block;width:95px;height:26px;margin-top:10px;padding-left:10px;color:#fff;font-size:12px;text-decoration:none}.blog_post .stroke{border:1px solid #ccc;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}.box{width:31%;float:left;margin-top:2em;border:1px solid #ebebeb;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px}.box .inner{padding:2em;text-align:center}.box h3{font-size:180%;font-weight:300;line-height:1.2em;color:#6b6b6c}.box .underline{margin-bottom:3em}.box.middle{margin-left:4%;margin-right:4%}.block h2,.blog_post h2{padding-bottom:0;margin-bottom:0}.block h4{display:inline}.block .info{padding-bottom:2em}hr.underline{color:#fff;height:3px;width:85px;border:0;margin:auto auto 3em}.pagination{position:relative;width:100%;height:auto;margin:3em auto 4em;text-align:center;color:#787878;font-weight:400}.pagination span{padding:8px;margin:0 3px}.gdpr span,.pagination .ppage{position:relative;top:0;font-size:150%}#footer>.inner,.pagination .ppage_inactive{position:relative;padding:0;margin:0}.pagination .ppage{padding:17px 25px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.pagination a{position:relative;color:#000}.pagination .arrow{border:0;font-size:400%;color:#ccc;position:relative;top:9px}.pagination a span.arrow{color:gray;position:relative;top:9px}.pagination svg{position:absolute;width:45px;height:50px;top:-17px;left:12px}.pagination svg path{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.pagination a:hover svg path{fill:#ccc}#footer,#footer hr,hr.underline{background-color:#000}#footer{position:relative;top:0;width:100%;height:auto;color:#fff;font-size:90%;margin-top:30px}#footer>.inner{width:94%;max-width:1100px;margin:auto;padding:2em 0}#footer .menu{width:85%;float:left}#footer .social{float:left}#footer .eshop{display:inline-block;padding-bottom:2em;color:#000;font-weight:700}#footer h4{padding-top:0;padding-bottom:.5em;color:#fff;font-size:140%;font-weight:900;text-transform:none}#footer a{color:inherit;text-transform:none;font-weight:400}#footer ul{padding-left:0;padding-top:0}#footer ul.mainmenu{position:relative;top:0;left:0;width:auto;background:0 0}#footer ul.mainmenu>li,.pagination{display:block;padding:0}#footer ul.mainmenu>li a{padding:0;border:0;float:none;font-size:medium;font-weight:700;color:#fff}#footer ul.mainmenu>li ul li a{font-size:small;font-weight:300;color:#838383}#footer hr{max-width:215px;height:1px;margin-bottom:1.5em;border:0}#footer .hidden{height:0}#footer .submit{position:relative;left:-35px;top:8px;background:url(../images/lupa.png) 50% 0 no-repeat;width:25px;height:25px;min-width:inherit;border:0;padding:0;margin:0}#footer .search{width:80%}#footer .backlinks{text-align:center;padding:1em 2em;background-color:#333;font-size:x-small}.copyright,.copyright a{text-transform:uppercase;line-height:20px}.copyright{bottom:1em;text-align:left;font-size:75%}.copyright a{color:#000;position:relative;font-size:90%;font-weight:400}.copyleft{display:inline-block;transform:rotate(180deg)}.fright{width:20%;float:right;text-align:right;padding-left:5%;padding-bottom:4em}#counter{position:absolute;bottom:.5em;margin:auto;font-size:small;color:#000}#counter,.fotogalerie{text-align:center}.lightbox{position:relative;display:inline-block;line-height:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.googlemap iframe{width:100%;height:560px}.map{border:1px dashed #518d08;padding:10px;margin-top:20px}li.ct,li.doc,li.htm,li.jpg,li.pdf,li.tub,li.wmv{list-style:none;padding-left:25px;margin-left:0;background:url(../images/$filename.png) 0 50% no-repeat}fieldset,select{margin-bottom:10px}fieldset{border:2px #e1f3f8 solid;padding:10px}.fieldset,fieldset{background-color:#fff}label,legend{font-weight:700}legend{font-size:100%;padding:0 10px;border:1px #e1f3f8 solid;color:#377bba;background-color:#e1f3f8}input{margin-bottom:15px}input[type=password],input[type=text],textarea{background-color:#f6f6f6;color:#000;padding:.6em 10px;font-family:"Roboto Condensed",sans-serif;font-size:large;border:0}textarea{width:330px;height:100px}input[type=submit]{display:inline-block;min-width:160px;padding:.8em 2em;border:1px solid #000;font-size:medium;font-weight:700;text-transform:none;text-align:center;text-decoration:none;cursor:pointer;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a.button,a.button_m,a.button_s,input[type=submit]:hover{color:#fff;background-color:#000}a.button,a.button_m,a.button_s{display:inline-block;min-width:100px;padding:1em 2em;border:1px solid #000;font-size:medium;font-weight:700;text-transform:none;text-align:center;text-decoration:none;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease}a.button:hover,input[type=submit]{color:#000;background-color:#fff}a.button_m,a.button_s{min-width:120px;padding:.8em 1em;background-color:#fff7e4;color:#000}a.button_m:hover{color:#fff7e4;background-color:#000}a.button_s{min-width:80px;padding:.5em 1.5em;background-color:#fff;font-size:small}a.button_s:hover,a.promo_button{color:#fff;background-color:#000}a.promo_button{display:inline-block;min-width:150px;padding:.5em 1em;border:1px solid #000;font-weight:200;text-transform:none;text-decoration:none;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-transition:.4s all ease;-webkit-transition:.4s all ease;text-align:right;font-size:150%;line-height:1.2em}a.promo_button:hover{color:#000;background-color:#fff}input[type=checkbox],input[type=radio]{padding:0;margin:0 10px 0 0;border:0;background:0 0}input[type=checkbox]{transform:scale(1.5)}.must{color:red;font-size:150%}select{color:#707173;height:25px;padding-left:10px}label{font-size:105%;color:#666;padding-bottom:2px;display:block}input.short,label.short{width:260px}input.long,label.long{width:99%}input.minimal,label.minimal{width:100px}.input_cont{float:left;margin-right:20px}textarea.short{width:260px;height:80px}textarea.long{width:99%;height:80px}.minfloat{width:132px;float:left}a.linkout{color:#fff;position:relative;bottom:0;left:0;z-index:1}.gdpr{margin-top:1em}.gdpr span{top:-3px;font-size:small}.gdpr a{color:#000}input:-webkit-autofill,input:-webkit-autofill:focus input:-webkit-autofill,input:-webkit-autofill:hover,select:-webkit-autofill,select:-webkit-autofill:focus,select:-webkit-autofill:hover,textarea:-webkit-autofill,textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus{background:0 0;color:#bddfff!important;transition:background-color 5000s ease-in-out 0s}.error,.msg,.notice,.success{width:100%;font-weight:700;padding:5px 0;text-align:center;margin:auto;font-size:medium;color:#fff}.error{border-top:2px solid #000;border-bottom:2px solid #000;background:#b20400}.notice{border-top:2px solid #a19400;border-bottom:2px solid #a19400;background:#e6d302}.success{border-top:2px solid #0c0;border-bottom:2px solid #0c0;background:#090}#error{width:90%;max-width:1200px;margin:auto}#error h1{color:#b20400}#error p,#error ul{padding-bottom:1em}hr{color:#67b2b7;border:0;border-bottom:1px solid #67b2b7}hr.cleaner{clear:both}hr.cleaner,hr.cleanerie{height:1px;border:0;margin:-1em 0 0;visibility:hidden}.trans{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.shadow{-webkit-box-shadow:3px 3px 15px #888;-moz-box-shadow:3px 3px 15px #888;box-shadow:3px 3px 15px #888}.round{-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}.desaturate{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%)}#header_top a img,.arrow{-moz-transition:.4s all ease;-webkit-transition:.4s all ease}.arrow{border:solid #00523d;border-width:0 7px 7px 0;display:inline-block;padding:10px}.arrow.right{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.arrow.left{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.arrow.up{transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.arrow.down{transform:rotate(45deg);-webkit-transform:rotate(45deg)}.alpha50{filter:alpha(opacity=50);opacity:.5}.icon{position:relative;top:2px}.img{border:5px solid #d8ccbd;background-color:#fff;margin-bottom:20px;margin-right:0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px}.img_left,.left_img{float:left;margin:1em 2em 1em 0}.img_right,.right_img{float:right;margin:1em 0 1em 2em}.mini{font-size:x-small;line-height:15px}.small{font-size:small;line-height:13px}.half,.third{width:50%;float:left}.third{width:33.3333333333%}.quarter,.twothird{width:66.6666666667%;float:left}.quarter{width:25%}.threequarters{width:75%;float:left}.half .inner,.quarter .inner,.third .inner,.twothird .inner{padding:2em}.half .innerleft,.innerleft,.third .innerleft,.twothird .innerleft{padding-right:2em}.half .innerright,.innerright,.third .innerright,.twothird .innerright{padding-left:2em}p.underline{text-decoration:underline;padding-bottom:0!important}.justify{text-align:justify}.f_right{float:right}.f_left{float:left}.red{color:#fe0000}#sticky_menu.sticky a.home,#sticky_menu.sticky a.home strong,#sticky_menu.sticky ul.topmenu li a,.white,h3.white{color:#fff}h3.white{font-size:130%}.blue{color:#0296f0}.bgblue{background-color:#0296f0}.green{color:#67b2b7!important}.bggreen{background-color:#36af53}.gray{color:#757575}.head_menu ul.topmenu,.upper{text-transform:uppercase}.center,.content .center{text-align:center;margin:auto}.left,div.p h3{text-align:left}.tright{text-align:right}.stroke{border:3px solid #fff}.medium{font-size:medium}.italic{font-style:italic}.strong{font-weight:700}.clear{clear:both}.no{padding:0;margin:0}.hidden{visibility:hidden}.display_none,.hide{display:none}.display_block{display:block}.ofhide{overflow:hidden}.overlay{display:none;position:absolute;left:0}.gradient{background:-moz-linear-gradient(top,#f6f6f6 1%,#fff 100%);background:-webkit-linear-gradient(top,#f6f6f6 1%,#fff 100%);background:linear-gradient(to bottom,#f6f6f6 1%,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#f6f6f6", endColorstr="#ffffff", GradientType=0)}.akt{width:100%;display:flex}.akt .imagebox{width:30%;float:left;margin-right:1em}.akt .text{width:70%;text-align:justify;float:right}.fxbottom{position:absolute;bottom:-35px;right:0;width:85%;max-width:1600px}.fxbottom img{transform:rotate(180deg)}.head_menu ul.topmenu{position:relative;margin-top:0;right:0;text-align:right;display:block}.head_menu ul.topmenu li a{font-size:130%;color:#000;font-weight:400;text-decoration:none;padding:0}.head_menu ul.topmenu li a:hover{color:#333;text-shadow:0 1px 3px #aaa}.head_menu ul.topmenu .active{color:#777}.head_menu ul.topmenu li{display:inline-block;list-style:none;padding:0;margin:0 0 0 2em}#sticky_menu.sticky a.home img{max-width:100px}#sticky_menu.sticky h1,.tcont h2{font-size:250%}#sticky_menu.sticky h1 span{top:0}#header_top a img{filter:gray;-webkit-filter:grayscale(1);filter:grayscale(1)}#header_top a:hover img{filter:gray;-webkit-filter:grayscale(0);filter:grayscale(0)}.tcont{position:relative;padding:1em 4%;background-color:rgba(0,0,0,.08);overflow:hidden}.tcont .inner{max-width:1100px;margin:auto}.tcont h2{text-transform:uppercase;font-weight:200;color:#888}.uvod_text{position:relative;top:30px;width:70%;float:left;text-align:center;padding-bottom:5em}.uvod_text h2{position:relative;font-size:250%;padding-bottom:20px}.uvod_text h2 span{position:relative;top:-.5em;font-weight:200;font-size:60%}.uvod_text p{font-size:large}.uvod_foto{position:relative;width:48%;float:right}.prehled{float:right;font-size:120%;padding-top:40px}.prehled,.prehled h3,div.p{position:relative}.harmonogram{width:40%;float:left}.zdroje{width:60%;float:right}.item_arrow{position:relative;top:5px}div.p{padding-bottom:1em}div.p:nth-child(2n){width:56%;padding-left:4%;float:right;text-align:justify}div.p:nth-child(2n-1){width:36%;padding-right:4%;float:left;text-align:justify;clear:both}div.p ol li{font-size:100%}.left_banners a,.right_banners a,div.p img{margin-bottom:1em}.right_banners{position:relative;float:right;margin-left:2em}.left_banners{position:relative;float:left;margin-right:2em}.akt h3{font-size:150%;font-weight:700}.akt{padding-bottom:2em}.img_cont1,table.gal a{display:block;position:relative}.img_cont1{width:100%;height:70%;margin-bottom:1em;max-height:380px;background:url(../images/table.jpg);background-attachment:fixed;background-position:left;background-repeat:no-repeat;background-size:auto}.refs,table.gal{position:relative}.refs{padding-top:1em;margin-bottom:3em;border-top:1px solid rgba(0,0,0,.05);border-bottom:1px solid rgba(0,0,0,.05)}.gallery{margin-top:20px}#kdo-jsem .gallery{margin-top:10px}table.gal{float:left;margin:0 10px 20px}table.gal a{width:230px;height:230px;overflow:hidden}table.table{width:100%;border-spacing:0;margin-bottom:2em;border-top:1px dashed #c4e9f2;border-bottom:1px dashed #c4e9f2}.content table strong{color:#00355f}table.table tr:nth-child(even){background:#f0fbff}table.table td{padding:10px 1em}table.table tr.border{border-top:1px dashed #c4e9f2}.field{float:left;margin-right:2em}#footer .social,#map{text-align:right}#map{float:right}#map span{display:block;background:url(../images/border.png) 0 0;padding:9px 9px 4px;margin-bottom:5px}#kontakt form{width:510px;float:right}#kontakt iframe{float:none}canvas,img,video{max-width:100%}@media (max-width:1600px){#slideshow_text{top:2em;right:5%}#slideshow_text h2{font-size:300%}#slideshow_text p{font-size:140%}}@media (max-width:1280px){#footer .half{width:40%}#footer .menu{width:50%}#footer .mainmenu li{float:none!important;min-height:inherit!important;padding-bottom:0!important}#footer .mainmenu ul{display:none}.googlemap iframe{width:100%!important}.mainmenu li,.mainmenu_menu li{padding-right:0}#qm0 li a,.mainmenu li a,.mainmenu_menu li a{font-size:100%}h2{padding-bottom:0}#slideshow_text{top:1em;padding:1em}#slideshow h2{font-size:180%}#slideshow_text p{font-size:110%}}@media (max-width:1050px){#menu .hide,#menu .mainmenu,#menu .mainmenu_menu,#qm0{display:none!important}#responsive_menu{position:fixed;width:100%;height:1px;top:80px;z-index:50;overflow:hidden}#responsive_menu.hide{display:block!important}#responsive_menu li{display:block;padding:.5em}#header{overflow:hidden}#responsive_menu #qm0,#responsive_menu .mainmenu,#responsive_menu .mainmenu_menu{font-size:100%;text-align:left}#responsive_menu #qm0 li a,#responsive_menu .mainmenu li a,#responsive_menu .mainmenu_menu li a{float:none;border-bottom:none;font-weight:400;padding:0}#responsive_menu #qm0 li a:hover,#responsive_menu .mainmenu li a:hover,#responsive_menu .mainmenu_menu li a:hover{border-bottom:none;color:#000}#responsive_menu .mainmenu li ul{padding-top:.5em}#responsive_menu .mainmenu li ul li{padding-left:1em}#responsive_menu .mainmenu li ul li a::before{content:url(../images/li.png);padding-right:5px}#responsive_menu .mainmenu li ul li a{text-transform:none}#responsive_menu button,.head_menu button{display:inline-block}.quarter_center.last{margin-right:10px}#cont{padding-top:50px}#header{position:relative}#header .hide{display:none!important}.head_menu{position:absolute;max-width:none;top:85px;right:-110%;width:100%;padding:50px 20px 0;background:#0f3234;background:linear-gradient(90deg,rgba(255,255,255,0) 0,#000 50%)}.head_menu ul.topmenu{position:relative;padding-right:0;padding-bottom:3em;margin-top:-25px;border:0;height:auto;font-size:130%;text-align:right;right:50px}.head_menu ul.topmenu li{display:inline-block;float:none;padding-bottom:1em}.head_menu ul.topmenu li a{float:none;border-bottom:none;color:#fff;font-size:100%}.head_menu ul.topmenu li a:hover{border-bottom:none}#mob_menu_open{display:inline-block}#mob_menu_close{z-index:100;top:100px}.addhtml{display:none}.sticky #mob_menu_open,sticky #mob_menu_close{right:4%}#slideshow_text h3{font-size:120%}#slideshow_text a.button{font-size:100%;padding:.8em 1.5em}#slideshow_text p{font-size:100%;line-height:1.5em}.fixed1 a.button{display:block;max-width:150px;top:1em;margin:auto}.fixed1 h2{font-size:150%}.akt{text-align:left}.gallery{text-align:center}#mob_menu_close,table.gal{display:inline-block}#kontakt form{display:block;width:90%;float:none}#kontakt iframe{width:100%!important;margin-top:20px}#footer .logo img{width:85%}#footer .mainmenu{font-size:110%}.box{width:90%;margin-left:5%}.boxes h2{font-size:90%}#homepage.content>.inner{padding-top:0;padding-bottom:0}.uvod_text h2{font-size:250%}.harmonogram,.prehled,.zdroje,table.gal{float:none}.zdroje{width:100%;padding-top:2em}.content>.inner{padding:2em 0}}@media (max-width:850px){.quarter{width:50%;float:none}.quarter,.third{text-align:center}#footer .quarter,.contact_form .inner .twothird,.half,.third{width:100%}#footer hr{max-width:100%}#footer .half{width:100%;padding-top:1em}#footer .half,#footer .mainmenu{text-align:center}#footer .mainmenu li{padding:inherit}#header_top .logo_cont{width:80px;padding-right:10px}#header_top .soc{top:0}#slideshow_text{max-width:80%}#slideshow_text p{font-size:100%}#slideshow_text h2{font-size:160%}#slideshow_text a.button,.twothird hr.underline{display:none}.text_blocks h2{font-size:140%}.text_blocks p{font-size:110%}h3{font-size:130%}#aktuality_uvod .text{text-align:center!important}.akt{width:90%}.akt,.akt .akt_text{height:auto}.akt .submit_cont{position:relative;margin:1em 0;bottom:0}.fixed1 h3{top:50px;font-size:200%}.cat h2{font-size:220%}#footer .logo,.uvod_foto{display:none}#footer .fright{padding-bottom:0}#footer ul{padding-bottom:2em}#footer ul li{display:inline-block}#footer .quarter:nth-child(2){text-align:center}#footer .quarter:nth-child(2) ul{direction:ltr}#footer .quarter:nth-child(2) ul li{margin-right:0}#footer .quarter:nth-child(2) h4{padding-right:0}#footer .social{text-align:center;float:none;padding-top:1em}#footer .social a img{position:relative;float:none}.uvod_text{width:100%}#homepage.content>.inner{padding-bottom:4em}}@media (max-width:700px){.quarter,.twothird{width:100%;text-align:center}.pagination span{font-size:small}#header a.home{font-size:140%}#header a.home strong{display:block}#menu .logo{display:none}#responsive_menu #qm0,#responsive_menu .mainmenu,#responsive_menu .mainmenu_menu{width:100%;left:-115%}.head_menu ul.topmenu li a{font-size:80%}h1{text-align:left}.portfolio{width:100%;margin-bottom:0}#slideshow_text{top:0}#slideshow_text p{font-size:90%}#slideshow_text h2,h1{font-size:130%}#menu .social{display:none}#flags{width:100px}#flags .flag,#responsive_flags{margin-right:0}.fixed1 h2{font-size:120%}.g-recaptcha>div{width:100%!important}.cats .cat{padding-bottom:2em}.akt h4{font-size:110%}}@media (max-width:500px){a.home{font-size:25px}#header_top .soc,#map,#slideshow_text,.fb,.instagram{display:none}.head_menu .topmenu li{padding-bottom:.4em}.head_menu .topmenu li a{text-shadow:0 1px 1px #fff}.head_menu ul.topmenu li{margin-left:1em}.head_menu ul.topmenu li a{font-size:65%}.akt img.f_right{max-width:90px}#footer .inner{font-size:small}#content .inner{border-top:0}.contact_form .info{text-align:center;float:none}.home img{max-width:85%}#footer .inner .quarter:nth-child(2){display:none}#head_img{margin-bottom:0}}@media (max-width:430px){#header{padding-bottom:0}}
diff --git a/green_deal/static/green_deal/css/style.scss b/green_deal/static/green_deal/css/style.scss
index 1d3cd46147a61e90a9f992ae1cae07636f26639d..f1a316bd668612e5d6f0be676d982e8e30ad2cfc 100644
--- a/green_deal/static/green_deal/css/style.scss
+++ b/green_deal/static/green_deal/css/style.scss
@@ -17,14 +17,16 @@ $h1size: 250%;
   -moz-border-radius: $radius;
   border-radius: $radius;
 }
+
 @mixin textshadow($top: 1px, $left: 0px, $blur: 0, $color: rgba(0,0,0,0.5)) {
   text-shadow: $left $top $blur $color;
 }
+
 @mixin boxshadow($top: 1px, $left: 0px, $blur: 5px, $color: rgba(0,0,0,0.5), $inset: false) {
   @if $inset {
-    -webkit-box-shadow:inset $top $left $blur $color;
-    -moz-box-shadow:inset $top $left $blur $color;
-    box-shadow:inset $top $left $blur $color;
+    -webkit-box-shadow: inset $top $left $blur $color;
+    -moz-box-shadow: inset $top $left $blur $color;
+    box-shadow: inset $top $left $blur $color;
   } @else {
     -webkit-box-shadow: $top $left $blur $color;
     -moz-box-shadow: $top $left $blur $color;
@@ -32,39 +34,77 @@ $h1size: 250%;
   }
 }
 
-@mixin trans ($time: .4s){
-  -moz-transition: $time all ease; -webkit-transition: $time all ease;
+@mixin trans($time: .4s) {
+  -moz-transition: $time all ease;
+  -webkit-transition: $time all ease;
 }
-@mixin textinput (){
-  background-color: #f6f6f6; color: #000; padding: 0.6em 10px 0.6em 10px; font-family: $font; font-size: large; border: 0;
+
+@mixin textinput() {
+  background-color: #f6f6f6;
+  color: #000;
+  padding: 0.6em 10px 0.6em 10px;
+  font-family: $font;
+  font-size: large;
+  border: 0;
 }
-@mixin saturateimg ($amount){
+
+@mixin saturateimg($amount) {
   filter: gray; /* IE6-9 */
   -webkit-filter: grayscale($amount); /* Google Chrome, Safari 6+ & Opera 15+ */
   filter: grayscale($amount); /* Microsoft Edge and Firefox 35+ */
 }
+
 @mixin button($background: #333, $color: #fff, $minwidth: 80px, $paddingxy: 1em 2em, $border: 0, $fontsize: large, $fontweight: bold, $texttransform: none, $isrounded: false) {
-  display: inline-block; min-width: $minwidth; padding: $paddingxy;
-  background-color: $background; color: $color; border: $border;
-  font-size: $fontsize; font-weight: $fontweight; text-transform: $texttransform; text-align: center; text-decoration: none;
+  display: inline-block;
+  min-width: $minwidth;
+  padding: $paddingxy;
+  background-color: $background;
+  color: $color;
+  border: $border;
+  font-size: $fontsize;
+  font-weight: $fontweight;
+  text-transform: $texttransform;
+  text-align: center;
+  text-decoration: none;
   cursor: pointer;
-  @if $isrounded == true {@include rounded(5px);}
+  @if $isrounded == true {
+    @include rounded(5px);
+  }
   @include trans;
-  &:hover {color: $background; background-color: $color;}
+  &:hover {
+    color: $background;
+    background-color: $color;
+  }
 }
 
-@mixin filetype($filename){
-  list-style: none; padding-left: 25px; margin-left: 0;
+@mixin filetype($filename) {
+  list-style: none;
+  padding-left: 25px;
+  margin-left: 0;
   background: url("../images/$filename.png") 0 50% no-repeat;
 }
-@mixin ahref($color,$underline: true,$bold: true){
-  color: $color; font-weight: if($bold == true,bold,inherit);
-  &:link { text-decoration: if($underline == true, underline, none);}
-  &:visited {color: darken($color, 20%); text-decoration: none;}
-  &:active {color: lighten($color, 30%); text-decoration: none;}
-  &:hover {color: lighten($color, 30%); text-decoration: if($underline == true, underline, none);}
+
+@mixin ahref($color,$underline: true,$bold: true) {
+  color: $color;
+  font-weight: if($bold == true, bold, inherit);
+  &:link {
+    text-decoration: if($underline == true, underline, none);
+  }
+  &:visited {
+    color: darken($color, 20%);
+    text-decoration: none;
+  }
+  &:active {
+    color: lighten($color, 30%);
+    text-decoration: none;
+  }
+  &:hover {
+    color: lighten($color, 30%);
+    text-decoration: if($underline == true, underline, none);
+  }
   @include trans;
 }
+
 @mixin filter($filter-type,$filter-amount) {
   -webkit-filter: unquote($filter-type+unquote('(#{$filter-amount})'));
   -moz-filter: unquote($filter-type+unquote('(#{$filter-amount})'));
@@ -79,75 +119,316 @@ $h1size: 250%;
   background: -webkit-linear-gradient(legacy-direction($direction), $color-stops);
   background: linear-gradient($direction, $color-stops);
 }
+
 //a.button_m {@include button(#fff7e4,$acolor,120px,1em 1em,1px solid $acolor,medium,bold,none,true); }
 
 * {
-margin: 0px 0px 0px 0px;
-padding: 0px 0px 0px 0px;
+  margin: 0px 0px 0px 0px;
+  padding: 0px 0px 0px 0px;
+}
+
+fieldset, img, abbr, acronym, object {
+  border: 0;
+}
+
+ul li {
+  margin-left: 20px;
+  list-style-image: url("../images/li.png");
+}
+
+ol {
+  list-style-position: inside;
+}
+
+ol li {
+  color: #fff;
+  background-image: url("../images/olli.png");
+  background-position: 0px;
+  background-repeat: no-repeat;
+  padding: 0.5em 11px;
+}
+
+ol li span {
+  color: $acolor;
+  padding-left: 1em;
+}
+
+html {
+  height: 100%;
+}
+
+body {
+  width: 100%;
+  height: 100%;
+  background: $bg /* url("../images/bg.jpg") center 0 no-repeat*/
+;
+  color: $color;
+  font-family: $font;
+  font-size: medium;
+  line-height: 1.3em;
+}
+
+a {
+  @include ahref($acolor);
+}
+
+strong {
+  color: $acolor;
 }
 
-fieldset, img, abbr, acronym, object { border: 0; }
-ul li {margin-left: 20px; list-style-image: url("../images/li.png");}
-ol    {list-style-position: inside;}
-ol li {color: #fff; background-image: url("../images/olli.png"); background-position: 0px; background-repeat: no-repeat; padding: 0.5em 11px;}
-ol li span {color: $acolor; padding-left: 1em;}
+address {
+  font-style: normal;
+  padding: 0px;
+  line-height: 16px;
+}
+
+h1 {
+  display: inline-block;
+  font-family: $tfont;
+  font-size: $h1size;
+  color: #fff;
+  font-weight: 200;
+  padding: 0em 0;
+  margin: auto;
+  margin: 0em;
+  text-align: left;
+  line-height: 1.2em;
+}
 
-html {height: 100%;}
-body {width: 100%; height: 100%; background: $bg/* url("../images/bg.jpg") center 0 no-repeat*/; color: $color; font-family: $font; font-size: medium; line-height: 1.3em; }
+h2 {
+  font-family: $tfont;
+  font-size: 130%;
+  color: $tcolor;
+  font-weight: bold;
+  padding-bottom: 0em;
+  text-transform: none;
+  text-align: center;
+  line-height: 1.5em;
+  margin: auto; /*font-family: 'Courgette', cursive;*/
+}
 
-a {@include ahref($acolor);}
+h2 a:link {
+  text-decoration: underline;
+  font-weight: bold;
+  text-transform: none;
+}
 
-strong   {color:  $acolor;}
-address  {font-style: normal; padding: 0px; line-height: 16px;}
+h2 a:active {
+}
 
-h1 {display: inline-block; font-family: $tfont; font-size: $h1size; color: #fff; font-weight: 200; padding: 0em 0; margin: auto; margin: 0em; text-align: left; line-height: 1.2em;}
-h2               {font-family: $tfont; font-size: 130%; color: $tcolor; font-weight: bold; padding-bottom: 0em; text-transform: none; text-align: center; line-height: 1.5em; margin: auto;/*font-family: 'Courgette', cursive;*/}
+h2 a:visited {
+}
 
-h2 a:link        {text-decoration: underline; font-weight: bold; text-transform: none; }
-h2 a:active      { }
-h2 a:visited     { }
-h2 a:hover       { text-decoration: none;}
+h2 a:hover {
+  text-decoration: none;
+}
 
 h3 {
-  font-size: 150%; color: $acolor; /*letter-spacing: 6px;*/ font-weight: 900; padding: 5px 0; margin-bottom: 0.2em; text-transform: uppercase; line-height: 1.3em;
-  a {@include ahref($acolor,false);}
+  font-size: 150%;
+  color: $acolor; /*letter-spacing: 6px;*/
+  font-weight: 900;
+  padding: 5px 0;
+  margin-bottom: 0.2em;
+  text-transform: uppercase;
+  line-height: 1.3em;
+
+  a {
+    @include ahref($acolor, false);
+  }
+}
+
+h4 {
+  color: lighten($acolor, 10);
+  font-size: $h1size / 2;
+  text-decoration: none;
+  font-weight: 900;
+  text-transform: none;
+  padding: 0 0 0.5em 0
+}
+
+h5 {
+  color: $acolor;
+  font-size: $h1size / 3;
+  text-decoration: none;
+  font-weight: bold;
+  text-transform: none;
+  padding: 0.5em 0
+}
+
+h6 {
+}
+
+#header {
+  position: relative;
+  width: 100%;
+  height: 150px;
+  background: #fff;
+  z-index: 50; /*overflow: hidden;*/
+  @include boxshadow(2px, 0px, 3px, rgba(0, 0, 0, 0.2));
+}
+
+#header .inner {
+  width: $width;
+  max-width: $maxwidth;
+  margin: auto;
+}
+
+#header_top {
+  position: relative;
+  width: 100%;
+  height: 45px;
+  padding: 20px 0;
+  background-color: #212121;
+  z-index: 2;
+}
+
+#header_top .inner {
+  position: relative; /*width: $maxwidth;*/
+  margin: auto;
+  padding-top: 2px;
+  @include trans();
+}
+
+#header_top .logo_cont {
+  position: relative;
+  float: left;
+  width: 160px;
+  border-right: 1px solid #fff;
+}
+
+#header_top .soc {
+  position: relative;
+  top: 10px;
+}
+
+#header .title {
+  position: relative;
+  top: 0px;
+}
+
+#header_top h1 {
+  position: relative;
+  left: 20px;
 }
 
-h4 {color: lighten($acolor,10); font-size: $h1size / 2; text-decoration:none; font-weight: 900; text-transform: none; padding: 0 0 0.5em 0}
-h5 {color: $acolor; font-size: $h1size / 3; text-decoration:none; font-weight:bold; text-transform: none; padding: 0.5em 0}
-h6 {}
+#header h1 span {
+  position: relative;
+  top: 25px;
+  left: 0.5em;
+}
+
+#header .logo {
+  max-width: 150px;
+}
+
+
+a.home {
+  display: block;
+  font-size: 100%;
+  color: $color;
+  font-weight: 400; /*letter-spacing: 3px;*/
+  text-decoration: none;
+}
+
+a.home strong {
+}
+
+a.home img {
+  position: relative;
+  float: left;
+}
+
+#flags {
+  position: relative;
+  top: 15px;
+  float: right;
+}
+
+#flags a {
+  position: relative;
+  display: inline-block;
+  width: 44px;
+  height: 44px;
+  margin-left: 0px;
+  text-decoration: none;
+  font-size: 18px;
+  text-transform: uppercase;
+}
+
+#flags svg {
+  position: absolute;
+}
 
-#header {position: relative; width: 100%; height: 150px; background: #fff; z-index: 50; /*overflow: hidden;*/ @include boxshadow(2px,0px,3px,rgba(0,0,0,0.2));}
-#header .inner {width: $width; max-width: $maxwidth; margin: auto;}
-#header_top {position: relative; width: 100%; height: 45px; padding: 20px 0; background-color: #212121; z-index: 2;}
-#header_top .inner {position: relative; /*width: $maxwidth;*/ margin: auto; padding-top: 2px; @include trans();}
-#header_top .logo_cont {position: relative; float: left; width: 160px; border-right: 1px solid #fff;}
-#header_top .soc {position: relative; top: 10px;}
-#header .title {position: relative; top: 0px;  }
-#header_top h1 {position: relative; left: 20px;}
-#header h1 span {position: relative; top: 25px; left: 0.5em;}
-#header .logo {max-width: 150px;}
+#flags a.active svg path, #flags a:hover svg path {
+  fill: #fff;
+  @include trans;
+}
+
+#flags a span {
+  position: absolute;
+  top: 10px;
+  left: 5px;
+}
 
+#cont {
+  position: relative;
+  max-width: 1042px;
+  margin: auto;
+  padding-top: 50px;
+  overflow: hidden;
+}
+
+#responsive_flags, #menu .social {
+  display: none;
+}
 
-a.home {display: block; font-size: 100%; color: $color; font-weight: 400; /*letter-spacing: 3px;*/ text-decoration: none;}
-a.home strong {}
-a.home img {position: relative; float: left;}
+.head_menu {
+  position: relative;
+  top: 20px;
+  right: 0;
+  max-width: 60%;
+  float: right;
+  z-index: 50;
+}
 
-#flags {position: relative; top: 15px; float: right;}
-#flags a {position: relative; display: inline-block; width: 44px; height: 44px; margin-left: 0px; text-decoration: none; font-size: 18px; text-transform: uppercase;}
-#flags svg {position: absolute;}
-#flags a.active svg path, #flags a:hover svg path {fill: #fff; @include trans;}
-#flags a span {position: absolute; top: 10px; left: 5px;}
+#mob_menu_open {
+  display: none;
+  position: absolute;
+  float: right;
+  top: 95px;
+  right: 5%;
+  width: 40px;
+  background: none; /*background: url("../images/mob_menu.png");*/
+  border: none;
+  cursor: pointer;
+  transition: .5s all ease;
+  outline: 0;
+}
 
-#cont 		{position: relative; max-width: 1042px; margin: auto; padding-top: 50px; overflow: hidden;}
+#mob_menu_close {
+  display: none;
+  position: absolute;
+  float: right;
+  top: 95px;
+  left: 5%;
+  width: 40px;
+  background: none; /*background: url("../images/mob_hide_l.png");*/
+  border: none;
+  cursor: pointer;
+  transition: .5s all ease;
+  opacity: 0;
+  outline: 0;
+}
 
-#responsive_flags, #menu .social {display: none;}
+.rotate {
+  transform: rotate3d(0, 0, 1, 180deg);
+  -webkit-transform: rotate3d(0, 0, 1, 180deg);
+}
 
-.head_menu {position: relative; top: 20px; right: 0; max-width: 60%; float: right; z-index: 50;}
-#mob_menu_open  {display: none; position: absolute; float: right; top: 95px; right: 5%; width: 40px; background: none; /*background: url("../images/mob_menu.png");*/ border: none; cursor: pointer; transition: .5s all ease; outline:0;}
-#mob_menu_close {display: none; position: absolute; float: right; top: 95px; left: 5%; width: 40px; background: none; /*background: url("../images/mob_hide_l.png");*/ border: none; cursor: pointer; transition: .5s all ease; opacity: 0; outline:0;}
-.rotate {transform: rotate3d(0, 0, 1, 180deg); -webkit-transform: rotate3d(0, 0, 1, 180deg); }
-.rotate_back {transform: rotate3d(0, 0, 1, -180deg); -webkit-transform: rotate3d(0, 0, 1, -180deg);}
+.rotate_back {
+  transform: rotate3d(0, 0, 1, -180deg);
+  -webkit-transform: rotate3d(0, 0, 1, -180deg);
+}
 
 /*
 #sticky_menu.sticky    {
@@ -159,330 +440,1360 @@ a.home img {position: relative; float: left;}
 }
 */
 
-.mainmenu, .mainmenu_menu 		{
-  position: relative; top: 0px; z-index: 10; max-width: 100%;
-  li {position: relative; display: inline-block; padding-right: 0.5em; padding-left: 0px; margin: 0; list-style: none; }
-  li.border { padding-left: 0em;}
-  li a.active {}
-  li a {display: block; padding: 0px 0.5em 22px 0.5em; color: $color; font-size: 130%; text-decoration:none; font-weight: bold; text-transform: none;
-  @include trans();}
-  li a span {}
-  li a:hover {color: $acolor; border-bottom: 3px solid #000;}
+.mainmenu, .mainmenu_menu {
+  position: relative;
+  top: 0px;
+  z-index: 10;
+  max-width: 100%;
+
+  li {
+    position: relative;
+    display: inline-block;
+    padding-right: 0.5em;
+    padding-left: 0px;
+    margin: 0;
+    list-style: none;
+  }
+
+  li.border {
+    padding-left: 0em;
+  }
+
+  li a.active {
+  }
+
+  li a {
+    display: block;
+    padding: 0px 0.5em 22px 0.5em;
+    color: $color;
+    font-size: 130%;
+    text-decoration: none;
+    font-weight: bold;
+    text-transform: none;
+    @include trans();
+  }
+
+  li a span {
+  }
+
+  li a:hover {
+    color: $acolor;
+    border-bottom: 3px solid #000;
+  }
+}
+
+#responsive_menu ul {
+  left: -115%;
+  padding: 1em 4%;
+  background: rgba(0, 0, 0, 0.8);
+}
+
+#responsive_menu li.open ul {
+  display: block; /* toto pravidlo musí být první */
+}
+
+#responsive_menu li.close ul {
+  display: none; /* toto pravidlo musí být druhé */
 }
 
-#responsive_menu ul {left: -115%; padding: 1em 4%; background: rgba(0,0,0,0.8);}
-#responsive_menu li.open ul {display: block; /* toto pravidlo musí být první */ }
-#responsive_menu li.close ul {display: none; /* toto pravidlo musí být druhé */ }
-#responsive_menu .mainmenu li a {color: #fff;}
+#responsive_menu .mainmenu li a {
+  color: #fff;
+}
 
-#slideshow    {
-  /*max-height: 657px;*/ position: relative; top: 0px;
+#slideshow {
+  /*max-height: 657px;*/
+  position: relative;
+  top: 0px;
   //.inner {position: absolute; top: 0; max-width: $maxwidth; width: 90%; height: auto; margin: auto; text-align: left; z-index: 10;}
-  h2 {text-align: center; font-size: 350%; color: #fff; text-transform: none; font-weight: 900; }
-  p  {display: block; max-width: 580px; font-size: 160%; color: #fff; font-weight: 300; line-height: 1.8em; @include textshadow(2px,0px,2px,#000);}
-  a.button {margin-top: 1em; background-color:rgba(255,255,255,0.2); border: 1px solid #fff; font-size: 120%;
-    @include textshadow(-1px,-1px,4px,rgba(0,0,0,0.3)); @include boxshadow(-2px,-2px,5px,rgba(0,0,0,0.2));
-    &:hover {background-color: rgba(255,255,255,0.5); color: #fff; @include textshadow(0px,0px,2px,rgba(0,0,0,0.3)); @include boxshadow(0px,0px,4px,rgba(0,0,0,0.2));}
+  h2 {
+    text-align: center;
+    font-size: 350%;
+    color: #fff;
+    text-transform: none;
+    font-weight: 900;
+  }
+
+  p {
+    display: block;
+    max-width: 580px;
+    font-size: 160%;
+    color: #fff;
+    font-weight: 300;
+    line-height: 1.8em;
+    @include textshadow(2px, 0px, 2px, #000);
+  }
+
+  a.button {
+    margin-top: 1em;
+    background-color: rgba(255, 255, 255, 0.2);
+    border: 1px solid #fff;
+    font-size: 120%;
+    @include textshadow(-1px, -1px, 4px, rgba(0, 0, 0, 0.3));
+    @include boxshadow(-2px, -2px, 5px, rgba(0, 0, 0, 0.2));
+
+    &:hover {
+      background-color: rgba(255, 255, 255, 0.5);
+      color: #fff;
+      @include textshadow(0px, 0px, 2px, rgba(0, 0, 0, 0.3));
+      @include boxshadow(0px, 0px, 4px, rgba(0, 0, 0, 0.2));
+    }
   }
 }
-#slideshow_text {position: absolute; top: 70px; right: 21%; max-width: 680px; padding: 2em; text-align: center; @include rounded(15px); background-color: rgba(0,0,0,0.5); z-index: 11;}
 
-#slider {position: relative; padding-bottom: 43.5%; height: 0; overflow: hidden; transition: .5s all ease; margin-bottom: 2em;}
+#slideshow_text {
+  position: absolute;
+  top: 70px;
+  right: 21%;
+  max-width: 680px;
+  padding: 2em;
+  text-align: center;
+  @include rounded(15px);
+  background-color: rgba(0, 0, 0, 0.5);
+  z-index: 11;
+}
+
+#slider {
+  position: relative;
+  padding-bottom: 43.5%;
+  height: 0;
+  overflow: hidden;
+  transition: .5s all ease;
+  margin-bottom: 2em;
+}
+
 /*#slideshow_text {position: absolute; right: 2%; top: 2em; padding: 2em; background: rgba(255,255,255,0.8); -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px; z-index:10;}
 #slideshow_text h3 {color: #323946; font-family: 'Roboto', sans-serif; font-size: 200%; text-transform: none;}*/
 
 /*.content		{position: relative; width: 80%; max-width: 1010px; min-height: 250px; top: 50px; left: 2px; margin: auto; background-color: rgba(255,255,255,0.6); z-index: 20; border: 1px solid #67d9dc; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px;}
 .content > .inner {position: relative; padding: 2.5em 2.5em 2.5em 2.5em; text-align: left; }*/
 
-@mixin content($padtop: 4em, $talign: left, $padinner...){
-  position: relative; width: 100%; padding-top: $padtop; margin: auto;
+@mixin content($padtop: 4em, $talign: left, $padinner...) {
+  position: relative;
+  width: 100%;
+  padding-top: $padtop;
+  margin: auto;
   > .inner {
-    position: relative; width: $width; max-width: $maxwidth; margin: auto; padding: $padinner; text-align: $talign;
-    > .text {font-size: 110%; line-height: 1.5em; margin: auto;}
+    position: relative;
+    width: $width;
+    max-width: $maxwidth;
+    margin: auto;
+    padding: $padinner;
+    text-align: $talign;
+
+    > .text {
+      font-size: 110%;
+      line-height: 1.5em;
+      text-align: justify;
+      margin: auto;
+    }
   }
 
   //min-height: 400px;
 }
+
 #content {
-  min-height: 574px; font-size: 100%;
-  ul {padding: 10px 0;}
+  min-height: 574px;
+  font-size: 100%;
+
+  ul {
+    padding: 10px 0;
+  }
 }
+
 .content {
-  @include content(1em,left,3em 0em 3em 0em);
-  top: 0em; left: 0px; z-index: 20;
-  & h2 {position: relative; /*display: inline;*/ /*background-color: #fff;*/}
-  .inner p {padding-bottom: 20px; }
-  .inner ul li p {padding-bottom: 0;}
-  strong {color: $acolor;}
-  ul, ol   {padding-top: 10px; padding-bottom: 20px; font-size: 100%;}
-  ul li ul, ol li ol   {padding-top: 10px; padding-bottom: 10px;}
-}
-
-.fixed1 .inner {position: relative; width: 90%; max-width: $maxwidth; margin: auto; text-align: center;}
-.fixed1 h2 {position: relative; top: 1.9em; padding-bottom: 1.5em; color: #fff; font-size: 320%; font-weight: 200; text-transform: none; text-align: center;
-  @include textshadow(5px,0px,5px,#000);}
-.fixed1 ul li {padding-bottom: 0.5em; color: #fff; font-size: 130%; font-weight: 300;}
-.fixed1 a.button {position: relative; top: 1.5em; padding: 0.8em 2em; margin: auto; background: $acolor;}
-
-.twothird ul {padding-top: 0;}
-.twothird ul li {margin-left: 15px;}
-
-
-.text_blocks h2 {font-size: 160%; color: #ff5b0b; font-weight: bold; margin-bottom: 0.5em;}
-.text_blocks p {color: #7f7f7f; font-size: 120%; font-weight: 300;}
-.text_blocks .row {margin-bottom: 20px;}
-.text_blocks .row img {float: left; max-width: 13%;}
-.text_blocks .row .inner {padding-left: 15%;}
-.text_blocks a {text-decoration: none; color: #7f7f7f;}
-
-.gray_bg      {background-color: #eee;}
+  @include content(1em, left, 3em 0em 3em 0em);
+  top: 0em;
+  left: 0px;
+  z-index: 20;
+
+  & h2 {
+    position: relative; /*display: inline;*/
+    /*background-color: #fff;*/
+  }
+
+  .inner p {
+    padding-bottom: 20px;
+    text-align: justify;
+  }
+
+  .inner ul li p {
+    padding-bottom: 0;
+  }
+
+  strong {
+    color: $acolor;
+  }
+
+  ul, ol {
+    padding-top: 10px;
+    padding-bottom: 20px;
+    font-size: 100%;
+  }
+
+  ul li ul, ol li ol {
+    padding-top: 10px;
+    padding-bottom: 10px;
+  }
+}
+
+.fixed1 .inner {
+  position: relative;
+  width: 90%;
+  max-width: $maxwidth;
+  margin: auto;
+  text-align: center;
+}
+
+.fixed1 h2 {
+  position: relative;
+  top: 1.9em;
+  padding-bottom: 1.5em;
+  color: #fff;
+  font-size: 320%;
+  font-weight: 200;
+  text-transform: none;
+  text-align: center;
+  @include textshadow(5px, 0px, 5px, #000);
+}
+
+.fixed1 ul li {
+  padding-bottom: 0.5em;
+  color: #fff;
+  font-size: 130%;
+  font-weight: 300;
+}
+
+.fixed1 a.button {
+  position: relative;
+  top: 1.5em;
+  padding: 0.8em 2em;
+  margin: auto;
+  background: $acolor;
+}
+
+.twothird ul {
+  padding-top: 0;
+}
+
+.twothird ul li {
+  margin-left: 15px;
+}
+
+
+.text_blocks h2 {
+  font-size: 160%;
+  color: #ff5b0b;
+  font-weight: bold;
+  margin-bottom: 0.5em;
+}
+
+.text_blocks p {
+  color: #7f7f7f;
+  font-size: 120%;
+  font-weight: 300;
+}
+
+.text_blocks .row {
+  margin-bottom: 20px;
+}
+
+.text_blocks .row img {
+  float: left;
+  max-width: 13%;
+}
+
+.text_blocks .row .inner {
+  padding-left: 15%;
+}
+
+.text_blocks a {
+  text-decoration: none;
+  color: #7f7f7f;
+}
+
+.gray_bg {
+  background-color: #eee;
+}
+
 .contact_form {
-  position: relative; margin-top: 0em; margin-bottom: 3em;
-  & > .inner {position: relative; max-width: 1200px; width: 90%; margin: auto;}
-  label {display: inline-block; cursor: text; position: relative; top: 2.5em; color: #000; font-size:90%; font-weight: 400;}
-  input[type="text"] {width: 100%; margin-bottom: 0; border-bottom: 1px solid #fff;}
-  textarea {width: 100%; padding-left: 0; border-bottom: 1px solid #fff;}
+  position: relative;
+  margin-top: 0em;
+  margin-bottom: 3em;
+
+  & > .inner {
+    position: relative;
+    max-width: 1200px;
+    width: 90%;
+    margin: auto;
+  }
+
+  label {
+    display: inline-block;
+    cursor: text;
+    position: relative;
+    top: 2.5em;
+    color: #000;
+    font-size: 90%;
+    font-weight: 400;
+  }
+
+  input[type="text"] {
+    width: 100%;
+    margin-bottom: 0;
+    border-bottom: 1px solid #fff;
+  }
+
+  textarea {
+    width: 100%;
+    padding-left: 0;
+    border-bottom: 1px solid #fff;
+  }
+
   /*input[type="submit"]:hover {background: none; border: 1px solid #fff;}*/
-  .twothird,.half {
-    background-color: #fff; color: #000; @include boxshadow(3px, 3px, 15px, #888);
-    .inner {padding: 2em 1em 2em 2em;}
-    h3 {font-size: 110%; color: #000; font-weight: bold;}
-    h4 {color: #fff; font-size: 130%; font-weight: 100;}
-    hr.underline {display: none; margin: inherit; margin-bottom: 3em;}
-    p {padding-bottom: 0;}
+  .twothird, .half {
+    background-color: #fff;
+    color: #000;
+    @include boxshadow(3px, 3px, 15px, #888);
+
+    .inner {
+      padding: 2em 1em 2em 2em;
+    }
+
+    h3 {
+      font-size: 110%;
+      color: #000;
+      font-weight: bold;
+    }
+
+    h4 {
+      color: #fff;
+      font-size: 130%;
+      font-weight: 100;
+    }
+
+    hr.underline {
+      display: none;
+      margin: inherit;
+      margin-bottom: 3em;
+    }
+
+    p {
+      padding-bottom: 0;
+    }
   }
+
   .third {
-    margin-top: 70px; max-height: 600px; overflow-y: scroll;
-    .inner {padding-left: 5em; padding-top: 0em; font-size: x-small;}
-    h3 {font-size: 150%; text-transform: uppercase;}
-    p  {font-size: small;}
-  }
-  .g-recaptcha {text-align: center;}
-  .info {font-size: small; text-align: right; line-height: 1.5em; font-weight: 100;}
-}
-#navigation {position: relative; top: -0.5em; padding-bottom: 1em; margin-bottom: 2em; font-size: medium; border-bottom: 2px solid #7f7f83;}
-#navigation a {display: inline-block; padding: 3px 1.5em; margin-bottom: 0.5em; border-right: 1px solid #7f7f83; font-size: 120%; font-weight: normal; text-decoration: none; color: #fff;}
-#navigation a:active, #navigation a:hover {color: $acolor;}
-#navigation a:last-child  {border-right: none;}
-
-#kontakty p {padding-bottom: 0 !important;}
-#kontakty .half hr.underline {margin: inherit; margin-bottom: 3em;}
-.kontakt {width: 33%; display: inline-block; margin-bottom: 5px;}
-.kontakt h4 {color: #329f4d;}
-.kontakt img {float: left; max-width: 25%; margin-right: 2em; margin-bottom: 2em;}
-
-.content a.tel strong {font-weight: normal; }
-.content a.tel {text-decoration: none;}
-
-#uvod .blog_post {padding-top: 5px;}
-.blog_post    {margin-bottom: 2em;}
-.blog_post h2 {margin-bottom: 0em; padding-bottom: 0; font-size: 120%; color: #d04000; font-weight: bold;}
-.blog_post h2 a {text-decoration: none; color: #24a3d8;}
-.blog_post .mainpost {font-size: 85%;}
-.blog_post .link {font-size: small;}
-.blog_post .date {padding-bottom: 2em; font-size: small; font-style: italic; line-height: 1em;}
-.blog_post .button {display: inline-block; width: 95px; height: 26px; margin-top: 10px; padding-left: 10px; color: #fff; font-size: 12px; text-decoration: none;}
-.blog_post .stroke {border: 1px solid #CCC; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;}
-.img_detail {}
-
-.box {width: 31%; float: left; margin-top: 2em; border: 1px solid #ebebeb; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;}
-.box .inner {padding: 2em; text-align: center;}
-.box h3 {font-size: 180%; font-weight: 300; line-height: 1.2em; color: #6b6b6c;}
-.box .underline {margin-bottom: 3em;}
-.box.middle {margin-left: 4%; margin-right: 4%; }
-
-.block h2 {padding-bottom: 0; margin-bottom: 0;}
-.block h4 {display: inline; }
-.block .info {padding-bottom: 2em;}
-
-hr.underline {background-color: $acolor; color: #fff; height: 3px; width: 85px; border: none; margin: auto; margin-bottom: 3em;}
+    margin-top: 70px;
+    max-height: 600px;
+    overflow-y: scroll;
 
-/* PAGINATION */
-.pagination {
-  position: relative; width: 100%; height: auto; display: block; text-align: right; margin: 3em auto 4em auto; padding: 0px;
-  text-align: center; color: #787878; font-weight: normal;
-  span {padding: 8px; margin: 0px 3px; }
-  .ppage {position: relative; top: 0px; font-size: 150%;}
-  .ppage_inactive {position: relative; padding: 0; margin: 0;}
-  .ppage {padding: 17px 25px; /*background-color: #f0f1f3; @include rounded(50%); @include boxshadow(0,1px,2px,rgba(0,0,0,0.5));*/
-  @include trans();}
-  a:hover .ppage {/*background-color: desaturate(scale-color($acolor, $lightness: 80%),50%); @include boxshadow(0,2px,3px,rgba(0,0,0,0.5));*/}
-  a {position: relative; text-decoration: none; color: $acolor;}
-  //a:hover span.ppage {color: #fff; background-color: #333333;}
-  .arrow {border: 0; font-size: 400%; color: #ccc; position: relative; top: 9px;}
-  a span.arrow {color: desaturate(scale-color($acolor, $lightness: 50%),50%); position: relative; top: 9px;}
-  svg {position: absolute; width: 45px; height: 50px; top: -17px; left: 12px; }
-  svg path {@include trans();}
-  a:hover svg path {fill: desaturate(scale-color($acolor, $lightness: 80%),50%);}
-}
-#footer		   {
-  position: relative; top: 0px; width: 100%; height: auto; /*overflow: hidden;*/ background-color: #000; color: #fff; font-size: 90%; margin-top: 30px;
-  & > .inner 	{position: relative; width: 94%; max-width: $maxwidth; margin: auto; padding: 2em 0; }
-  .menu {width: 85%; float: left;}
-  .social {/*width: 15%;*/ float: left;}
-  .eshop  {display: inline-block; padding-bottom: 2em; color: $acolor; font-weight: bold;}
-  h4 {padding-top: 0; padding-bottom: 0.5em; color: $bg; /*color: $acolor;*/ font-size: 140%; font-weight: 900; text-transform: none;}
-  a  {color: inherit; text-decoration: none; text-transform: none; font-weight: normal;}
-  ul 			{padding-left: 0px; padding-top: 0;}
-  ul.mainmenu {
-    position: relative; top: 0em; left: 0; width: auto; background: none;
-    & > li 	 {display: block; padding: 0; padding-bottom: 0em; }
-    & > li a {padding: 0; border: none; float: none; font-size: medium; font-weight: bold; color: #fff; }
-    & > li ul li a {font-size: small; font-weight: 300; color: #838383; }
-    li a:hover {border: none;}
-    & > li ul li {display: block;}
-  }
-  strong {color: #fff;}
-  hr {max-width: 215px; height: 1px; margin-bottom: 1.5em; background-color: $acolor; border: none;}
-  .hidden {height: 0px;}
-  .submit {position: relative; left: -35px; top: 8px; background: url("../images/lupa.png") 50% 0 no-repeat; width: 25px; height: 25px; min-width: inherit; border: 0; padding: 0; margin: 0; }
-  .search {width: 80%;}
-  .backlinks {text-align: center; padding: 1em 2em; background-color: #333; font-size: x-small;}
-}
-
-.copyright   {bottom: 1em; text-align: left; /*padding: 1em 0;*/ font-size: 75%; text-transform: uppercase; line-height: 20px;}
-.copyright a {color: #000; position: relative; font-size: 90%; font-weight: normal; text-transform: uppercase; line-height: 20px;}
-.copyleft {display: inline-block;transform: rotate(180deg)}
-.fright      {width: 20%; float: right; text-align: right; padding-left: 5%; padding-bottom: 4em;}
-#counter {position: absolute; bottom: 0.5em; margin: auto; font-size: small; text-align: center; color: #000;}
-
-
-.fotogalerie {text-align: center;}
-.lightbox {position: relative; display: inline-block; /*margin: 0.5em;*/ line-height: 0; @include boxshadow(0px,5px,10px,rgba(0,0,0,0.2));}
-.googlemap iframe {width: 100%; height: 560px;}
-//.googlemap iframe {width: $maxwidth; height: 300px;}
-.map 	{border: 1px dashed #518d08; padding: 10px; margin-top: 20px;}
+    .inner {
+      padding-left: 5em;
+      padding-top: 0em;
+      font-size: x-small;
+    }
 
-// FILETYPES
-li.pdf		{@include filetype(pdf);}
-li.wmv		{@include filetype(wmv);}
-li.doc		{@include filetype(doc);}
-li.jpg		{@include filetype(jpg);}
-li.htm		{@include filetype(htm);}
-li.tub		{@include filetype(tub);}
-li.ct		{@include filetype(ct);}
+    h3 {
+      font-size: 150%;
+      text-transform: uppercase;
+    }
 
-/* FORMS */
-fieldset {border: 2px #e1f3f8 solid; padding: 10px; background-color: #fff; margin-bottom: 10px;}
-.fieldset {background-color: #fff;}
-legend   {font-size: 100%; font-weight: bold; padding: 0 10px; border: 1px #e1f3f8 solid; color: #377bba; background-color: #e1f3f8;}
-input       {margin-bottom: 15px;}
-input[type="text"], input[type="password"], textarea {@include textinput; }
-textarea    {width: 330px; height: 100px; }
-
-input[type="submit"]    { @include button(#fff,$acolor,160px,0.8em 2em,1px solid $acolor,medium,bold,none,false); }
-a.button                { @include button($acolor,#fff,100px,1em 2em,1px solid $acolor,medium,bold,none,true); }
-a.button_m              {@include button(#fff7e4,$acolor,120px,0.8em 1em,1px solid $acolor,medium,bold,none,true); }
-a.button_s              {@include button(#fff,$acolor,80px,0.5em 1.5em,1px solid $acolor,small,bold,none,true); }
-a.promo_button          { @include button($acolor,#fff,150px,0.5em 1em,1px solid $acolor,large,200,none,true);
-                          text-align: right; font-size: 150%; line-height: 1.2em;}
-
-input[type="radio"]  { margin: 0; padding: 0; margin-right: 10px; border: 0; background: none;}
-input[type="checkbox"]  { transform: scale(1.5); margin: 0; padding: 0; margin-right: 10px; border: 0; background: none;}
-.must       {color: red; font-size: 150%;}
-select      {color: #707173; height: 25px; padding-left: 10px; margin-bottom: 10px;}
-
-label       {font-size: 105%; font-weight: bold; color: #666666; padding-bottom: 2px; display: block;}
-label.short {width: 260px;}
-label.long  {width: 99%;}
-label.minimal  {width: 100px;}
-input.short {width: 260px;}
-input.long  {width: 99%;}
-input.minimal  {width: 100px; }
-.input_cont  {float: left; margin-right: 20px;}
-textarea.short {width: 260px; height: 80px;}
-textarea.long  {width: 99%; height: 80px;}
-.minfloat   {width: 132px; float: left;}
-a.linkout   {color: #fff; position: relative; bottom: 0; left: 0; z-index: 1;}
-.gdpr { margin-top: 1em;
-  span  {position: relative; top: -3px; font-size: small;}
-  a     {color: #000;}
+    p {
+      font-size: small;
+    }
+  }
+
+  .g-recaptcha {
+    text-align: center;
+  }
+
+  .info {
+    font-size: small;
+    text-align: right;
+    line-height: 1.5em;
+    font-weight: 100;
+  }
 }
 
-/* Change Autocomplete styles in Chrome*/
-input:-webkit-autofill,
-input:-webkit-autofill:hover,
-input:-webkit-autofill:focus
-input:-webkit-autofill,
-textarea:-webkit-autofill,
-textarea:-webkit-autofill:hover
-textarea:-webkit-autofill:focus,
-select:-webkit-autofill,
-select:-webkit-autofill:hover,
-select:-webkit-autofill:focus {
-  background: none; color: #bddfff !important;
-  transition: background-color 5000s ease-in-out 0s;
+#navigation {
+  position: relative;
+  top: -0.5em;
+  padding-bottom: 1em;
+  margin-bottom: 2em;
+  font-size: medium;
+  border-bottom: 2px solid #7f7f83;
+}
+
+#navigation a {
+  display: inline-block;
+  padding: 3px 1.5em;
+  margin-bottom: 0.5em;
+  border-right: 1px solid #7f7f83;
+  font-size: 120%;
+  font-weight: normal;
+  text-decoration: none;
+  color: #fff;
+}
+
+#navigation a:active, #navigation a:hover {
+  color: $acolor;
+}
+
+#navigation a:last-child {
+  border-right: none;
+}
+
+#kontakty p {
+  padding-bottom: 0 !important;
+}
+
+#kontakty .half hr.underline {
+  margin: inherit;
+  margin-bottom: 3em;
+}
+
+.kontakt {
+  width: 33%;
+  display: inline-block;
+  margin-bottom: 5px;
+}
+
+.kontakt h4 {
+  color: #329f4d;
+}
+
+.kontakt img {
+  float: left;
+  max-width: 25%;
+  margin-right: 2em;
+  margin-bottom: 2em;
+}
+
+.content a.tel strong {
+  font-weight: normal;
+}
+
+.content a.tel {
+  text-decoration: none;
+}
+
+#uvod .blog_post {
+  padding-top: 5px;
+}
+
+.blog_post {
+  margin-bottom: 2em;
+}
+
+.blog_post h2 {
+  margin-bottom: 0em;
+  padding-bottom: 0;
+  font-size: 120%;
+  color: #d04000;
+  font-weight: bold;
+}
+
+.blog_post h2 a {
+  text-decoration: none;
+  color: #24a3d8;
+}
+
+.blog_post .mainpost {
+  font-size: 85%;
+}
+
+.blog_post .link {
+  font-size: small;
+}
+
+.blog_post .date {
+  padding-bottom: 2em;
+  font-size: small;
+  font-style: italic;
+  line-height: 1em;
+}
+
+.blog_post .button {
+  display: inline-block;
+  width: 95px;
+  height: 26px;
+  margin-top: 10px;
+  padding-left: 10px;
+  color: #fff;
+  font-size: 12px;
+  text-decoration: none;
+}
+
+.blog_post .stroke {
+  border: 1px solid #CCC;
+  -moz-border-radius: 6px;
+  -webkit-border-radius: 6px;
+  border-radius: 6px;
+}
+
+.img_detail {
+}
+
+.box {
+  width: 31%;
+  float: left;
+  margin-top: 2em;
+  border: 1px solid #ebebeb;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
+  border-radius: 10px;
+}
+
+.box .inner {
+  padding: 2em;
+  text-align: center;
+}
+
+.box h3 {
+  font-size: 180%;
+  font-weight: 300;
+  line-height: 1.2em;
+  color: #6b6b6c;
+}
+
+.box .underline {
+  margin-bottom: 3em;
 }
 
-.msg   {width: 100%; font-weight: bold; padding: 5px 0; text-align: center; margin: auto; font-size: medium; color: white;}
-.error {@extend .msg; border-top: 2px solid #000; border-bottom: 2px solid #000; background: #b20400; }
-.notice {@extend .msg; border-top: 2px solid #a19400; border-bottom: 2px solid #a19400; background: #e6d302; }
-.success {@extend .msg; border-top: 2px solid #0C0; border-bottom: 2px solid #0C0; background: #090; }
-#error {width: 90%; max-width: 1200px; margin: auto;}
-#error h1 {color: #b20400;}
-#error p, #error ul  {padding-bottom: 1em;}
-
-hr {color: #67b2b7; border: none; border-bottom: 1px solid #67b2b7; }
-hr.cleaner {clear: both; height: 1px; border: none; margin: -1em 0 0 0; visibility: hidden;}
-hr.cleanerie {height: 1px; border: none; margin: -1em 0 0 0; visibility: hidden;}
-
-.trans  {@include trans;}
-.shadow {@include boxshadow(3px, 3px, 15px, #888);}
-.round  {@include rounded(10px)}
-.desaturate {@include filter(grayscale,100%)}
-.arrow  {border: solid #00523d; border-width: 0 7px 7px 0; display: inline-block; padding: 10px; @include trans;}
-.arrow.right {transform: rotate(-45deg); -webkit-transform: rotate(-45deg);}
-.arrow.left {transform: rotate(135deg); -webkit-transform: rotate(135deg);}
-.arrow.up {transform: rotate(-135deg); -webkit-transform: rotate(-135deg);}
-.arrow.down {transform: rotate(45deg); -webkit-transform: rotate(45deg);}
-.alpha50  {filter: alpha(opacity=50);	opacity: 0.5;}
-.icon 		{position: relative; top: 2px;}
-.img        {border: 5px solid #d8ccbd; background-color: #fff; margin-bottom: 20px; margin-right: 0px; @include rounded;}
-.left_img, .img_left   {float: left; margin: 1em 2em 1em 0; /*border: 1px solid #fff;*/}
-.right_img, .img_right  {float: right; margin: 1em 0 1em 2em; /*border: 1px solid #fff;*/}
-.mini      {font-size: x-small; line-height: 15px;}
-.small     {font-size: small; line-height: 13px;}
-.half      {width: $full / 2; float: left;}
-.third  	{width: $full / 3; float: left;}
-.twothird   {width: $full / 3 * 2; float: left;}
-.quarter    {width: $full / 4; float: left;}
-.threequarters    {width: $full / 4 * 3; float: left;}
-.half .inner, .third .inner, .twothird .inner, .quarter .inner {padding: 2em 2em;}
-.innerleft, .half .innerleft, .third .innerleft, .twothird .innerleft {padding-right: 2em;}
-.innerright, .half .innerright, .third .innerright, .twothird .innerright {padding-left: 2em;}
-p.underline {text-decoration: underline; padding-bottom: 0 !important;}
-p.underline strong {color: #fff;}
-.justify   {text-align: justify;}
-.f_right    {float: right;}
-.f_left     {float: left;}
-.red    {color: #fe0000;}
-.white  {color: #fff;}
-h3.white {color: #fff; font-size: 130%;}
-.blue   {color: #0296f0;}
-.bgblue {background-color: #0296f0;}
-.green  {color: #67b2b7 !important;}
-.bggreen  {background-color: #36af53;}
-.gray 	{color: #757575;}
-.upper   {text-transform: uppercase;}
-.center, .content .center  {text-align: center; margin: auto;}
-.left    {text-align: left;}
-.tright  {text-align: right;}
-.stroke  {border: 3px solid #fff;}
-.medium  {font-size: medium;}
-.italic  {font-style: italic;}
-.strong  {font-weight: bold;}
-.clear   {clear: both;}
-.no      {padding: 0px; margin: 0px; }
-.hidden  {visibility: hidden;}
-.hide    {display: none;}
-.display_none {display: none;}
-.display_block {display: block;}
-.ofhide {overflow: hidden;}
-.overlay {display: none; position: absolute; left: 0;}
-.gradient {background: -moz-linear-gradient(top, #f6f6f6 1%, #ffffff 100%); /* FF3.6-15 */
-background: -webkit-linear-gradient(top, #f6f6f6 1%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
-background: linear-gradient(to bottom, #f6f6f6 1%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */}
+.box.middle {
+  margin-left: 4%;
+  margin-right: 4%;
+}
+
+.block h2 {
+  padding-bottom: 0;
+  margin-bottom: 0;
+}
+
+.block h4 {
+  display: inline;
+}
+
+.block .info {
+  padding-bottom: 2em;
+}
+
+hr.underline {
+  background-color: $acolor;
+  color: #fff;
+  height: 3px;
+  width: 85px;
+  border: none;
+  margin: auto;
+  margin-bottom: 3em;
+}
+
+/* PAGINATION */
+.pagination {
+  position: relative;
+  width: 100%;
+  height: auto;
+  display: block;
+  text-align: right;
+  margin: 3em auto 4em auto;
+  padding: 0px;
+  text-align: center;
+  color: #787878;
+  font-weight: normal;
+
+  span {
+    padding: 8px;
+    margin: 0px 3px;
+  }
+
+  .ppage {
+    position: relative;
+    top: 0px;
+    font-size: 150%;
+  }
+
+  .ppage_inactive {
+    position: relative;
+    padding: 0;
+    margin: 0;
+  }
+
+  .ppage {
+    padding: 17px 25px; /*background-color: #f0f1f3; @include rounded(50%); @include boxshadow(0,1px,2px,rgba(0,0,0,0.5));*/
+    @include trans();
+  }
+
+  a:hover .ppage { /*background-color: desaturate(scale-color($acolor, $lightness: 80%),50%); @include boxshadow(0,2px,3px,rgba(0,0,0,0.5));*/
+  }
+
+  a {
+    position: relative;
+    text-decoration: none;
+    color: $acolor;
+  }
+
+  //a:hover span.ppage {color: #fff; background-color: #333333;}
+  .arrow {
+    border: 0;
+    font-size: 400%;
+    color: #ccc;
+    position: relative;
+    top: 9px;
+  }
+
+  a span.arrow {
+    color: desaturate(scale-color($acolor, $lightness: 50%), 50%);
+    position: relative;
+    top: 9px;
+  }
+
+  svg {
+    position: absolute;
+    width: 45px;
+    height: 50px;
+    top: -17px;
+    left: 12px;
+  }
+
+  svg path {
+    @include trans();
+  }
+
+  a:hover svg path {
+    fill: desaturate(scale-color($acolor, $lightness: 80%), 50%);
+  }
+}
+
+#footer {
+  position: relative;
+  top: 0px;
+  width: 100%;
+  height: auto; /*overflow: hidden;*/
+  background-color: #000;
+  color: #fff;
+  font-size: 90%;
+  margin-top: 30px;
+
+  & > .inner {
+    position: relative;
+    width: 94%;
+    max-width: $maxwidth;
+    margin: auto;
+    padding: 2em 0;
+  }
+
+  .menu {
+    width: 85%;
+    float: left;
+  }
+
+  .social { /*width: 15%;*/
+    float: left;
+  }
+
+  .eshop {
+    display: inline-block;
+    padding-bottom: 2em;
+    color: $acolor;
+    font-weight: bold;
+  }
+
+  h4 {
+    padding-top: 0;
+    padding-bottom: 0.5em;
+    color: $bg; /*color: $acolor;*/
+    font-size: 140%;
+    font-weight: 900;
+    text-transform: none;
+  }
+
+  a {
+    color: inherit;
+    text-decoration: none;
+    text-transform: none;
+    font-weight: normal;
+  }
+
+  ul {
+    padding-left: 0px;
+    padding-top: 0;
+  }
+
+  ul.mainmenu {
+    position: relative;
+    top: 0em;
+    left: 0;
+    width: auto;
+    background: none;
+
+    & > li {
+      display: block;
+      padding: 0;
+      padding-bottom: 0em;
+    }
+
+    & > li a {
+      padding: 0;
+      border: none;
+      float: none;
+      font-size: medium;
+      font-weight: bold;
+      color: #fff;
+    }
+
+    & > li ul li a {
+      font-size: small;
+      font-weight: 300;
+      color: #838383;
+    }
+
+    li a:hover {
+      border: none;
+    }
+
+    & > li ul li {
+      display: block;
+    }
+  }
+
+  strong {
+    color: #fff;
+  }
+
+  hr {
+    max-width: 215px;
+    height: 1px;
+    margin-bottom: 1.5em;
+    background-color: $acolor;
+    border: none;
+  }
+
+  .hidden {
+    height: 0px;
+  }
+
+  .submit {
+    position: relative;
+    left: -35px;
+    top: 8px;
+    background: url("../images/lupa.png") 50% 0 no-repeat;
+    width: 25px;
+    height: 25px;
+    min-width: inherit;
+    border: 0;
+    padding: 0;
+    margin: 0;
+  }
+
+  .search {
+    width: 80%;
+  }
+
+  .backlinks {
+    text-align: center;
+    padding: 1em 2em;
+    background-color: #333;
+    font-size: x-small;
+  }
+}
+
+.copyright {
+  bottom: 1em;
+  text-align: left; /*padding: 1em 0;*/
+  font-size: 75%;
+  text-transform: uppercase;
+  line-height: 20px;
+}
+
+.copyright a {
+  color: #000;
+  position: relative;
+  font-size: 90%;
+  font-weight: normal;
+  text-transform: uppercase;
+  line-height: 20px;
+}
+
+.copyleft {
+  display: inline-block;
+  transform: rotate(180deg)
+}
+
+.fright {
+  width: 20%;
+  float: right;
+  text-align: right;
+  padding-left: 5%;
+  padding-bottom: 4em;
+}
+
+#counter {
+  position: absolute;
+  bottom: 0.5em;
+  margin: auto;
+  font-size: small;
+  text-align: center;
+  color: #000;
+}
+
+
+.fotogalerie {
+  text-align: center;
+}
+
+.lightbox {
+  position: relative;
+  display: inline-block; /*margin: 0.5em;*/
+  line-height: 0;
+  @include boxshadow(0px, 5px, 10px, rgba(0, 0, 0, 0.2));
+}
+
+.googlemap iframe {
+  width: 100%;
+  height: 560px;
+}
+
+//.googlemap iframe {width: $maxwidth; height: 300px;}
+.map {
+  border: 1px dashed #518d08;
+  padding: 10px;
+  margin-top: 20px;
+}
+
+// FILETYPES
+li.pdf {
+  @include filetype(pdf);
+}
+
+li.wmv {
+  @include filetype(wmv);
+}
+
+li.doc {
+  @include filetype(doc);
+}
+
+li.jpg {
+  @include filetype(jpg);
+}
+
+li.htm {
+  @include filetype(htm);
+}
+
+li.tub {
+  @include filetype(tub);
+}
+
+li.ct {
+  @include filetype(ct);
+}
+
+/* FORMS */
+fieldset {
+  border: 2px #e1f3f8 solid;
+  padding: 10px;
+  background-color: #fff;
+  margin-bottom: 10px;
+}
+
+.fieldset {
+  background-color: #fff;
+}
+
+legend {
+  font-size: 100%;
+  font-weight: bold;
+  padding: 0 10px;
+  border: 1px #e1f3f8 solid;
+  color: #377bba;
+  background-color: #e1f3f8;
+}
+
+input {
+  margin-bottom: 15px;
+}
+
+input[type="text"], input[type="password"], textarea {
+  @include textinput;
+}
+
+textarea {
+  width: 330px;
+  height: 100px;
+}
+
+input[type="submit"] {
+  @include button(#fff, $acolor, 160px, 0.8em 2em, 1px solid $acolor, medium, bold, none, false);
+}
+
+a.button {
+  @include button($acolor, #fff, 100px, 1em 2em, 1px solid $acolor, medium, bold, none, true);
+}
+
+a.button_m {
+  @include button(#fff7e4, $acolor, 120px, 0.8em 1em, 1px solid $acolor, medium, bold, none, true);
+}
+
+a.button_s {
+  @include button(#fff, $acolor, 80px, 0.5em 1.5em, 1px solid $acolor, small, bold, none, true);
+}
+
+a.promo_button {
+  @include button($acolor, #fff, 150px, 0.5em 1em, 1px solid $acolor, large, 200, none, true);
+  text-align: right;
+  font-size: 150%;
+  line-height: 1.2em;
+}
+
+input[type="radio"] {
+  margin: 0;
+  padding: 0;
+  margin-right: 10px;
+  border: 0;
+  background: none;
+}
+
+input[type="checkbox"] {
+  transform: scale(1.5);
+  margin: 0;
+  padding: 0;
+  margin-right: 10px;
+  border: 0;
+  background: none;
+}
+
+.must {
+  color: red;
+  font-size: 150%;
+}
+
+select {
+  color: #707173;
+  height: 25px;
+  padding-left: 10px;
+  margin-bottom: 10px;
+}
+
+label {
+  font-size: 105%;
+  font-weight: bold;
+  color: #666666;
+  padding-bottom: 2px;
+  display: block;
+}
+
+label.short {
+  width: 260px;
+}
+
+label.long {
+  width: 99%;
+}
+
+label.minimal {
+  width: 100px;
+}
+
+input.short {
+  width: 260px;
+}
+
+input.long {
+  width: 99%;
+}
+
+input.minimal {
+  width: 100px;
+}
+
+.input_cont {
+  float: left;
+  margin-right: 20px;
+}
+
+textarea.short {
+  width: 260px;
+  height: 80px;
+}
+
+textarea.long {
+  width: 99%;
+  height: 80px;
+}
+
+.minfloat {
+  width: 132px;
+  float: left;
+}
+
+a.linkout {
+  color: #fff;
+  position: relative;
+  bottom: 0;
+  left: 0;
+  z-index: 1;
+}
+
+.gdpr {
+  margin-top: 1em;
+
+  span {
+    position: relative;
+    top: -3px;
+    font-size: small;
+  }
+
+  a {
+    color: #000;
+  }
+}
+
+/* Change Autocomplete styles in Chrome*/
+input:-webkit-autofill,
+input:-webkit-autofill:hover,
+input:-webkit-autofill:focus
+input:-webkit-autofill,
+textarea:-webkit-autofill,
+textarea:-webkit-autofill:hover
+textarea:-webkit-autofill:focus,
+select:-webkit-autofill,
+select:-webkit-autofill:hover,
+select:-webkit-autofill:focus {
+  background: none;
+  color: #bddfff !important;
+  transition: background-color 5000s ease-in-out 0s;
+}
+
+.msg {
+  width: 100%;
+  font-weight: bold;
+  padding: 5px 0;
+  text-align: center;
+  margin: auto;
+  font-size: medium;
+  color: white;
+}
+
+.error {
+  @extend .msg;
+  border-top: 2px solid #000;
+  border-bottom: 2px solid #000;
+  background: #b20400;
+}
+
+.notice {
+  @extend .msg;
+  border-top: 2px solid #a19400;
+  border-bottom: 2px solid #a19400;
+  background: #e6d302;
+}
+
+.success {
+  @extend .msg;
+  border-top: 2px solid #0C0;
+  border-bottom: 2px solid #0C0;
+  background: #090;
+}
+
+#error {
+  width: 90%;
+  max-width: 1200px;
+  margin: auto;
+}
+
+#error h1 {
+  color: #b20400;
+}
+
+#error p, #error ul {
+  padding-bottom: 1em;
+}
+
+hr {
+  color: #67b2b7;
+  border: none;
+  border-bottom: 1px solid #67b2b7;
+}
+
+hr.cleaner {
+  clear: both;
+  height: 1px;
+  border: none;
+  margin: -1em 0 0 0;
+  visibility: hidden;
+}
+
+hr.cleanerie {
+  height: 1px;
+  border: none;
+  margin: -1em 0 0 0;
+  visibility: hidden;
+}
+
+.trans {
+  @include trans;
+}
+
+.shadow {
+  @include boxshadow(3px, 3px, 15px, #888);
+}
+
+.round {
+  @include rounded(10px)
+}
+
+.desaturate {
+  @include filter(grayscale, 100%)
+}
+
+.arrow {
+  border: solid #00523d;
+  border-width: 0 7px 7px 0;
+  display: inline-block;
+  padding: 10px;
+  @include trans;
+}
+
+.arrow.right {
+  transform: rotate(-45deg);
+  -webkit-transform: rotate(-45deg);
+}
+
+.arrow.left {
+  transform: rotate(135deg);
+  -webkit-transform: rotate(135deg);
+}
+
+.arrow.up {
+  transform: rotate(-135deg);
+  -webkit-transform: rotate(-135deg);
+}
+
+.arrow.down {
+  transform: rotate(45deg);
+  -webkit-transform: rotate(45deg);
+}
+
+.alpha50 {
+  filter: alpha(opacity=50);
+  opacity: 0.5;
+}
+
+.icon {
+  position: relative;
+  top: 2px;
+}
+
+.img {
+  border: 5px solid #d8ccbd;
+  background-color: #fff;
+  margin-bottom: 20px;
+  margin-right: 0px;
+  @include rounded;
+}
+
+.left_img, .img_left {
+  float: left;
+  margin: 1em 2em 1em 0; /*border: 1px solid #fff;*/
+}
+
+.right_img, .img_right {
+  float: right;
+  margin: 1em 0 1em 2em; /*border: 1px solid #fff;*/
+}
+
+.mini {
+  font-size: x-small;
+  line-height: 15px;
+}
+
+.small {
+  font-size: small;
+  line-height: 13px;
+}
+
+.half {
+  width: $full / 2;
+  float: left;
+}
+
+.third {
+  width: $full / 3;
+  float: left;
+}
+
+.twothird {
+  width: $full / 3 * 2;
+  float: left;
+}
+
+.quarter {
+  width: $full / 4;
+  float: left;
+}
+
+.threequarters {
+  width: $full / 4 * 3;
+  float: left;
+}
+
+.half .inner, .third .inner, .twothird .inner, .quarter .inner {
+  padding: 2em 2em;
+}
+
+.innerleft, .half .innerleft, .third .innerleft, .twothird .innerleft {
+  padding-right: 2em;
+}
+
+.innerright, .half .innerright, .third .innerright, .twothird .innerright {
+  padding-left: 2em;
+}
+
+p.underline {
+  text-decoration: underline;
+  padding-bottom: 0 !important;
+}
+
+p.underline strong {
+  color: #fff;
+}
+
+.justify {
+  text-align: justify;
+}
+
+.f_right {
+  float: right;
+}
+
+.f_left {
+  float: left;
+}
+
+.red {
+  color: #fe0000;
+}
+
+.white {
+  color: #fff;
+}
+
+h3.white {
+  color: #fff;
+  font-size: 130%;
+}
+
+.blue {
+  color: #0296f0;
+}
+
+.bgblue {
+  background-color: #0296f0;
+}
+
+.green {
+  color: #67b2b7 !important;
+}
+
+.bggreen {
+  background-color: #36af53;
+}
+
+.gray {
+  color: #757575;
+}
+
+.upper {
+  text-transform: uppercase;
+}
+
+.center, .content .center {
+  text-align: center;
+  margin: auto;
+}
+
+.left {
+  text-align: left;
+}
+
+.tright {
+  text-align: right;
+}
+
+.stroke {
+  border: 3px solid #fff;
+}
+
+.medium {
+  font-size: medium;
+}
+
+.italic {
+  font-style: italic;
+}
+
+.strong {
+  font-weight: bold;
+}
+
+.clear {
+  clear: both;
+}
+
+.no {
+  padding: 0px;
+  margin: 0px;
+}
+
+.hidden {
+  visibility: hidden;
+}
+
+.hide {
+  display: none;
+}
+
+.display_none {
+  display: none;
+}
+
+.display_block {
+  display: block;
+}
+
+.ofhide {
+  overflow: hidden;
+}
+
+.overlay {
+  display: none;
+  position: absolute;
+  left: 0;
+}
+
+.gradient {
+  background: -moz-linear-gradient(top, #f6f6f6 1%, #ffffff 100%); /* FF3.6-15 */
+  background: -webkit-linear-gradient(top, #f6f6f6 1%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
+  background: linear-gradient(to bottom, #f6f6f6 1%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff', GradientType=0); /* IE6-9 */
+}
+
+.akt {
+  width: 100%;
+  display: flex;
+
+  .imagebox{
+    width: 30%;
+    float: left;
+    margin-right: 1em;
+  }
+  .text {
+    width: 70%;
+    text-align: justify;
+    float: right;
+  }
+}
 
 @import 'addon';
 @import 'responsive';
diff --git a/green_deal/templates/green_deal/content_section.html b/green_deal/templates/green_deal/content_section.html
index e01448883eb94ca8a36f08172838cb843eccf981..9c5c6d3dcfc5cc8b4b9ac0533b6a3566239a350b 100644
--- a/green_deal/templates/green_deal/content_section.html
+++ b/green_deal/templates/green_deal/content_section.html
@@ -1,3 +1,4 @@
+{% load wagtailimages_tags %}
 {% load static %}
 {% load wagtailcore_tags %}
 
@@ -15,6 +16,14 @@
         <hr class="cleaner">
       {% endif %}
 
+      {% if block.block_type == "text_1_column" %}
+        <div class="text">
+          <h2>{{ block.value.header }}</h2>
+          {{ block.value.text|richtext }}
+        </div>
+        <hr class="cleaner">
+      {% endif %}
+
       {% if block.block_type == "FAQ_columns" %}
         <div class="text">
           <div class="harmonogram">
@@ -40,9 +49,16 @@
       {% if block.block_type == "news" %}
         {% for new in block.value %}
           <div class="akt">
-            <div class="inner">
+            {% image new.img width-800 as image_web %}
+            <div class="imagebox">
+              <a href="{{ new.link }}"><img class="thumbnail blog-posting__media" src="{{ image_web.url }}"
+                                            alt="{{ new.header }}"></a>
+            </div>
+            <div class="text">
               <h3>{{ new.header }}</h3>
-              {{ new.text|richtext }}
+              <span>{{ new.date|date:"Y-m-m" }}</span>
+              {{ new.perex|richtext }}
+              <span><a href="{{ new.link }}">číst dále</a></span>
             </div>
           </div>
         {% endfor %}