diff --git a/mandelstudio/templates/engine/pages/engine_page.html b/mandelstudio/templates/engine/pages/engine_page.html
index e016157..745eaae 100644
--- a/mandelstudio/templates/engine/pages/engine_page.html
+++ b/mandelstudio/templates/engine/pages/engine_page.html
@@ -1,5 +1,5 @@
{% extends "layout.html" %}
-{% load wagtailcore_tags oxyan static string_filters %}
+{% load wagtailcore_tags oxyan static string_filters i18n %}
{% block extrahead %}
{{ block.super }}
@@ -15,11 +15,24 @@
{% include "engine/partials/tech_theme_overrides.html" %}
{% include "engine/partials/travel_theme_overrides.html" %}
{% include "engine/partials/saas_theme_overrides.html" %}
+
{% endblock %}
{% block layout %}
{% include_header header_template|default:"engine/partials/header.html" %}
diff --git a/mandelstudio/templates/highbiza_saas/blocks/features/variants/grid.html b/mandelstudio/templates/highbiza_saas/blocks/features/variants/grid.html
new file mode 100644
index 0000000..e3f5c2c
--- /dev/null
+++ b/mandelstudio/templates/highbiza_saas/blocks/features/variants/grid.html
@@ -0,0 +1,38 @@
+{% load wagtailimages_tags %}
+
+
+
+
+ {% for feature in self.features %}
+
+ {% if feature.highlight == 'new' %}
+ {% if request.LANGUAGE_CODE == 'ru' %}Ново{% elif request.LANGUAGE_CODE == 'de' %}Neu{% elif request.LANGUAGE_CODE == 'fr' %}Nouveau{% elif request.LANGUAGE_CODE == 'es' %}Nuevo{% elif request.LANGUAGE_CODE == 'it' %}Nuovo{% elif request.LANGUAGE_CODE == 'pt' %}Novo{% else %}New{% endif %}
+ {% endif %}
+
+ {% if feature.icon_image %}
+ {% image feature.icon_image width-64 class="saas-features__icon-img" %}
+ {% elif feature.icon %}
+
+ {% else %}
+
+ {% endif %}
+
+ {{ feature.title }}
+ {% if feature.description %}{{ feature.description }}
{% endif %}
+ {% if feature.link_text and feature.link_url %}
+
+ {{ feature.link_text }}
+
+
+ {% endif %}
+
+ {% endfor %}
+
+
+
diff --git a/mandelstudio/templates/highbiza_saas/blocks/integrations/variants/logo-grid.html b/mandelstudio/templates/highbiza_saas/blocks/integrations/variants/logo-grid.html
new file mode 100644
index 0000000..f5a08cf
--- /dev/null
+++ b/mandelstudio/templates/highbiza_saas/blocks/integrations/variants/logo-grid.html
@@ -0,0 +1,30 @@
+{% load wagtailimages_tags %}
+
+
+
+
+ {% for integration in self.integrations %}
+
+ {% if integration.is_featured == 'new' %}
+
{% if request.LANGUAGE_CODE == 'ru' %}Ново{% elif request.LANGUAGE_CODE == 'de' %}Neu{% elif request.LANGUAGE_CODE == 'fr' %}Nouveau{% elif request.LANGUAGE_CODE == 'es' %}Nuevo{% elif request.LANGUAGE_CODE == 'it' %}Nuovo{% elif request.LANGUAGE_CODE == 'pt' %}Novo{% elif request.LANGUAGE_CODE == 'nl' %}Nieuw{% else %}New{% endif %}
+ {% elif integration.is_featured == 'popular' %}
+
{% if request.LANGUAGE_CODE == 'ru' %}Populair{% elif request.LANGUAGE_CODE == 'de' %}Beliebt{% elif request.LANGUAGE_CODE == 'fr' %}Populaire{% elif request.LANGUAGE_CODE == 'es' %}Popular{% elif request.LANGUAGE_CODE == 'it' %}Popolare{% elif request.LANGUAGE_CODE == 'pt' %}Popular{% elif request.LANGUAGE_CODE == 'nl' %}Populair{% else %}Popular{% endif %}
+ {% endif %}
+ {% if integration.url %}
{% endif %}
+ {% image integration.logo width-48 class="saas-integrations__logo-img" %}
+ {{ integration.name }}
+ {% if integration.url %}{% endif %}
+
+ {% endfor %}
+
+ {% if self.cta_text and self.cta_url %}
+
+ {% endif %}
+
+
diff --git a/mandelstudio/templates/webshop/mega_dropdown.html b/mandelstudio/templates/webshop/mega_dropdown.html
new file mode 100644
index 0000000..861099f
--- /dev/null
+++ b/mandelstudio/templates/webshop/mega_dropdown.html
@@ -0,0 +1,24 @@
+{% load i18n ocyan_thumbnail %}
+{% if menu_items %}
+{% for menu_item in menu_items %}
+{% with category_icon=menu_item.category.icons.first %}
+{% if menu_item.has_children %}
+
+
+ {% trans "Show everything in" %}{{ menu_item.name }}
+
+
+
+{% endfor %}
+{% endwith %}
+{% endfor %}
+{% endif %}